Tagged Questions
Cairo is a software library used to provide a vector graphics-based, device-independent API for software developers.
12
votes
5answers
429 views
How to unit test a Python function that draws PDF graphics?
I'm writing a CAD application that outputs PDF files using the Cairo graphics library. A lot of the unit testing does not require actually generating the PDF files, such as computing the expected ...
9
votes
3answers
233 views
How do I write an image into an SVG file using cairo?
I have some code that looks like this:
cairo_surface_t * surface = cairo_svg_surface_create("0.svg", 512, 512);
cairo_t * context = cairo_create(surface);
int * data = new int[512*512];
// fill the ...
7
votes
1answer
431 views
Haskell, GHC, win32, cairo
I have problem with ghci+cairo on windows. When I try to load, for example like this "ghci -package cairo" it fails with the following error:
Loading package random-1.0.0.2 ... linking ... done.
...
6
votes
3answers
626 views
Convert SVG to PNG in Python
How do I convert an svg to png, in Python? I am storing the svg in an instance of StringIO. Should I use the pyCairo library? How do I write that code?
6
votes
1answer
846 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 ...
6
votes
4answers
2k views
How do I render *parts* of a svg file?
I want to render parts of a svg file by name but for the life of me I cannot figure out how to do so (using python + gtk).
Here's the svg file in question: ...
6
votes
3answers
1k views
What is the fasted way to draw an image in Gtk+?
I have an image/pixbuf that I want to draw into a gtk.DrawingArea and refresh frequently, so the blitting operation has to be fast. Doing it the easy way:
def __init__(self):
self.drawing_area = ...
5
votes
1answer
542 views
How to create a cairo-gl surface under Gtk
I want to create a window using GTK 3 under linux (fedora 12) and draw on it a simple rectangle using cairo-gl backend, for this I want to create a cairo-gl surface. How can I do this, can anybody ...
5
votes
1answer
432 views
Use Windows (TTF) font in R graphics
Is it possible to use a TTF font in R? Is the cairo package intended for this task? How would a minimal example look like?
5
votes
3answers
3k views
Cairo and Qt integration
I want to use Cairo graphics library whith Qt, but I can't find any documenattion. I just want to make the GUI whith Qt and use Cairo for drawing graphics in a Qt window.
Thanks.
5
votes
2answers
2k views
How to install pycairo on osx?
I am trying to install the pycairo (Python bindings for the cairo graphics library) under OSX.
I started with
easy_install pycairo
and got:
Requested 'cairo >= 1.8.8' but version of cairo is ...
5
votes
1answer
557 views
Big images with cairo
I have to render a very big image (>50.000² pixel) with cairo. To do this without running out of memory I render parts of the image (<1.000² pixel) one after another and merge them together later.
...
4
votes
2answers
137 views
What is the most performant way to implement zoom to a cairo-drawn canvas?
I have a wx.ScrolledWindow where is drawn on using cairo. I have implemented a zoom-functionality which right now redraws the whole content.
But as there will be up to 200 curves to draw I should ...
4
votes
2answers
626 views
How to get a glyph outline of a true type character on a linux system
I'm searching for a library to get the outline of a glyph in a true type font on a linux system. We are using Pango and Cairo but unfortunatly I didn't find anything.
I'm looking for somethig similar ...
3
votes
1answer
34 views
The relationship between libraries: Clutter, Cogl, Clutter, GTK+, etc
I'm a little confused about the relationship of the libraries listed above, here are what I think:
Cario is a 2D graphic library, and GTK+ uses it to render widgets. Cario is low-level.
Cogl is a 3D ...
3
votes
1answer
76 views
Create RGBA Colormap in PyGTK
I have a project in Python 2.7 and PyGTK.
I need to create a transparent background window, but still be able to display images (pixmap and mask based) and other objects inside of the window.
I am ...
3
votes
1answer
188 views
Convert PIL Image to Cairo ImageSurface
I'm trying to create a cairo ImageSurface from a PIL image, the code I have so far is:
im = Image.open(filename)
imstr = im.tostring()
a = array.array('B', imstr)
height, width = im.size
stride = ...
3
votes
2answers
137 views
Multi-page SVG using libcairo and Haskell
The application I'm writing uses libcairo to output vector graphics; everything works fine for output formats that support multiple pages (PDF, PostScript), however I would like to also support SVG ...
3
votes
2answers
128 views
Is Cairo acelerated on Opengl backend?
By this I mean, does Cairo draw lines, shapes and everything using opengl acelerated primitives or no? and if not, a library that does this?
3
votes
1answer
218 views
Draw directly to the root window with PyCairo
I want to be able to draw directly to the root window in Python using Cairo. I have tested my code drawing on a fullscreened window, so I know that's not the issue. However, when I try to draw ...
3
votes
1answer
342 views
Image compositing
I have an album title of some music band. I want to draw it with some mask which will round the corners of image.
So, I've prepared such mask in gimp:
I'm using white mask, but it's invisible at ...
3
votes
1answer
384 views
Can't install cairo with cabal on Windows - how to get pkg-config on win?
Configuring cairo-0.12.0...
setup.exe: The program pkg-config version >=0.9.0 is required but it could not
be found.
cabal: Error: some packages failed to install:
cairo-0.12.0 failed during the ...
3
votes
1answer
516 views
How can I draw image with rounded corners in Cairo/Gtk?
How can I draw image with rounded corners in Cairo/Gtk? In any language.
3
votes
3answers
573 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 ...
3
votes
2answers
1k views
SVG interaction in python with cairo, opengl and rsvg
I render a huge SVG file with a lot of elements with Cairo, OpenGL and rsvg. I draw svg on cairo surface via rsvg and create an OpenGL texture to draw it. Everything is fine. And now I have to ...
3
votes
4answers
1k views
How to return an image in an HTTP response with CherryPy
I have code which generates a Cairo ImageSurface, and I expose it like so:
def preview(...):
surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, width, height)
...
...
3
votes
3answers
2k views
Why is my simple python gtk+cairo program running so slowly/stutteringly?
My program draws circles moving on the window. I think I must be missing some basic gtk/cairo concept because it seems to be running too slowly/stutteringly for what I am doing. Any ideas? Thanks for ...
3
votes
2answers
479 views
Is there a Python library for easily writing zoomable UI's?
My next work is going to be heavily focused on working with data that is best understood when organized on a two-dimensional zoomable plane or canvas, instead of using lists and property forms.
The ...
2
votes
0answers
94 views
how do I display a svg image into a cairo shape in python
I am new to both cairo and svg, so I'm sorry if this is simple, but I can't figure out how to display an svg image file into a cairo shape using python.
My test code:
#!/usr/bin/env python
import ...
2
votes
1answer
150 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
1answer
120 views
Cannot create dylib for distribution that works on OS X 10.5 (building in 10.6 environment)
I'm trying to distribute cairo (1.10.2) with my application. I can create the necessarily dylibs using Homebrew but they are dependent on versions of other dynamic libraries that aren't present in OS ...
2
votes
1answer
231 views
How to draw directly on the desktop?
I'm wondering how to draw directly on the root window in an X11 environment with Cairo (in C), in order to make widgets. I've copied some parts of the code of tint2, but it's quite enormous, and the ...
2
votes
2answers
128 views
Can't use Mono.Cairo
I'm trying to develop a simple test application with MonoDevelop (On ubuntu).
I've tried adding reference to Mono.Cairo, but I can't access the namespace Mono.Cairo within the IDE.
What can I do?
2
votes
1answer
80 views
Can Cairo (the graphics library) be used to render mathematical formulas and pictures (latex style)?
Does it need any dependencies for full-fledged unicode character rendering, or can it read and render any platform's (Linux/Max/Windows) native font glyphs without much problems?
Can it import/render ...
2
votes
1answer
64 views
Blurred borders in Cairo
What is proper way to draw a blurred rectangular border using the Cairo API? I am writing a patch for Shotwell to add a blurred shadow to the thumbnails in the thumbnail view.
For now I am ...
2
votes
2answers
229 views
How do I prevent Rplots.pdf from being generated?
I am working with some R code that generates a number of images as png files; however, a Rplots.pdf file keeps on being generated in the working directory, is there a way to prevent this from ...
2
votes
3answers
931 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 ...
2
votes
1answer
163 views
How to display interactive SVG in a window on Linux?
I really like SVG, it's very nice to draw with it. So far i've made static images using Inkscape. I'd like to make them interactive though.
I did some trials, following tutorials like this one. But i ...
2
votes
0answers
335 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
1answer
400 views
Render cairo surface directly to OpenGL texture
I'm using cairo (http://cairographics.org) in combination with an OpenGL based 3D graphics library.
I'm currently using the 3D library on Windows, but I'm hoping to receive an answer that is platform ...
2
votes
1answer
261 views
Installing Haskell cairo on Windows
I am trying to install cairo on Windows XP and this is the command that I am trying:
cabal install cairo --extra-include-dirs="C:\cygwin\usr\include" --extra-lib-dirs="C:\cygwin\lib" ...
2
votes
2answers
219 views
Drawn content lost on window overlap in GTK#
I am using Cairo in a GTK# application for drawing. When another window covers part of the drawn content, the overlapped part of the drawn content is lost. Is there a way to make it permanent?
Here ...
2
votes
1answer
326 views
Possibly transparent WebKit-Overlay in Gtk/Cairo?
I'm building an application, which is cross-platform (Linux, Win, OS X), and especially does graphics stuff via Cairo(mm), supported by a little bit of GTK+ scaffolding (i.e. DrawingArea). I now need ...
2
votes
1answer
404 views
Gtk+: How to set the cursor of a window from a Cairo context?
I have written the following code to set the cursor of a Gtk::Window from a Cairo::Context. When I run the program and move the cursor into the window, the cursor changes to a horizontal black line at ...
2
votes
2answers
975 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 ...
2
votes
1answer
450 views
Python + Cairo: How Do I Save a Drawing?
Suppose I create a blank area in a window and draw some lines in it, how can I save that in a .png or .jpg? Or maybe convert it to an object PIL could understand?
2
votes
1answer
136 views
Why do fonts in Pango change weight when text is rotated in Cairo?
I'm having a problem with Pango rendering under a rotated matrix. I'm attempting to draw a label (see code below) which happens inside of an animating Cairo matrix rotation.
As the label rotates, the ...
2
votes
1answer
418 views
How is the Mono.Cairo performance like?
I was thinking of using Mono.Cairo as the foundation for a light weight CAD system.
But wasn't sure what the performance was like. CAD systems produce a lot
of redraws and can have a lot of data in ...
2
votes
1answer
402 views
Font smoothing using cairo
I am trying to smooth text rendering using anti-aliasing.
But it's not anti-aliased.
See the picture http://tinypic.com/r/2h7dy1i/4
First line is a png image created using pango and cairo.
Second ...
2
votes
1answer
202 views
Image memory in gtk+
I'm new in the field of gtk+. My question is that is there a way to render images very fast in gtk??? I mean is there a way to directly alter the image data in frame buffer or video ram or something ...