Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
190 views

A library to convert svg to images?

I am looking for a library written either in C or C++ which can convert the svg to image formats. I came across inkscape which converts svg to images. but to use this I must run inkscape as a process ...
6
votes
0answers
230 views

SVG Converting using ImageMagick doesn't apply a translation correctly

I am on a Mac using Mac OS X 10.5, and I am trying to use ImageMagick to convert an SVG file to a PNG. The problem is when I use it the rotated image doesn't show up in the correct position. ...
3
votes
1answer
143 views

SVG to PNG with custom fonts in Python

I'm using Cairo/RSVG based solution for rasterizing SVG to PNG. It's already beeb described on StackOverflow in Convert SVG to PNG in Python. However, this solution doesn't seem to work with custom ...
2
votes
3answers
787 views

How do you convert an SVG image “paths” into separate PNG images?

I've got an SVG image with 67 separate paths. Are there any libraries/tutorials out there that will create a separate raster image such as a PNG for each of those paths, and perhaps name them ...
1
vote
1answer
49 views

scaling vector images through librsvg

Is it possible to scale the svg before getting its pixel buffer through librsvg? I can see API like rsvg_pixbuf_from_file_at_zoom but it is marked as deprecated. Is there some other way to do it? I ...
1
vote
1answer
147 views

Where to find/download lib rsvg for python on OSX

I'm looking to use the python library rsvg for converting an SVG graphic to other formats (mainly PDF) and cannot seem to find the python-librsvg source to download and install on Mac OSX anywhere. ...
1
vote
1answer
126 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
159 views

scaling svg figure

I tried to resize svg file to be opened in illustrator with smaller width and height(pixels or cm), I did this by changing width, height and viewBox attributes in <svg> tag, but it doesn't work ...
1
vote
1answer
204 views

centos: linking lib that doesn't have a .pc file for pkg-config

I'm trying to compile svg2pdf on centos. I think I've managed to get the required dependencies installed using yum: sudo yum install librsvg2 sudo yum install cairo The Makefile contains: ...
1
vote
1answer
947 views

How to install python-rsvg without python-gnome2-desktop on Ubuntu 8.10?

I need rsvg support in Python 2.5.2. It appears that I have to install all 199 deps along with the package python-gnome2-desktop, which doesn't sound fun at all. Alternatives?
0
votes
3answers
166 views

Compilation error while using librsvg

I am using librsvg in my C files to rasterize SVG, but as soon as I include rsvg.h, I start to get the following error: /usr/include/librsvg-2.0/librsvg/rsvg.h:29:25: fatal error: glib-object.h: No ...
0
votes
1answer
48 views

debug with svgalib program under linux

I have device which is running linux with svga library for user interface. I tried to debug it by using GDB, but I got black screen when I initiated graphic by launching svga library. Any body knows ...
0
votes
2answers
421 views

Linking Macports libraries to XCode application

I'm trying to distribute my app's dependencies with the app. I've got the macports packages librsvg, boost, and cairo installed 64-bit-only on my Snow Leopard system. When I create an .app bundle of ...
0
votes
1answer
129 views

rsvg doesn't render linked images

I use the python rsvg bindings to render an svg image into cairo and save to file, which mostly works. But if the svg file contains a linked image, like so: <image ...
0
votes
1answer
123 views

librsvg library crashing in release mode

recently I've been trying to write an application that draws SVG pictures. I'm using librsvg library in order to do so. I found a static library file "librsvg-2.dll.a" somewhere and it seemed to do ...
0
votes
1answer
1k views

How to resize svg image file using librsvg Python binding

When rasterizing svg file, I would like to be able to set width and height for the resulting png file. With the following code, only the canvas is set to the desired width and height, the actual ...
-1
votes
1answer
91 views

foreignobject in svg

How to change the height and width of textarea (or any html element) from javascript which is inside foreign object in svg.Moreover, can I drag an html elelment and drop on svg container by any mean ...