Forrest logo
back to context overview

inkscape

List of commands for inkscape:

  • inkscape:tldr:29135 inkscape: Duplicate the object with id="path123", rotate the duplicate 90 degrees, save the file, and quit Inkscape.
    $ inkscape ${filename-svg} --select=path123 --verb="${EditDuplicate;ObjectRotate90;FileSave;FileQuit}"
    try on your machine
    explain this command
  • inkscape:tldr:3d102 inkscape: Export an SVG document to PDF, converting all texts to paths.
    $ inkscape ${filename-svg} -o ${filename-pdf} --export-text-to-path
    try on your machine
    explain this command
  • inkscape:tldr:504e0 inkscape: Export an SVG file into a bitmap of 600x400 pixels (aspect ratio distortion may occur).
    $ inkscape ${filename-svg} -o ${filename-png} -w ${600} -h ${400}
    try on your machine
    explain this command
  • inkscape:tldr:65f28 inkscape: Export a single object, given its ID, into a bitmap.
    $ inkscape ${filename-svg} -i ${id} -o ${object-png}
    try on your machine
    explain this command
  • inkscape:tldr:71ed7 inkscape: Export the drawing (bounding box of all objects) of an SVG file into a bitmap.
    $ inkscape ${filename-svg} -o ${filename-png} -D
    try on your machine
    explain this command
  • inkscape:tldr:83662 inkscape: Export an SVG file into a bitmap with the default format (PNG) and the default resolution (96 DPI).
    $ inkscape ${filename-svg} -o ${filename-png}
    try on your machine
    explain this command
  • inkscape:tldr:f53af inkscape: Open an SVG file in the Inkscape GUI.
    $ inkscape ${filename-svg}
    try on your machine
    explain this command
back to context overview