Difference between revisions of "Output format requirements"

From Inkscape Wiki
Jump to navigation Jump to search
(Reformated)
m ((page needs update))
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Inkscape's extensions allow for importing and exporting non-SVG file types and direct editing of the current SVG document. For more information about the Extensions that appear in the Effects menu read [[GettingEffectsWorking]].
{{Needs update}}
{{Other languages|en=Output format requirements}}
 
Inkscape's extensions allow for importing and exporting non-SVG file types and direct editing of the current SVG document. For more information about the Extensions that appear in the Effects menu read [[GettingEffectsWorking|Getting Effects Working]].


=== Open *.TXT ===
=== Open *.TXT ===

Revision as of 01:10, 15 December 2014

This page contains outdated information and needs to be updated.

Other languages: العربية Català Česky Deutsch English Español Français Italiano 日本語 한국어 Polski Português Português do Brasil Русский Slovenčina 中文

Inkscape's extensions allow for importing and exporting non-SVG file types and direct editing of the current SVG document. For more information about the Extensions that appear in the Effects menu read Getting Effects Working.

Open *.TXT

  • install perl
  • install SVG perl module

Open *.AI

Save *.AI

  • requires pstoedit with the ps2ai filter
  • uses Inkscapes internal ps output extension

Open *.PS

  • requires skconvert python script from sketch =>> install sketch

Open *.WMF

Save *.PDF (Win32)

   REM BEGIN
   @echo off
   REM edit %GSDIR% to match the ghostscript installation directory
   set GSDIR=%PROGRAMFILES%\gs\gs8.51\
   set GSBINDIR=%GSDIR%bin
   set GSLIBDIR=%GSDIR%lib
   set PATH=%GSBINDIR%;%GSLIBDIR%;%PATH%
   ps2pdf.bat %1 -
   REM END
  • edit pdf_output.inx
   <inkscape-extension>
       <name>PDF Output</name>
       <id>org.inkscape.output.pdf</id>
       <dependency type="extension">org.inkscape.output.ps</dependency>
       <dependency type="executable" location="extensions">ps2pdf.cmd</dependency>
       <output>
           <extension>.pdf</extension>
           <mimetype>image/x-portable-document-format</mimetype>
           <filetypename>Adobe PDF (*.pdf)</filetypename>
           <filetypetooltip>Adobe Portable Document Format</filetypetooltip>
       </output>
       <script>
           <command reldir="extensions">ps2pdf.cmd</command>
           <helper_extension>org.inkscape.output.ps</helper_extension>
       </script>
   </inkscape-extension>

Save *.XCF

??