Tagged Questions

Inkscape is a cross platform, free software vector graphics editor. It is licensed under GNU GPL.

learn more… | top users | synonyms

5
votes
4answers
4k views

Library for using SVG in Windows Forms / WPF?

Are there any libraries which Allow to draw svg direct to a Windows Forms application to a WPF application I draw graphics and design everything with Inkscape, because I love that program. Then I ...
4
votes
2answers
613 views

Run inkscape in PHP

I need to run inkscape in PHP so I can convert an svg image to PDF. However every time I try: //some PHP code system("inkscape -z --file=svg.svg --export-pdf=pdf.pdf"); //more code I get no ...
4
votes
8answers
11k views

Gimp vs Inkscape vs Fireworks for website development?

InkScape users, can you recommend Inkscape for website-template development. I have to learn a tool for website templating, to create layout and export slices, one of my friend is suggesting fireworks ...
3
votes
3answers
27 views

How to set a stroke-width:1 on only certain sides of SVG shapes?

Setting a stroke-width: 1 on a <rect> element in SVG places a stroke on every side of the rectangle. How does one place a stroke width on only three sides of an SVG rectangle?
3
votes
1answer
436 views

Android canvas Bitmap size and measurement

I have a PNG image that I am editing in Inkscape. It is an irregular, jagged shape, but I need to do collision detection with it. It's too big to make a crude rect around it (it takes up more than a ...
3
votes
1answer
346 views

How can I programatically convert SVG files containing text to PDF files (specifically on CentOS 5.3 x86_64)?

I would like to programatically convert SVG files to PDF files. However, the SVG files contain text that must be searchable in the generated PDF files. Also, it has to work on Red Hat Enterprise Linux ...
2
votes
1answer
55 views

Using the inscape shell from perl

Inkscape has a shell mode invoked like this inkscape --shell where you can execute commands like this: some_svg_file.svg -e some_png_output.png -y 1.0 -b #ffffff -D -d 150 which will generate a ...
2
votes
1answer
49 views

Combine <use>-tags or make <path> out of <use>-tags

Using SVG via Inkscape: I have several <use>-tags, which are reusing the same <line> (from the defs), while transforming it. Now I want to create a shape (<path>) by combining some ...
2
votes
1answer
103 views

Inserting metadata “markers” in an SVG image - is this possible?

I've created an SVG image parser class for Android, which is working nicely and is pretty much complete for the purposes I want. The application I am currently writing makes use of building floor ...
2
votes
3answers
513 views

HTMl+SVG+JavaScript: change text at runtime?

I am about to migrate a few Flash-based applications to HTML+JavaScript+SVG (the single target rendering engine is Webkit). I'm completely new to SVG and I'd like to know if I can use a SVG as a ...
2
votes
3answers
305 views

Inkscape export to Core graphics?

is there anyway that i can export inkscape SVG files to iPhone core graphics? Or maybe a plugin/export tool?
2
votes
3answers
2k views

Extracting path data from an SVG map to use in RaphaelJs

I'm trying to build an an interactive map using RaphaelJS (e.g. http://raphaeljs.com/australia.html). Please check the source. It requires map path data to input. There is no clear explanation ...
2
votes
1answer
196 views

Raster graphics or vector graphics, which to choose for web-site development/designing?

While looking for a good tool for web-site development/designing on linux, I in the end got stuck with what to choose, the raster graphics or vector graphics. Gimp/Photoshop -- if you prefer ...
2
votes
2answers
923 views

Expand a relative path in Ant script, for Inkscape

I'd like to write an Ant script that calls an external utility (Inkscape, in fact) that needs a full path. Right now I have <exec executable="${inkscape.path}"> <arg ...
2
votes
2answers
250 views

Programmatic graphics toolchain

I have drawn an icon in Inkscape, but would now like to programmatically alter it (change the colours slightly for different icon states) and convert it to a tiled PNG format file containing multiple ...
1
vote
0answers
83 views

Curving text in PHP along a path?

Is there a way to add curve to text (as seen by the shape "CURVE TEXT" in CustomInk - add text then go to shape settings) in PHP? Right now I can add an "arch curve" which doesn't rotate the letters, ...
1
vote
1answer
59 views

Inkscape: anti-aliased png icon loses colours on move to Windows?

This has got to be a dumb question... I just installed Inkscape, and very quickly managed to draw an anti-aliased png icon, 16x16, which is just a hollow circle with a colour gradient (I've also tried ...
1
vote
1answer
94 views

Converting text into path (svg) on server?

How can I create text from a TTF font and convert it into a static SVG path? So that anyone could open it in illustrator and see the word (as an .SVG). Our server is Debain, and we primarily use PHP ...
1
vote
1answer
33 views

Shape inheritance in SVG

Is there a concept of shape inheritance in SVG? Problem: I'm creating a map with various icon types that represent different entities on the map. Is there a way to link these icon types, so that I ...
1
vote
2answers
92 views

Selecting elements with specific namespaced attributes

My problem is specifically about some trouble I'm having parsing an Inkscape (XML) file, but it's solution should be applicable to any XML doc, so I feel it's Stackoverflow relevant. I'm trying to ...
1
vote
0answers
84 views

Inkscape: animated SVG to video?

i created an animated presentation with the Sozi plugin for Inkscape. It looks great, however, not all browsers support SVG animations (Chrome for instance does not like the Inkscape/Sozi SVGs at ...
1
vote
1answer
55 views

How can I (semi-automatically) convert PNG to SVG?

I have a PNG image (or any other bitmap format, for that matter) I would like to convert into SVG. Is there a way to help me do that? For example, some InkScape plug-in that automatically identify ...
1
vote
5answers
127 views

Cygwin terminal batch file - cannot find file, but can if I run the cmd myself it does

Under cygwin I created to_png.bat and just filled it with inkscape command lines used to convert my SVG files to PNG. If I run these commands myself on the command line they will execute ...
1
vote
3answers
72 views

php: run multi inscape commands in one line

Is it possible run multiple commands in one exec command? I need grab some images from SVG files and this variant is too slow: exec('inkscape file.svg --export-id=g123 --export-png=img1.png'); ...
1
vote
3answers
309 views

Convert PNG image to SVG / Vector

We are desperate to convert an image so that it can be used as an image map. Everything I have tried, really doesnt cut the mustard. I havent the experience to work at very high resolutions.. plus I ...
1
vote
1answer
183 views

Write an equivalent <svg> for a <image xlink:href=“something.svg” />

Feel free to ask for more context if you're wondering why this is necessary, or want to suggest a better way to solve the bigger problem. (It involves laying out a bunch of building floor plans onto ...
1
vote
1answer
254 views

Calculate path center after transformation matrices have been applied

I made a logo in Inkscape. For learning I wanted to make a wheel shape in the logo rotate by the animation support in SVG. It was easy to implement the rotation, but it was difficult for me to be ...
1
vote
1answer
163 views

Loading SVG files with python and pygame [closed]

Possible Duplicate: SVG rendering in a PyGame application Can I load .svg files created by inkscape to python via pygame? And if so, how I can do it?
1
vote
1answer
252 views

How can I make text automatically scale down in an SVG?

I've got an SVG element that I've created with Inkscape. I then take that SVG and put in as part of an XSL-FO stylesheet that is used to transform XML data and then passed through the IBEX renderer to ...
1
vote
1answer
2k views

ProcessBuilder vs Runtime.exec()

I'm trying to create a frontend app in Java to handle batch SVG conversions using Inkscape's command line feature. I'm taking and updating the code from ...
1
vote
1answer
668 views

Converting SVG Path from inkscape to Raphaëljs

In inkscape the coordinate system is bottom/top corner (meaning, 0,0 is left bottom corner). This is the same case with Adobe Illustrator. But, when I try to use this path string in raphael it use ...
1
vote
1answer
1k views

create text inside a rectangle using inkscape

I've put some text inside a rectangle using inkscape so the tree is like <svg:rect><svg:text><svg:tspan>text.... The problem is, I can't see the text. I've tried fiddling with ...
1
vote
1answer
588 views

Inkscape moveTo coords way off in Raphael

I am trying to copy paths from inkscape into Raphael (individual countries), the problem is the moveTo is way off, how do I make it display on the relatively correct position on the canvas?
1
vote
4answers
149 views

what is a good way to convert a vector mock up into html?

I'm am trying to make a three column layout for a website from an inkscape mockup that I made. The problem is that I am more of an artist that a programer, so I know only the basics. I will take any ...
1
vote
5answers
703 views

Inkscape + pdftex?

I have a small drawing in Inkscape and I want to embed it in a LaTeX document which I compile using pdftex. pdftex seem to have an oddity of not accepting .eps. infact if what I understood is correct ...
0
votes
0answers
16 views

split shape defined by path into sub-paths

I am attempting to split a closed path to sub-paths, the image is of a tree and I want to be able to easily manipulate branches by dividing them from the path between two nodes and then recombining ...
0
votes
0answers
69 views

Illustrator SVG Web Position Translate

I am trying to create an SVG graphic with Adobe Illustrator that I can manipulate later on using jquery svg library.The problem is that I want the output elements positions to be relative to the ...
0
votes
2answers
40 views

What's the best way to create arrows in inkscape?

Adding arrows in inkscape using the line-ending option is quite limited.
0
votes
1answer
164 views

SVG to HTML map and area

I have been trying to convert map in SVG to HTML area map for three days. I`am trying to do that with this SVG. I've tried to convert this SVG with several methods and programs, but all of them ...
0
votes
0answers
47 views

converting pdf to svg using Inkscape command line tool: raster (pixel) based graphics smaller in output

I am converting PDF file in Inkscape that has raster and vector data in it into a svg file using Inkscape's command line tool "inkscape logo-pixel-vector.pdf --export-plain-svg=pixel_vector.svg" ...
0
votes
0answers
41 views

PHP library to apply bend effects/outline to an SVG?

I'm developing a web designer tool which creates SVG canvases, and I'd like to support two text effects that I haven't been able to figure out how to do cleanly: Bending the text. I'd like to allow ...
0
votes
0answers
19 views

ProcessStartInfo with Inkscape on IIS is not using any fonts

I am making an ASP.NET page call Inkscape command line to generate a PDF from an SVG. After following advice from this question ( Unable to generate file from ASP.NET with inkscape ), I got it to ...
0
votes
1answer
80 views

SVG to VML in Inkscape

I have an Inkscape SVG file, and I want export it to VML for web (Internet Explorer 8 and less don't work with svg). I need to do that automaticly and fast, because I work with lots of files.
0
votes
1answer
112 views

Automatizing 'simplify path' for a svg-file (using inkscape)

I would like to automatize the inkscape command "simplify path". Concretely, I would like a command line tool which takes a svg-file as input, applies "simplify path" to all paths in the figure and ...
0
votes
2answers
75 views

Embed JPG data properly in PDF files generated by Inkscape

There is a bug in Inkscape where JPEG images included in an SVG document are embedded as bitmaps rather than JPEG when exporting to PDF files. The result is a huge increase in file size. For ...
0
votes
1answer
341 views

SVG “Move” command: Absolute path to Relative Path

I have a SVG path, created in Inkscape, that is a single Move ("M ... z") command. The uppercase 'M', as per the SVG spec, indicates an absolute path, however for my application I require relative ...
0
votes
1answer
92 views

why is everything I draw in inkscape invisible? [closed]

I've just started using Inkscape and I've been impressed with it. However, something got changed and now, whenever I draw an ellipse or a rectangle, I can't see the shape I just created, all I see is ...
0
votes
1answer
27 views

Generating and importing basic drawings into Inkscape?

I develop a tool that generates block-diagrams for software engineering documentation. This is done "in memory": my tool has no graphical outputs (it is just a set of algorithms). These block ...
0
votes
0answers
91 views

Inkscape: copy/paste text - matrix is applied , why?

I know this is not really a programming question, but here it goes: When I copy a text in Inkscape and paste it to another document (paste on position), everything appears to be fine, but when I look ...
0
votes
1answer
219 views

SVG: simplify path to remove curves?

I have a svg file which contains complex paths with bezier curves in it. I need to convert this path-data to use it for html map-area's, so I in fact I need just the coordinates (but for large ...

1 2