Aug-20-2024, 01:57 AM
there are lots of graphics tools for Python, as my initial search easily shows. the issue i am running into is that these tools (mostly) seem to be for doing things like graphical user interface. i want a tool that lets me create various images entirely in memory and write a file (or stdout in the case of a web programmed image) in a common lossless format like PNG (additional formats may include lossy ones). maybe what i need are 2 tools, one to draw in memory and another to output PNG to an open file (just need to be sure they both understand the same memory format).
suggestions what to look for?
edit1:
i am not making bar charts. so a tool that focuses on making it easy to do bar charts is not a fit for me. what will be drawn is not very specific. it will be a lot of draw a line from x1,y1 to x2,y2 at a specified thickness and make the line not jagged.
edit2:
it looks like Pillow has most of what i want. i should play around with this for a while.
suggestions what to look for?
edit1:
i am not making bar charts. so a tool that focuses on making it easy to do bar charts is not a fit for me. what will be drawn is not very specific. it will be a lot of draw a line from x1,y1 to x2,y2 at a specified thickness and make the line not jagged.
edit2:
it looks like Pillow has most of what i want. i should play around with this for a while.