Re: [Gimp-developer] Exporting Vectors to a SVG file

2007-11-16 Thread Joao S. O. Bueno
A Thursday 15 November 2007 14:27:30, Lionel Tarazon Alcocer escreveu: I am developing a plug-in which makes use of SVG files to store Gimp Vectors. The Import functionality is quite straight-on due to the gimp_vectors_import_from_file(), but I haven't found a function which works the other

[Gimp-developer] Exporting Vectors to a SVG file

2007-11-15 Thread Lionel Tarazon Alcocer
I am developing a plug-in which makes use of SVG files to store Gimp Vectors. The Import functionality is quite straight-on due to the gimp_vectors_import_from_file(), but I haven't found a function which works the other way around. Is there a function which exports paths/vectors to a SVG file or

Re: [Gimp-developer] Exporting Vectors to a SVG file

2007-11-15 Thread Carlo Baldassi
Hi, I am developing a plug-in which makes use of SVG files to store Gimp Vectors. The Import functionality is quite straight-on due to the gimp_vectors_import_from_file(), but I haven't found a function which works the other way around. Is there a function which exports paths/vectors to

Re: [Gimp-developer] Exporting Vectors to a SVG file

2007-11-15 Thread William Skaggs
From: Lionel Tarazon Alcocer [EMAIL PROTECTED] Is there a function which exports paths/vectors to a SVG file or string? No, but it would be easy to add, since the functionality exists in the core. If you need this, probably the best thing to do, to start with, is to file an enhancement

Re: [Gimp-developer] Exporting Vectors to a SVG file

2007-11-15 Thread William Skaggs
Maybe these ones ? http://developer.gimp.org/api/2.0/app/app-GimpVectors-export.html Those functions are only available from within the GIMP program itself, not from plug-ins. -- Bill __ __ __ __ Sent via the CNPRC Email system at

Re: [Gimp-developer] Exporting Vectors to a SVG file

2007-11-15 Thread Lionel Tarazon Alcocer
Maybe these ones ? http://developer.gimp.org/api/2.0/app/app-GimpVectors-export.html Those functions are only available from within the GIMP program itself, not from plug-ins. That's what I thought. Just to make sure, it's the same for all Gimp Application functions at the API: none can be