aggdraw
aggdraw copied to clipboard
Python package wrapping AGG2 drawing functionality
I haven't been following the latest developments on this project, but I see there's been a lot of new activity + bugfixes + new features. I hope to be using...
In #50 aggdraw master was updated to use the agg C++ library by @dov. Later it was pointed out by @a-hurst that there were some differences between aggdraw using agg...
Conda-forge has been trying for a long time to build a PyPy binary of aggdraw, but has been failing: https://github.com/conda-forge/aggdraw-feedstock/pull/25 The error is basically: ``` aggdraw.cxx:271:1: error: invalid conversion from...
In my project, I need to draw an image with a large size. But when I used the `line` method, I found that some lines could not be drawn. After...
We can successfully install aggdraw on pypy3.7 (v7.3.7) and on CPython 3.8, but not pypy3.8 (v7.3.7). Does this output mean anything to anyone? ``` Preparing metadata (setup.py) ... done Building...
Minimal steps to reproduce (on Ubuntu 21.04, Python 3.9): in terminal ``` % python -m venv aggdrawtest % source aggdrawtest/bin/activate % pip install aggdraw % python ``` in python: ```...
This PR does two things that *might* be considered partial fixes for #74 : 1. Adds a print statement that lets the user know pkgconfig wasn't found and installing it...
Aggdraw seems to define all of its class `__new__` methods as functions in the `aggdraw` module. It then creates a new object by creating a new type. This is an...
As discussed in #37, one option to clean up the aggdraw code is to use cython. As mentioned in #43, I recently noticed that all of the classes in aggdraw...
Hi, I just started using aggdraw, and it definitively draws nicer lines than PIL for my application (opacity and antialiassing does help), but I noticed still imperfection and possibly a...