किसी दिए गए रिज़ॉल्यूशन में PNG में एक SVG इमेज "बेक" करें?


20

मैं लिनक्स पर हूँ और मैं एक SVG फ़ाइल लेना चाहता हूँ और इसे दिए गए रिज़ॉल्यूशन (स्केलिंग) पर PNG फ़ाइल में सेंकना चाहता हूँ। क्या कमांड लाइन से जल्दी और प्रभावी रूप से ऐसा करने का कोई तरीका है?

मैं कुछ इस तरह की तलाश में हूँ:

svg2png --width 128 --height 128 input.svg output.png

क्या इसके लिए कोई उपकरण है?


जवाबों:


20

ImageMagick के कन्वर्ट का उपयोग करें :

convert -resize 128x128 input.svg output.png

यदि इनपुट कैनवास का आकार दिए गए आकार से कम है, तो यह पुन: नमूने के बिना आउटपुट को बड़ा कर देगा। उच्च गुणवत्ता वाला परिणाम प्राप्त करने के लिए, -densityपैरामीटर जोड़ें :

convert -density 500 -resize 128x128 input.svg output.png

ImageMagick 72 डीपीआई के एक डिफ़ॉल्ट घनत्व के लिए अपने कैनवास रिज़ॉल्यूशन के लिए वेक्टर छवियों को रेखापुंज करता है।
उचित नमूने के साथ अप-स्केल करने के लिए, आप ऊपर के नमूने में 500 डीपीआई जैसे उच्च मूल्य को निर्दिष्ट कर सकते हैं।

बहुत अधिक रास्टर घनत्व का उपयोग बड़े आकार के कैनवास के साथ एक प्रदर्शन मुद्दा हो सकता है। सबसे कम और आदर्श रेखीय घनत्व है: raster_density = raster_size / original_size * original_density

यह आदर्श रेखापुंज घनत्व छवि को सीधे अपेक्षित आकार (नहीं) में आउटपुट करेगा -resize आवश्यक ) के । लेकिन जैसा कि फ्लोट संख्या सन्निकटन हो सकता है, पिक्सेल-पूर्ण परिणाम के लिए थोड़ा अधिक मूल्य और आकार की सिफारिश की जाती है।

ImageMagick के प्रतिशत से बचकर आप मूल आकार और घनत्व प्राप्त कर सकते हैं :

 convert input.svg -format "%w %h %[resolution.x] %[resolution.y]" info:

ध्यान दें कि ImageMagick एसवीजी के पूर्ण विनिर्देशों को नहीं संभालता है। यदि गलत तरीके से प्रस्तुत आकृतियों से परेशानी हो रही है, तो इस धागे को ImageMagick SVG रेंडरर के चयन के बारे में देखें ।


बहुत अच्छे धन्यवाद। मैं rsvgअपने दम पर नीचे दिए गए उत्तर से पाया , लेकिन यह वास्तव में समय है जब मैं ImageMagick का उपयोग करना शुरू करता हूं।
नातुल्ली केय

1
मेरी svg छवि के लिए काम नहीं किया। सबसे पहले मुझे convert: unable to read font (null) '@ error / annotate.c / RenderFreetype / 1153.` त्रुटियाँ मिलीं, जिन्हें मैंने हल कर दिया था brew install gs, लेकिन तब भी जब परिवर्तित रूप से भागे हुए परिणामस्वरूप छवि कचरा है।
लॉयड ड्युल्फ

@ लॉयडड्यूल्फ, आप पहले svg की सफाई की कोशिश कर सकते हैं ।
मिहाई रोटारू

मुझे जोड़ना था -background transparent, अन्यथा श्वेत पृष्ठभूमि का उपयोग करना परिवर्तित करना।
hgoebl

(यह linux पर लागू होता है, विंडोज़ पर लागू हो सकता है) यदि आप IM पर -verbose करते हैं तो ऐसा प्रतीत होगा कि IM स्वयं एक मध्यवर्ती ईपीएस फ़ाइल बनाने के लिए inkscape का उपयोग करता है। इसलिए मैं सीधे साथ इनस्केप का उपयोग करने का सुझाव दूंगा: inkscape in.svg --export-png=out.png( superuser.com/a/493028/316154 से उदाहरण )
उत्तरी-ब्रैडली

9

दोनों rsvgऔर inkscapeकर सकते हैं:

$ rsvg
Usage: rsvg [OPTIONS...] file.svg file.png
  -d, --dpi-x=<float>          pixels per inch
  -p, --dpi-y=<float>          pixels per inch
  -x, --x-zoom=<float>         x zoom factor
  -y, --y-zoom=<float>         y zoom factor
  -w, --width=<int>            width
  -h, --height=<int>           height
  -q, --quality=<int>          JPEG quality
  -f, --format=[png, jpeg]     save format
  -v, --version                show version information

Help options:
  -?, --help                   Show this help message
  --usage                      Display brief usage message

तथा:

$ inkscape --help
Usage: inkscape [OPTIONS...] [FILE...]

Available options:
  -V, --version                             Print the Inkscape version number
  -z, --without-gui                         Do not use X server (only process
                                            files from console)
  -g, --with-gui                            Try to use X server (even if
                                            $DISPLAY is not set)
  -f, --file=FILENAME                       Open specified document(s) (option
                                            string may be excluded)
  -p, --print=FILENAME                      Print document(s) to specified
                                            output file (use '| program' for
                                            pipe)
  -e, --export-png=FILENAME                 Export document to a PNG file
  -d, --export-dpi=DPI                      The resolution used for exporting
                                            SVG into bitmap (default 90)
  -a, --export-area=x0:y0:x1:y1             Exported area in SVG user units
                                            (default is the canvas; 0,0 is
                                            lower-left corner)
  -D, --export-area-drawing                 Exported area is the entire
                                            drawing (not canvas)
  -C, --export-area-canvas                  Exported area is the entire canvas
      --export-area-snap                    Snap the bitmap export area
                                            outwards to the nearest integer
                                            values (in SVG user units)
  -w, --export-width=WIDTH                  The width of exported bitmap in
                                            pixels (overrides export-dpi)
  -h, --export-height=HEIGHT                The height of exported bitmap in
                                            pixels (overrides export-dpi)
  -i, --export-id=ID                        The ID of the object to export
  -j, --export-id-only                      Export just the object with
                                            export-id, hide all others (only
                                            with export-id)
  -t, --export-use-hints                    Use stored filename and DPI hints
                                            when exporting (only with
                                            export-id)
  -b, --export-background=COLOR             Background color of exported
                                            bitmap (any SVG-supported color
                                            string)
  -y, --export-background-opacity=VALUE     Background opacity of exported
                                            bitmap (either 0.0 to 1.0, or 1 to
                                            255)
  -l, --export-plain-svg=FILENAME           Export document to plain SVG file
                                            (no sodipodi or inkscape
                                            namespaces)
  -P, --export-ps=FILENAME                  Export document to a PS file
  -E, --export-eps=FILENAME                 Export document to an EPS file
  -A, --export-pdf=FILENAME                 Export document to a PDF file
  -T, --export-text-to-path                 Convert text object to paths on
                                            export (EPS)
  -F, --export-embed-fonts                  Embed fonts on export (Type 1
                                            only) (EPS)
  -B, --export-bbox-page                    Export files with the bounding box
                                            set to the page size (EPS)
  -X, --query-x                             Query the X coordinate of the
                                            drawing or, if specified, of the
                                            object with --query-id
  -Y, --query-y                             Query the Y coordinate of the
                                            drawing or, if specified, of the
                                            object with --query-id
  -W, --query-width                         Query the width of the drawing or,
                                            if specified, of the object with
                                            --query-id
  -H, --query-height                        Query the height of the drawing
                                            or, if specified, of the object
                                            with --query-id
  -S, --query-all                           List id,x,y,w,h for all objects
  -I, --query-id=ID                         The ID of the object whose
                                            dimensions are queried
  -x, --extension-directory                 Print out the extension directory
                                            and exit
      --vacuum-defs                         Remove unused definitions from the
                                            defs section(s) of the document
      --verb-list                           List the IDs of all the verbs in
                                            Inkscape
      --verb=VERB-ID                        Verb to call when Inkscape opens.
      --select=OBJECT-ID                    Object ID to select when Inkscape
                                            opens.

Help options:
  -?, --help                                Show this help message
      --usage                               Display brief usage message

मुझे Imagemagick के साथ अंतहीन समस्याएँ हो रही थीं। मुझे नहीं पता था कि मैं सीधे rsvg का उपयोग कर सकता हूं (बाइनरी को rsvg-Convert कहा जाता है, मैक होमब्रे पर मेरे मामले में) और यह काल्पनिक रूप से काम कर रहा है। धन्यवाद।
कांपना

Inkscape का उपयोग करने से मुझे एक समस्या उत्पन्न हुई, जो मुझे इमेजमैजिक के साथ हो रही थी - SVG -> PNG रूपांतरण का उपयोग करके इमेजमेगिक ने इमेज के लिए अदृश्य बाउंडिंग बॉक्स का उपयोग किया (सेंटरिंग और रिलेटिव डाइमेंशन को संरक्षित करने के लिए उपयोग किया जाता है), लेकिन ऑन्क्स ने ठीक काम किया। बहुत धन्यवाद!
कटकुलस
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.