pycairo icon indicating copy to clipboard operation
pycairo copied to clipboard

Python bindings for cairo

Results 79 pycairo issues
Sort by recently updated
recently updated
newest added

In my experience, [cairo.Context.arc](https://github.com/pygobject/pycairo/blob/1a5b55d1e0149ce9cfecf679605838124b3f1c1a/cairo/__init__.pyi#L408) is much more often than not used to draw full circles. I think adding default values for the angle arguments, namely `angle1=0` and `angle2=2*pi`, would make...

There seems to be no support for creating Quartz surfaces (unless I'm missing something), which strikes me as odd since there is support for Win32 specific surfaces. Is this something...

Like we have in pygobject (but include homebrew maybe): https://gitlab.gnome.org/GNOME/pygobject/blob/4f4dab428ac5d077f5a6992c21c55eb5266b78f8/setup.py#L117

~~\@antzer~~ @anntzer has a script to build manylinux WHLs for python https://gist.github.com/anntzer/a03230f94e6d111ba3abc737d5091b99 I [bumped the versions of everything](https://gist.github.com/stuaxo/0c18de880eb3b6bae0cb640864bd03de) and successfully built the wheels. All the current tests seem to pass...

I was installing as per the Beeware / Briefcase tutorial instructions and the last step failed on Mac OS Mojave 10.14.6 Output: ``` (beewaretest) bash-3.2$ pipenv install pycairo Installing pycairo…...

manjaro 18.0.4 here is the log file you can search the keyword "failed" you can locate the error. I check this link https://bbs.archlinux.org/viewtopic.php?id=244367 but not work for me. The author...

I've been working on a wxPython image tool for and needed some alpha/drawing consistency between platforms so I've decided to switch my main drawing over to a cairo context. Everything...

enhancement

* In PyGObject we shouldn't access the struct members directly and go through getters instead. * Add a macro for disabling direct access * Emit a deprecation warning if the...

enhancement
discussion

Besides cairo_text_cluster_flags_t there now also is cairo_pdf_outline_flags_t and we only have an enum type. Things to add: * Add a repr which shows the combination of flags instead of falling...

enhancement

This PR implements `write_to_jpg` method, I'm not sure if it is suitable for pycairo, since it is not part of cairo interface, but it helps a lot in my project...