This is a plug-in for Cura that allows you to read an SVG file directly as g-code. The outlines of the shapes in your SVG image will get printed as outer walls.
You can install this plug-in in one of four ways.
From package: Go to the releases page to download the latest release. Select the SDK version that fits your version of Cura:
Cura version | SDK |
---|---|
3.5 - 3.6 | 5.0 |
4.0 - 4.3 | 6.0 |
4.4 - 4.13 | 7.0 |
5.0 - 5.1 | 8.0 |
Drag that package file onto the Cura window, then restart Cura.
cmake . && make pack
to create a .curapackage file for each supported SDK version. Similar to the previous option, select the SDK version that fits your version of Cura and drag it onto the Cura window, then restart Cura.plugin.json.in
file to simply plugin.json
and fill in the CMake variables inside. Restart Cura.To use this plug-in, simply load an SVG file. There are a couple of things you might want to watch out for though.
This plug-in will use the current settings in your currently activated extruder as the settings to print with. The following settings will influence your print:
Setting | Effect |
---|---|
Initial Layer Height | This will be used as the height of your first layer. |
Layer Height | This will be used as the height of the rest of the layers. |
Initial Layer Flow | Adjusts the amount of material extruded linearly during the first layer. |
Flow | Adjusts the amount of material extruded linearly. |
Diameter | Compute the correct length of filament to extrude. |
Initial Layer Travel Speed | The speed at which travel moves are made during the first layer. |
Travel Speed | The speed at which travel moves are made. |
Initial Layer Print Speed | The speed at which lines are printed during the first layer. |
Print Speed | The speed at which lines are printed. |
Enable Retraction | Whether all travel moves should be made with filament retracted. |
Retraction Distance | How far to retract. |
Retraction Retract Speed | The speed at which to retract the filament. |
Retraction Prime Speed | The speed at which to unretract the filament. |
Outer Wall Line Width | The line width used for shapes that don't specify a line width themselves. |
Outer Wall Acceleration | The acceleration to use throughout the print (also for travel moves). |
Outer Wall Jerk | The jerk to use throughout the print (also for travel moves). |
Maximum Resolution | Length of segments in all curves. |
Printing Temperature Initial Layer | The temperature at which to print during the first layer. |
Printing Temperature | The temperature at which to print. |
Build Plate Temperature Initial Layer | The build plate temperature during the first layer of the print. |
Build Plate Temperature | The build plate temperature during the rest of the print. |
Enable Prime Blob | Whether or not to prime before the print. |
Extruder Prime X Position | The X coordinate of where to prime. |
Extruder Prime Y Position | The Y coordinate of where to prime. |
Not all elements of the SVG specification will be printed. For some things, this is intended. For instance, all fills, gradients, glow effects, etc. should not be printed. For other things they may just not be supported yet. The following elements are currently supported:
The following attributes are supported for each of these:
The following CSS properties are supported:
To draw the lines, the stroke width of the actual element in SVG is used. If this line width is 0, the outer wall line width will be used. The stroke of a line width can be specified using the stroke-width
attribute in most elements, or using the style
attribute or style
element. However support for CSS is very limited. Classes are not supported and may even get interpreted wrongly.