«Испечь» изображение SVG в PNG с заданным разрешением?


20

Я нахожусь на Linux, и я хотел бы взять файл SVG и запечь его в файл PNG с заданным разрешением (масштабирование). Есть ли способ сделать это быстро и эффективно из командной строки?

Я ищу что-то вроде этого:

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

Есть ли инструмент для этого?


Ответы:


20

Используйте ImageMagick's convert :

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 не обрабатывает полные спецификации SVG. Если у вас возникли проблемы с неправильным отображением фигур, посмотрите в этой теме о выборе ImageMagick SVG Renderer .


Круто, спасибо. Я нашел rsvgиз ответа ниже самостоятельно, но пришло время начать использовать ImageMagick.
Нафтули Кей

1
Не работает для моего изображения SVG. Сначала я получил convert: unable to read font (null) '@ error / annotate.c / RenderFreetype / 1153` ошибки, которые я исправил brew install gs, но даже когда преобразование прошло без ошибок, получающееся изображение является мусором.
Ллойд Дьюольф

@LloydDewolf, вы можете попробовать очистить SVG в первую очередь.
Михай Ротару,

Мне пришлось добавить -background transparent, иначе конвертировать использует белый фон.
hgoebl

(это относится к linux, может относиться к windows), если вы включите -verbose для IM, тогда может показаться, что для создания промежуточного eps-файла IM использует сам inkscape. Поэтому я бы предложил использовать Inkscape напрямую с: inkscape in.svg --export-png=out.png(пример от superuser.com/a/493028/316154 )
Northern-Bradley

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 в Mac Homebrew), и это работает фантастически. Благодарю.
Тремби

Использование inkscape обошло проблему, с которой я столкнулся при работе с imagemagick - преобразование SVG -> PNG с использованием imagemagick обрезало невидимую ограничивающую рамку для изображения (используется для сохранения центрирования и относительных размеров), но inkscape работал нормально. Большое спасибо!
cutculus
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.