From beb5f2930a08912b6e55353b72861aa23fe655dc Mon Sep 17 00:00:00 2001 From: Wenshao Zhong Date: Thu, 20 Aug 2020 07:09:34 -0500 Subject: [PATCH] inkscape: fix obsolete option, add -D example (#4279) * Added a line in the description to use `-e` for version 0.92.x. * Removed the `-z` hints, ref https://wiki.inkscape.org/wiki/index.php/Using_the_Command_Line#Deprecations_and_Replacements --- pages/common/inkscape.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/pages/common/inkscape.md b/pages/common/inkscape.md index 724c0abaf..8822c539b 100644 --- a/pages/common/inkscape.md +++ b/pages/common/inkscape.md @@ -1,29 +1,33 @@ # inkscape > An SVG (Scalable Vector Graphics) editing program. -> Use -z to not open the GUI and only process files in the console. +> For Inkscape versions up to 0.92.x, use -e instead of -o. > More information: . - Open an SVG file in the Inkscape GUI: `inkscape {{filename.svg}}` -- Export an SVG file into a bitmap with the default format (PNG) and the default resolution (90 DPI): +- Export an SVG file into a bitmap with the default format (PNG) and the default resolution (96 DPI): -`inkscape {{filename.svg}} -e {{filename.png}}` +`inkscape {{filename.svg}} -o {{filename.png}}` - Export an SVG file into a bitmap of 600x400 pixels (aspect ratio distortion may occur): -`inkscape {{filename.svg}} -e {{filename.png}} -w {{600}} -h {{400}}` +`inkscape {{filename.svg}} -o {{filename.png}} -w {{600}} -h {{400}}` + +- Export the drawing (bounding box of all objects) of an SVG file into a bitmap: + +`inkscape {{filename.svg}} -o {{filename.png}} -D` - Export a single object, given its ID, into a bitmap: -`inkscape {{filename.svg}} -i {{id}} -e {{object.png}}` +`inkscape {{filename.svg}} -i {{id}} -o {{object.png}}` - Export an SVG document to PDF, converting all texts to paths: -`inkscape {{filename.svg}} --export-pdf={{filename.pdf}} --export-text-to-path` +`inkscape {{filename.svg}} -o {{filename.pdf}} --export-text-to-path` - Duplicate the object with id="path123", rotate the duplicate 90 degrees, save the file, and quit Inkscape: -`inkscape {{filename.svg}} --select=path123 --verb=EditDuplicate --verb=ObjectRotate90 --verb=FileSave --verb=FileQuit` +`inkscape {{filename.svg}} --select=path123 --verb="EditDuplicate;ObjectRotate90;FileSave;FileQuit"`