Skip to content

SVG Import

Node icon
Inputs

Imports SVG vector graphics and rasterizes them at any resolution, resolution-independent by nature.

SVG Import loads an SVG file and rasterizes it to pixels at whatever resolution you need. Because it works from vector source data, you can render the same SVG at 64x64 for an icon or 4096x4096 for a print asset with no quality loss.

Rasterization is handled by ThorVG. Like Image In, it supports custom sizing, file watching for live updates, and relative file paths. Type assets/logo.svg and the path resolves relative to your .arcb file.

General

BrowseText

Path to SVG file

Watch FileToggle
Default: false

Auto-reload when file changes on disk (polls once/second)

Custom SizeToggle
Default: false

Enable rasterization at custom dimensions

Fit ModeChoice
Default: None

How SVG fits custom size

  • NoneRasterize at the SVG's native size.
  • FitScale to fit inside target dimensions, preserving aspect ratio.
  • FillScale to fill target dimensions, preserving aspect ratio.
  • StretchStretch to exactly match target dimensions.
Width pxInteger
Default: 512 Range: 1–8192

Custom rasterization width

Height pxInteger
Default: 512 Range: 1–8192

Custom rasterization height

Notes

Width px/Height px/Fit Mode only visible when Custom Size is enabled.

  • Use SVG Import for icons and logos that need to be exported at multiple sizes.
  • Enable Watch File to iterate on the SVG in your vector editor while ArcBrush keeps the pipeline live.