Difference between revisions of "File types"

From Inkscape Wiki
Jump to navigation Jump to search
m (*typoo corrected)
m (link fix)
(7 intermediate revisions by the same user not shown)
Line 28: Line 28:
* [http://www.graphviz.org/ Graphviz] - popular text format for describing graphs. Can export SVG.
* [http://www.graphviz.org/ Graphviz] - popular text format for describing graphs. Can export SVG.
* [http://www.pstoedit.net/pstoedit pstoedit] - converts Postscript into SVG (and other editablke formats
* [http://www.pstoedit.net/pstoedit pstoedit] - converts Postscript into SVG (and other editablke formats
* [http://www.wizards.de/~frank/pstill.html PStill] converts Postscript into PDF


== OpenOffice OODraw-to-SVG ==
== [[OpenOffice]] OODraw-to-SVG ==


OpenOffice can export *to* SVG, although it does not import SVG.   
[[OpenOffice]] can export *to* SVG, although it does not import SVG.   
Possibly a filter could be created for Inkscape from their code,
Possibly a filter could be created for Inkscape from their code,
to enable at least being able to load OODraw's SXD file format into
to enable at least being able to load OODraw's SXD file format into
Inkscape.   
Inkscape.   
Workaround to use SVG-files created with Inkscape in Openoffice.org.
Download Skencil from www.skencil.org (formely sketch). It's a
vector drawing application written in Python. It can import SVG
and save as Computer Graphics Metafile (CGM). You can use the skconvert
commandline utility to batchconvert a number of files. Openoffice is
able to import CGM. Not all object types are supported and you might
get wrong colors, but the path look ok. I wrote a small article about
this: http://www.tokonoma.de/software/svg_to_ooo/svg_to_ooo.html


Browsing through OO's sourcecode, this appears to be the parts
Browsing through OO's sourcecode, this appears to be the parts
that do the SVG writing:
that do the SVG writing:


OpenOffice/filter/source/svg
[[OpenOffice/filter/source/svg]]


  SOTranscoder.java  svgfilter.cxx      svgimport.cxx  svgwriter.hxx
  SOTranscoder.java  svgfilter.cxx      svgimport.cxx  svgwriter.hxx
Line 46: Line 56:
  svgexport.cxx      svgfontexport.hxx  svgwriter.cxx
  svgexport.cxx      svgfontexport.hxx  svgwriter.cxx


You can download the OpenOffice sourcecode from one of the OpenOffice
You can download the [[OpenOffice]] sourcecode from one of the [[OpenOffice]]
mirrors.  E.g.:
mirrors.  E.g.:


Line 71: Line 81:


  00005f9c T component_getFactory
  00005f9c T component_getFactory
  00005d28 T component_getImplementationEnvironment
  00005d28 T component_get[[ImplementationEnvironment]]
  00005d44 T component_writeInfo
  00005d44 T component_writeInfo


Line 97: Line 107:
         /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
         /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
         libgcc_s.so.1 => /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libgcc_s.so.1 (0x40291000)
         libgcc_s.so.1 => /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libgcc_s.so.1 (0x40291000)
== Other Conversion Tools ==
When doing prepress work, its better to convert from ps to pdf on the commandline. there are several options available that make the result better fit the job, this is an example ps2pdf command:
        ps2pdf12 -d[[ProcessColorModel]]=[[/DeviceCMYK]] -dPDFSETTINGS=/prepress
                -d[[UseFlateCompression]]=true
                -d[[ColorConversionStrategy]]=[[/UseDeviceDependentColor]]
                -d[[DownsampleColorImages]]=false
                -d[[DownsampleGrayImages]]=false
                -d[[DownsampleMonoImages]]=false
                -d[[AutoFilterColorImages]]=false
                -d[[AutoFilterGrayImages]]=false
                -d[[ColorImageFilter]]=[[/FlateEncode]]
                -d[[GrayImageFilter]]=[[/FlateEncode]]
                -d[[MonoImageFilter]]=[[/FlateEncode]]
                input.ps output.pdf
PSStill example: convert a grayscale 25x70 cm inkscape exported postscript file to pdf:
        pstill -i -2 -c -c -c -c -t -B -w 708,66 -h 1984,25 -o output.pdf input.ps

Revision as of 02:33, 22 January 2006

We need EPS, Adobe SVG, and PDF in/out support. We really need to import/export the following formats:

  • EPS
  • PDF
  • Adobe SVG (must be interoperable!)
  • Postscript
  • Adobe Illustrator File Formats (Newer ones are PDF 1.4 documents)

To really be considered a successful application, we must take these file formats in and be able to save them out.

Other useful formats might be:

  • Enhanced Windows Metafile (emf)
  • Computer Graphics Metafile (cgm)

Existing Conversion Tools

Scripts and other applications that provide conversions, and might be useful to investigate as solutions to this dilemma.

OpenOffice OODraw-to-SVG

OpenOffice can export *to* SVG, although it does not import SVG. Possibly a filter could be created for Inkscape from their code, to enable at least being able to load OODraw's SXD file format into Inkscape.

Workaround to use SVG-files created with Inkscape in Openoffice.org. Download Skencil from www.skencil.org (formely sketch). It's a vector drawing application written in Python. It can import SVG and save as Computer Graphics Metafile (CGM). You can use the skconvert commandline utility to batchconvert a number of files. Openoffice is able to import CGM. Not all object types are supported and you might get wrong colors, but the path look ok. I wrote a small article about this: http://www.tokonoma.de/software/svg_to_ooo/svg_to_ooo.html

Browsing through OO's sourcecode, this appears to be the parts that do the SVG writing:

OpenOffice/filter/source/svg

SOTranscoder.java  svgfilter.cxx      svgimport.cxx  svgwriter.hxx
exports.map        svgfilter.hxx      svgscript.hxx
makefile.mk        svgfontexport.cxx  svguno.cxx
svgexport.cxx      svgfontexport.hxx  svgwriter.cxx

You can download the OpenOffice sourcecode from one of the OpenOffice mirrors. E.g.:

http://www.mirror.ac.uk/downloads/sunsite.dk/openoffice/contrib/rc/1.1.4rc/OOo_1.1.4rc_source.tar.gz

There is a webpage with some info about a new SVG exporter, here:

http://graphics.openoffice.org/svg/svg.htm

This includes a java sample test, that could perhaps be used as a starting point for a filter...

http://graphics.openoffice.org/svg/SVGExportTest.java

Perhaps that could be recast into C++ so that a compiled filter could be made of it.

The page also includes a binary svgexport.so package. Perhaps if this is fairly stand-alone, a filter program could be written in C++ based on the above java testcode that links against svgexport.so and provides its functionality on the commandline as a sxd2svg tool.

nm reports that it provides the following functions:

00005f9c T component_getFactory
00005d28 T component_getImplementationEnvironment
00005d44 T component_writeInfo


ldd reports that this .so has the following dependency requirements:

      linux-gate.so.1 =>  (0xffffe000)
       libsvx645li.so => not found
       libxo645li.so => not found
       libgo645li.so => not found
       libj645li_g.so => not found
       libvcl645li.so => not found
       libutl645li.so => not found
       libtl645li.so => not found
       libcomphelp3gcc3.so => not found
       libcppuhelpergcc3.so.3 => not found
       libcppu.so.3 => not found
       libsal.so.3 => not found
       libdl.so.2 => /lib/libdl.so.2 (0x4003d000)
       libpthread.so.0 => /lib/libpthread.so.0 (0x40040000)
       libm.so.6 => /lib/libm.so.6 (0x40091000)
       libstlport_gcc.so => not found
       libstdc++.so.5 => /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libstdc++.so.5 (0x400b4000)
       libc.so.6 => /lib/libc.so.6 (0x4017d000)
       /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
       libgcc_s.so.1 => /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libgcc_s.so.1 (0x40291000)

Other Conversion Tools

When doing prepress work, its better to convert from ps to pdf on the commandline. there are several options available that make the result better fit the job, this is an example ps2pdf command:

       ps2pdf12 -dProcessColorModel=/DeviceCMYK -dPDFSETTINGS=/prepress
               -dUseFlateCompression=true
               -dColorConversionStrategy=/UseDeviceDependentColor
               -dDownsampleColorImages=false
               -dDownsampleGrayImages=false
               -dDownsampleMonoImages=false
               -dAutoFilterColorImages=false
               -dAutoFilterGrayImages=false
               -dColorImageFilter=/FlateEncode
               -dGrayImageFilter=/FlateEncode
               -dMonoImageFilter=/FlateEncode
               input.ps output.pdf

PSStill example: convert a grayscale 25x70 cm inkscape exported postscript file to pdf:

       pstill -i -2 -c -c -c -c -t -B -w 708,66 -h 1984,25 -o output.pdf input.ps