The pycairo tag has no wiki summary.
6
votes
1answer
895 views
Steps to install py2cairo?
Seems that pycairo was branched to py2cairo for 2.x versions back in May. There are no pip or easy_install installation options for py2cairo. I've grabbed the latest py2cairo tar, as well as the cairo ...
5
votes
2answers
2k views
pycairo “ImportError: DLL load failed: The specified module could not be found.” even after DLLs installed
I'm following the pycairo installation instructions here :
http://www.cs.rhul.ac.uk/home/tamas/development/igraph/tutorial/install.html
to install pycairo for use with igraph.
However, even after ...
4
votes
3answers
1k views
how to install pycairo for python 3 on Ubuntu 10.04
i am trying to install pycairo 1.10.0 for use with my custom-build python 3.1. however,
sudo /flower/bin/easy_install-3.1 pycairo
fails with
XXX@XXXX:/adventures$ sudo ...
3
votes
2answers
726 views
How to install PyCairo 1.10 on Mac OSX with default python
Has anyone installed pycairo 1.10 on the mac using the new waf build? Its failing on can't find python headers.
3
votes
2answers
1k views
How to get transparent background in window with PyGTK and PyCairo?
I've been trying really hard to create a window with no decoration and a transparent background using PyGTK. I would then draw the content of the window with Cairo. But I can't get it to work.
I've ...
3
votes
3answers
599 views
Cairo context and persistence?
I am just getting started using pycairo, and I ran into the following interesting error. The program I write creates a simple gtk window, draws a rectangle on it, and then has a callback to draw a ...
2
votes
1answer
247 views
A simple setup for Python + Cairo + GTK/GDK pixel buffer
For my own benefit and possibly for educational use, I would like to make a pygame-like API for Python and Cairo. But I don't want it to be exactly pygame. I would instead like to make it a ...
2
votes
1answer
169 views
Is there a better library for drawing vector graphics in Python than Cairo?
...Not that I have anything against Cairo -- I love it in fact. It's just terribly difficult to install the Python bindings, especially on a Mac (see all the SO questions about installing pycairo on ...
2
votes
0answers
347 views
Using Cairo Regions in python with gi.repository
I can't seem to get cairo regions working in within
using the gintrospection.
For example
from gi.repository import cairo
reg = cairo.Region()
will give me
Traceback (most recent call last):
...
2
votes
2answers
647 views
How to keep text inside a circle using Cairo?
I a drawing a graph using Cairo (pycairo specifically) and I need to know how can I draw text inside a circle without overlapping it, by keeping it inside the bounds of the circle. I have this simple ...
1
vote
0answers
12 views
Using named colors with Cairo graphics
I am using pycairo to generate an postscript file. It is a simple file consisting of black lines on a white background. My customer has asked me:
will it be possible to change the black stroke line ...
1
vote
3answers
161 views
How do you install PyCairo (Cairo for Python) on Windows?
I spent hours this afternoon trying to find a straightforward tutorial for installing PyCairo on Windows.
The Cairo project itself does not maintain Windows binaries, they must be dowloaded elsehere ...
1
vote
2answers
132 views
rotate text around its center in pycairo
community.
I know that there are many answers here, manuals, tutorials and references over the internets and amny more about this question. Also I know that knowledge of linear algebra is required.
...
1
vote
0answers
110 views
Draw vector matplotlib plots and pycairo drawings to the same pdf file
I am generating a PDF report (still in sketch phase) with Matplotlib and Pycairo. I am intentionally avoiding ReportLabs as a design option and an exercise in Pycairo skill.
Currently, I am using ...
1
vote
1answer
184 views
Yet another py2cairo installation failure
I am trying to install PyCairo (from tarball source) on my OS X 10.5 using 32-bit Python 2.7 (from python.org) and cairo 1.10.2 from MacPorts. So I am installing "py2cairo". When I run python ./waf ...
1
vote
1answer
68 views
pygtk custom widgets displaying in seperate window
I'm having trouble with custom widgets showing up in a separate window. Separate window not in the sense of all widgets being in a window, but they all come up separately with their own window ...
1
vote
2answers
236 views
Install pycairo or py2cairo using buildout
Does anyone have any experience with trying to install cairo for django using buildout?
It will install pycairo or py2cairo (the first is for python >3.0, the latest is for python 2.6, which I Am ...
1
vote
3answers
184 views
How to draw a curve without knowing 4 points?
According to cairo example code, following code
double x=25.6, y=128.0;
double x1=102.4, y1=230.4,
x2=153.6, y2=25.6,
x3=230.4, y3=128.0;
cairo_move_to (cr, x, y);
cairo_curve_to (cr, ...
1
vote
1answer
201 views
pyCairo: How to resize and position an image?
Based on the question Create PDF with (resized) PNG images using Pycairo - rescaling Surface issue I have attempted to create code that rescales and places an image at a specific position, as shown in ...
1
vote
1answer
134 views
Error with Python ctypes and librsvg
I'm trying to wrap basic function of librsvg with ctypes for Python, but I'm getting a segfault.
C:
// pycairo excerpt
typedef struct {
PyObject_HEAD
cairo_t *ctx;
PyObject *base; /* base ...
1
vote
1answer
151 views
Why is Cairo messing with my Colors?
import cairo
from PIL import Image as im
orig_image = im.open('Camilla_Belle_photo_3.jpg') #http://i56.tinypic.com/261i5cn.jpg
surface = ...
1
vote
3answers
203 views
(py)cairo - fill
is there a way to fill everything outside of a closed path (polygon)?
Background: I'd like to render some maps with coastlines - so sometimes I need to fill the sea with blue color, so I thought it ...
1
vote
1answer
223 views
Use PIL to load TTF fonts for use in PyCairo?
I've got pycairo installed and I'm able to render text with basic fonts, but the principal thing I'm trying to accomplish is to use TTF fonts.
Sadly, there don't appear to be any modern Python ...
0
votes
0answers
37 views
How to output transparent PNG with Pycairo?
Here's my code:
import cairo
import os
from PIL import Image
imagesize = (512,128)
surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, *imagesize)
cr = cairo.Context(surface)
...
0
votes
1answer
150 views
Save the contents of a Gtk.DrawingArea or Cairo pattern to an image on disk
I've got a small PyGI project which uses a Cairo image surface, which I then scale with a surface pattern and render on a Gtk.DrawingArea.
I'd like to write the scaled version to a PNG file. I've ...
0
votes
3answers
88 views
“Manually” invoke expose event on gtk.DrawingArea
I'm creating a small tool for data visualization.
The GUI is created with Pygtk and very simple. After the user has entered a filename he can press the button "calc" to see the output. The output is ...
0
votes
0answers
134 views
what is wrong with installing pycairo for igraph?
I followed the instructions here
to install pycairo on win and be able to use plotting in igraph
I have python 2.7
pycairo 1.8.10
and dll files with the same numbers written in the above link, then ...
0
votes
0answers
41 views
problem downloading cairoplot for graphs is python
i tried downloading cairoplot from several computers and browers from this link:
http://cairoplot.sourceforge.net/download.html
and it's just ain't working.
does someone knows how can i get it ...
0
votes
0answers
262 views
Installing PyCairo or Py2Cairo on OS X Snow Leopard
Trying to set up PyCairo on OS X Snow Leopard. There are quite a few questions about it on this site, but I'm getting compile errors, which I haven't seen before.
Here are my environment variables...
...
0
votes
1answer
59 views
text_extends behaves unexpected when i try to render a png, is this a bug?
I noticed lately that in some cases the png will look differently as the pdf. I rendered the preview images in different sizes an realized that the output could be totally different for the same input ...
0
votes
2answers
674 views
Using Pycairo to generate images dynamically and serve in Django
I want to generate a dynamically created png image with Pycairo and serve it usign Django. I read this: http://stackoverflow.com/questions/1074200/serve-a-dynamically-generated-image-with-django.
Is ...
0
votes
1answer
141 views
Rare PyCairo antialias getting directly the surface data
After create a Pycairo context and surface (ImageSurface) I get a diferent export results if I get directly from surface buffer
surface.get_data()
or from PNG export method
surface.write_to_png()
...
0
votes
2answers
113 views
How can I “best fit” an arbitrary cairo (pycairo) path?
It seems like given the information in stroke_extents() and the translate(x, y) and scale(x, y) functions, I should be able to take any arbitrary cairo (I'm using pycairo) path and "best fit" it. In ...