Imagetracer.js for Inkscape
i

Mario VoigtImagetracer.js for Inkscape

Mario Voigt

This extension is an InkScape wrapper for https://github.com/jankovicsandras/imagetracerjs. It utilized a standalone node.js executable to run the JavaScript code. It will be fed with embedded or linked images within InkScape. The big difference between this tracer and all other tracers in recent InkScape is the fact that it is capable of splitting an image into it's "isles". The regular tracers separate by colors but not by objects. That makes it hard to work with sometimes. Imagetracer.js will vectorize your beautiful image into a more beautiful SVG trace with separated infills (break apart into single surfaces like a puzzle), that means you get a lot of single areas. works for Linux and Windows Docs: https://y.stadtfabrikanten.org/imagetracerjs


Comment here...
Styles To Layers
i

Mario VoigtStyles To Layers

Mario Voigt

This extension will re-layer your selected items or the whole document according to their color (stroke or fill). Each style will be put onto it's own layer. This way you can devide elements by their colors with ease. It does some basic-only handling of gradient styles. Docs: https://y.stadtfabrikanten.org/stylestolayers See also https://inkscape.org/~MarioVoigt/%E2%98%85remove-empty-groups for useful cleaning extension. Notes: - includes "Apply Transformations" extension


Comment here...
Primitive for Inkscape
i

Mario VoigtPrimitive for Inkscape

Mario Voigt

Primitive - Reproducing images with geometric primitives written in Go. This InkScape extension just wraps https://github.com/fogleman/primitive into InkScape to quickly get cool traced vector graphics works for Linux and Windows Docs: https://y.stadtfabrikanten.org/primitive


Comment here...
Contour Scanner And Trimmer
i

Mario VoigtContour Scanner And Trimmer

Mario Voigt

Find open, closed and self-intersecting contours. Self-intersecting contours can be closed or open contours so you can select this option additionally! Docs: https://y.stadtfabrikanten.org/contourscannerandtrimmer TL;DR: Bentley-Ottmann algorithm is used to check for those intersections. The algorithm works with the accuracy of the selected paths (epsilons). Self-intersections usually happen if you just have large overlaps where the contour crosses itself like an 'eight' character for example. Using the highlighting it's easy to find contours with unproper path handles. While in a CAD system an area of of a surface can only be calculated if the contour is closed and clean, finding self intersections in Inkscape is not required to do so. SVG format allows to calculate areas on open contours and self-twisted curves. This "artwork behaviour" makes it harder for handling machinery-like drawings for laser cutting, vinyl cutting or whatever. That's why we need to have extra sanity checks but we also have the great freedom of Inkscape. Finding self-intersecting contours does only work for curves with straight line segments (polylines) because it just calculates with a set of given XY points. It does not respect bezier curve segments. Bezier curves have no regular points but special handles, which define the slope of the curve per handle side (left and right). To properly handle a bezier curve we need to split the bezier curve in a lot of small linear segments (acting like infinitessimal solution). We can use the tool "Flatten Bezier to do this (will make your curve looking edgy or ugly possible). If you want to leave the shape of the line clean (bezier type, no edgy approximation) we can use Split Bezier (Subdivide) or Add Nodes instead. But remember that your calculated self-intersection points will only be an approximation then. The higher the subdivide count is the higher the precision of the calculated self-intersecting points coordinates will be.


Comment here...
Inventory Sticker
i

Mario VoigtInventory Sticker

Mario Voigt

This extension generates inventory stickers for thermo printers (we use Brother QL-720NW) from our Teedy instance. Teedy is an open source software document management system (DMS). This extension is tested in Linux (Ubuntu 20 LTS) and Windows 10. Source code can be found in https://gitea.fablabchemnitz.de/MarioVoigt/mightyscape-1.2/src/branch/master/extensions/fablabchemnitz Docs: https://y.stadtfabrikanten.org/inventorysticker


Comment here...
WebP Import
i

Mario VoigtWebP Import

Mario Voigt

Import *.webp image files using ImageMagick conversion. Routine is webp → png → svg → write into Inkscape canvas. You need to install ImageMagick. The command "magick" or "convert" needs to be in path variable, otherwise the extension will fail. Docs: https://y.stadtfabrikanten.org/webp-import


Comment here...
Slic3r STL Input
i

Mario VoigtSlic3r STL Input

Mario Voigt

STL Sliced Import (by Slic3r). Supports OBJ/OFF/PLY/STL as input file formats. How it works: - projects an STL file on the X-Y plane by cutting the objects into "slices" - each "slice" is a group of polygons, with a label indicating its z position - the polygons are converted to paths for better editing in inkscape - use Object → Rows & Columns →  distribute the slices in a grid Warning: Requires Slicer 1.3.1-dev (the really latest build possible) docs: https://y.stadtfabrikanten.org/slic3rstlinput based on stl input extension of Jürgen Weigert. Thanks for your hard work.


Comment here...
Maze
i

thjaziMaze

thjazi

this extension makes it possible to generate mazes using different algorithms it uses the maze module (in file maze.py) if you want to add an algorithm, take inspiration from the 5 algorithms I've already coded, it shouldn't be too hard to add some compatible ones it is also possible to choose the thickness of the lines, the size of the squares and the size of the labyrinth (in number of squares). The result will be displayed in black, in a group containing all the paths. And you can then easily manipulate them for all questions, comments, bugs: duvillard.tiemen@gmail.com this extension is under licence MIT @ Tiemen DUVILLARD 2020 EDIT : 27/05/2021 : New Version, with a new Algorithm 18/03/2024 : Solve bug with 1.3.2


Comment here...
Dxf2papercraft
i

Mario VoigtDxf2papercraft

Mario Voigt

Unfold and import DXF into InkScape using dxf2papercraft. This is some kind of wrapper extension utilizing kabeja to convert the dxf output from dxf2papercraft into SVG. To make it work you need to install at least java. Works on Windows and Linux. dxf2papercraft itself is a tool to make flattened 2D output from a 3D DXF file. Note that kabeja and dxf2papercraft are really old tools. There might be a lot better solutions out there but this is a good starting point and it basically works :) Docs: https://y.stadtfabrikanten.org/dxf2papercraft You might have a look at https://inkscape.org/~MarioVoigt/%E2%98%85dxfdwg-importer and https://inkscape.org/~MarioVoigt/%E2%98%85inkscape-papercraft-unfold-stl too.


Comment here...
Paperfold
i

Mario VoigtPaperfold

Mario Voigt

Paperfold is another flattener for triangle mesh files, heavily based on https://github.com/felixfeliz/paperfoldmodels by Felix Scholz aka felixfeliz. Possible input files are STL, Wavefront OBJ, PLY and OFF. To run this you need to install OpenMesh with python pip. The algorithm of paperfoldmodels consists of three steps: - Find a minimum spanning tree of the dual graph of the mesh. - Unfold the dual graph. - Remove self-intersections by adding additional cuts along edges. Reference: The code is mostly based on the algorithm presented in a by Straub and Prautzsch (https://geom.ivd.kit.edu/downloads/proj-paper-models_cut_out_sheets.pdf). Docs: https://y.stadtfabrikanten.org/paperfold


Comment here...
Ids to text elements
i

whidevIds to text elements

whidev

A simple Inkscape extension that lets you extract attributes (like id) from all selected paths, and show them as <text> elements inside the paths. Useful for when you want to have all paths' id shown on the SVG document as <text> nodes. You can also use it for other path attributes, like `label`, `fill`, `stroke`, `width`, `height`. Available under the Extensions > Text submenu. Check the extension's repo on GitHub for examples. Options for styling and formatting the text: Font size in pixels Color (the fill color of the <text> elements) Font (should be installed on the system) Font Weight (should be supported by the selected font) Angle (controls the rotation of the generated <text> elements, in degrees) Options for further editing the extracted text (only used with id and label attributes): Text to replace (a simple replace function to remove characters you may not want from the text) Match Regular Expression (matches the extracted text of each path to a regular expression and uses the result on the path, e.g. if the id is `Province_055` and this field `\d+`, the text on the path will be just `055`) Capitalize (capitalize all text) Group paths with the generated text elements (if checked, also group the path with its text label) Note: only works on <path> elements. If you have a <circle>, <rectangle>, <text>, etc., first use Object > Object to Path to convert it. For Inkscape v0.92 and before, you should check the extension's repository on GitHub.


Comment here...
TexText
i

jcwinklerTexText

jcwinkler

TexText allows to add and re-edit LaTeX/ XeLaTeX/ LuaLaTeX/ typst generated SVG elements to your drawing. A fully functional LaTeX distribution and or typst installation must be installed on your system! Most recent version is TexText 1.12.0 from 2025-07-17. It is compatible with Inkscape 1.4.x. For Inkscape 1.3.x goto https://github.com/textext/textext/releases/tag/1.10.2 For Inkscape 1.2.x, 1.1.x, and 1.0. goto https://github.com/textext/textext/releases/tag/1.8.2 Extensive installation instructions and extension documentation can be found at https://textext.github.io/textext For manual installation from this site: Download TexText-1.12.0-Inkscape.zip and place its content (i.e. the folder textext with all its files inside) into the Inkscape extension directory. Or load the zip-file via Inkscape's extension manager (experimental). Sourcecode and bug reports: https://github.com/textext/textext This extension is a direct continuation of the discontinued TexText 0.4.4 developed by Pauli Virtanen (https://pav.iki.fi/software/textext/)


Comment here...
Tableau
i

Frank SAURETTableau

Frank SAURET

inkscape-tableau ----- Version 2024.1 For inkscape V 1.x ==================== Draw simple table with or not rounded corner. Optimized for laser cutter. Usage ----- Copy the .inx, .svg and *.py files into your Inkscape extensions directory (usually on windows C:\Users\username\AppData\Roaming\inkscape\extensions). The actual directory can be found under Preferences/System. Restart inkscape. The table will be available under Extensions/Tableau. All code is offered under Licence : Public Domain. Translated in english. If you translat it in other language, please send me the pot file. Question possible en français.


Comment here...
Offset Paths
i

Mario VoigtOffset Paths

Mario Voigt

Create offset for open or closed paths from non-bezier paths (destructive method). Python library pyclipper needs to be installed (which is automatically done, if you install MightyScape completely). Use Approximate Curves by Straight Lines (Flatten Beziers) extension in advance of this plugin to convert your paths. Docs: https://y.stadtfabrikanten.org/offsetpaths


Comment here...
vpypetools - vpype for Inkscape
i

Mario Voigtvpypetools - vpype for Inkscape

Mario Voigt

vpype is a command processor working with SVG files. It can do a lot of productive steps to optimize files for different purposes like pen plotting, laser cutting or the generation of creative artwork. vpype is really powerful and helps to extend Inkscape feature capability. vpype contains a lot of functionality which is included natively within Inkscape. The extension "vpype for Inkscape" does not deal with all features but with a set of important commands like linemerge, linesort, linesimplify, occult, etc. We can use it to shorten tool path lengths, remove hiddenlines and so on. vpype converts all elements into simple SVG elements like svg:line, svg:polyline and svg:polygon. They can be displayed properly in Inkscape, but they have no knot handles to edit (see https://alpha.inkscape.org/vectors/www.inkscapeforum.com/viewtopicb51d.html?f=16&t=32562). We need to convert those elements to svg:path using key combination CTRL + SHIFT + C ("object to path"; do not use "stroke to path" because it will duplicate your outline with inset and outset contours). Our extension allows to do this conversion automatically. Documentation: https://y.stadtfabrikanten.org/vpypetools


Comment here...
randomDelete
i

thjazirandomDelete

thjazi

This extension allows to delete with a certain probability each of the selected objects. Edit 18/03/2024 : Solve bug with 1.3.2


Comment here...
OptimLaser
i

Frank SAURETOptimLaser

Frank SAURET

This script optimizes a drawing for laser cutting: - Removes overlapping lines (except Bézier curves); - Saves the modified file with a new name; - Applies modifications to the entire document; - Delete non cuttable path; - Optimizes the cutting order. Translated in english. Please, fork and make a pull request on github for other languages. Or send me the pot file with country code. Download it on https://github.com/FrankSAURET/OptimLaser.


Comment here...
Inkscape ComfyUI Extension
i

A-nom-ali 😋🥊Inkscape ComfyUI Extension

A-nom-ali 😋🥊

# Inkscape ComfyUI Extension An Inkscape extension that integrates ComfyUI - turning Inkscape into Recraft, but with all Inkscape's features! The **Inkscape ComfyUI Extension** integrates Inkscape with the ComfyUI API, enabling users to generate images based on selected SVG objects and specified prompts. This extension facilitates the creation of AI-generated images directly within Inkscape, streamlining the design workflow. ## Key Features: * AI Image Generation: Transform selected SVG elements into AI-generated images using custom positive and negative prompts. * Seamless Integration: Directly interact with the ComfyUI API from within Inkscape. * Customizable Parameters: Adjust settings such as CFG Scale, Denoise, Seed, and Steps to fine-tune image generation. * Workflow Management: Load and utilize predefined workflows in JSON format. ## Dependencies: * Inkscape: Version 1.3.2 or higher. * ComfyUI API: Accessible at the specified API URL (default: 127.0.0.1:8188). ## Compatibility: * Operating Systems: Compatible with Windows, macOS, and Linux. * Inkscape Versions: Designed for Inkscape 1.0 and above. ## Installation: 1. Set Up ComfyUI: Ensure ComfyUI is running and accessible at the specified API URL. 2. Install Inkscape 3. Install Extension: Place the extension files in Inkscape’s user extensions directory. You can find this folder in: - Edit>Preferences or Inkscape>Settings on Mac - Select System - Press the **"Open"** button next to "User extensions" 4. Restart Inkscape: Restart Inkscape to load the new extension. 5. Use the Extension: Select SVG objects, navigate to the extension, input prompts and parameters, and generate images. ## Setup: 1. An api version workflow is included - check to make sure you have all the right models by opening it in ComfyUI. * Or use your own after saving it to API format. 2. The features are currently limited to: * A positive prompt * A negative prompt * An image input * A KSampler's: * CFG Scale * Denoise * Seed * Steps 3. You need to find the correct IDs in the JSON file and set those in the IDs tab. * These IDs will differ from what you see in your normal (non-api) workflow in ComfyUI, so remember to check. 4. If your ComfyUI IP or port differs, update to match. * If ComfyUI is on a different PC on your network, remember to start it with the argument: > "--listen 0.0.0.0" 5. Remember to follow the above process when you change the workflow. Would be nice to improve this to a history - help welcome! ## Usage: 1. Draw something or select an existing object. 2. Extensions>Render>ComfyUI 3. If you haven't done the setup, do so now 3. Enter your prompt and select your values 4. Press Apply 5. Wait for ComfyUI to finish producing your results 6. Rave in awe! ### Additionally * Once you have the image, it is a simple matter of tracing the bitmap. You can find this feature at **Path>Trace Bitmap**. Play around with the settings. * It often helps to combine the results with the same prompt to refine the outcome - play around! ## Security Considerations: * API Interactions: The extension communicates with the ComfyUI API via HTTP requests. Ensure the API URL is correctly configured and secure. * File Handling: Temporary files are created during image processing. The extension manages these files securely, but users should be aware of their system’s temporary directory policies. By integrating AI-driven image generation into Inkscape, this extension enhances creative workflows, offering designers a powerful tool to expand their design capabilities.


Comment here...
Convert To Polylines
i

Mario VoigtConvert To Polylines

Mario Voigt

This extension takes the points of a path and make a straight polyline out of it. Nothing less, nothing more. You can do the same with default Inkscape UI (select the path -> Node Tool -> Straighten lines) but it might be quicker to use in some use cases. This extension handles duplicate points on a path by removing them. Docs: https://y.stadtfabrikanten.org/convert-to-polylines


Comment here...
Unwind Paths
i

Mario VoigtUnwind Paths

Mario Voigt

An extension to wrap off paths to receive horizontal lines or extruded bands. Can be used for paper crafting, analysis and other works. You can also just use it to colorize path segments. Docs: https://y.stadtfabrikanten.org/unwindpaths Note: Unwind Paths is similar to https://inkscape.org/~Shoshanaz/%E2%98%85horizontal-lines-effect-hlines, but it is more andvanced as it supports bezier curves and allows to create extruded bands, style config, etc.


Comment here...
Move Path Node
i

Mario VoigtMove Path Node

Mario Voigt

Extension to change starting node of a path and visualize it by dots and numbers Notes: Use "Path → Reverse" to change path direction Use extension "Chain Paths" to make closed paths out of segments. Docs: https://y.stadtfabrikanten.org/movepathnode


Comment here...
Ungrouper And Element Migrator/Filter
i

Mario VoigtUngrouper And Element Migrator/Filter

Mario Voigt

This extension parses the selection and will put all elements into one single group. If you have a cluster with lots of groups and elements you will clean up this way (one top level group, all elements below it). If you select a single element or a set of elements you just wrap it like using CTRL + G (like making a usual group). You can also use this extension to filter out unwanted SVG elements at all. This tool is also able to drop elements with certain SVG tags to perform some kind of cleanup in the selection. You can drop elements like circle,ellipse,image,line,path,polyline,rect,text,tspan and some more. Notes: - includes "Remove Empty Groups" extension - includes "Apply Transformations" extension Docs: https://y.stadtfabrikanten.org/migrategroups


Comment here...
Label Pages
i

JeromeLabel Pages

Jerome

This extension adds page numbers as labels to all pages. * You can chose a label prefix and whether existing page labels should be kept or replaced. * Appears under Extensions>Pages>Labels from page numbers... * Installation: Unzip to 'User Extensions' folder. History: 2024-01-29: first version.


Comment here...
Create Links (Breakaway Connectors)
i

Mario VoigtCreate Links (Breakaway Connectors)

Mario Voigt

To create tabs in Inkscape, we cannot properly use the integrated eraser tool. It will clip only in a cosmetic fashion but we do not get the real paths we need. Creating links (also known as microtabs, tabs, bridges, breakaway connectors, links, perforations) is sometimes required for laser cutting or vinyl cutting. This extension allows to pinch paths to create according segments - no cosmetic one's, but real segments. It will split up open or closed contours with user defined rules. To get best output please try to close open paths before using. Docs: https://y.stadtfabrikanten.org/createlinks


Comment here...
Export to LaserGRBL for laser cutting
i

Nikki.SmithExport to LaserGRBL for laser cutting

Nikki.Smith

This free extension for Inkscape speeds up preparation of laser cutting jobs by exporting Gcode to LaserGRBL (included with most laser cutters). Pick your model of laser and material / thickness from pulldown lists, then export a complex job directly into LaserGRBL with one click. Use different coloured lines for each part of a job. eg, red lines to engrave in a single pass at 3000 mm/min @ 80% power, but blue lines cut in 3 passes at 300 mm/min @ 90% power. The emphasis is on it being very easy to use, with the bare minimum of settings. v1.21 17/Dec/2024


Comment here...
Export Layers
i

Dmitry TExport Layers

Dmitry T

Inkscape extension to export SVG layers as standalone PDF, PNG, SVG or JPEG images. The exported images can progressively reveal content of an Inkscape document.


Comment here...
Boite Brique (laser cut boxes)
i

Frank SAURETBoite Brique (laser cut boxes)

Frank SAURET

Draw a brick box with or without lid. Translated in english.


Comment here...
Jointure rapide (quick joint)
i

Frank SAURETJointure rapide (quick joint)

Frank SAURET

Initially fork of this one : https://inkscape.org/fr/~Jarrett/%E2%98%85quickjoint. Added some functionnality : - Translate in english and french. Possibility for other languages. - One click in inkscape update. - Convert in path inside the extension. - Possibility to make a database of material with kerf. Select an object, run the extension and you can add tabs on each edge. You can also create slot for this edges.


Comment here...
Inkscape 1.3.2 Windows 32bit msi
i

Marc JeanmouginInkscape 1.3.2 Windows 32bit msi

Marc Jeanmougin

...


Comment here...
Lock/Unlock all layers
i

Jacob GroblerLock/Unlock all layers

Jacob Grobler

# Inkscape Layer Locking Extensions https://github.com/hemelbesem90s/Lock-Unlock-All-Layers.git This repository contains three Inkscape extensions for managing layer locking: ## 1. Lock/Unlock All Layers This extension provides a convenient way to toggle the lock state of all layers in your Inkscape document. **Functionality:** * If any layer is unlocked, the extension will lock all layers. * If all layers are locked, the extension will unlock all layers. **Usage:** 1. Install the extension by placing the `lock_unlock_all_layers.inx` and `lock_unlock_all_layers.py` files in your Inkscape extensions directory. 2. Open your SVG document in Inkscape. 3. Go to `Extensions > Layer > Lock/Unlock All Layers`. ## 2. Lock All Layers This extension locks all layers in your Inkscape document, regardless of their current state. **Usage:** 1. Install the extension by placing the `lock_all_layers.inx` and `lock_all_layers.py` files in your Inkscape extensions directory. 2. Open your SVG document in Inkscape. 3. Go to `Extensions > Layer > Lock All Layers`. ## 3. Unlock All Layers This extension unlocks all layers in your Inkscape document, regardless of their current state. **Usage:** 1. Install the extension by placing the `unlock_all_layers.inx` and `unlock_all_layers.py` files in your Inkscape extensions directory. 2. Open your SVG document in Inkscape. 3. Go to `Extensions > Layer > Unlock All Layers`. ## Acknowledgements This extension was developed with the help of [Gemini Advanced](https://sites.research.google/gemini), Google's next-generation AI model. Special thanks to the Inkscape community for their valuable contributions and support, particularly the following resources: * Inkscape Forum: [https://inkscape.org/forums/](https://inkscape.org/forums/) * Inkscape Wiki: [https://wiki.inkscape.org/wiki/](https://wiki.inkscape.org/wiki/) * Inkscape Extensions Documentation: [https://inkscape.gitlab.io/extensions/documentation/](https://inkscape.gitlab.io/extensions/documentation/)


Comment here...
Show all layers
i

Jacob GroblerShow all layers

Jacob Grobler

A simple extension to make all layers visible https://github.com/hemelbesem90s/Show-all-layers.git


Comment here...
Reset to standard (STD) configuration
i

Jacob GroblerReset to standard (STD) configuration

Jacob Grobler

https://github.com/hemelbesem90s/Reset-Standard-Config.git Inkscape Reset to Standard Configuration Extension This extension resets the visibility of all layers in an Inkscape document to a predefined standard configuration. Functionality The extension works with SVG files that have a hierarchical layer structure, where: Top-level layers represent option groups. Sub-layers represent specific options within those groups. Layers are made visible or invisible to enable or disable corresponding options. Layers that are part of the standard configuration have "(STD)" appended to their names. The extension resets the visibility of all layers so that only the layers with "(STD)" in their names (and their parent layers) are visible. Usage Install the extension by placing the reset_to_std_config.inx and reset_to_std_config.py files in your Inkscape extensions directory. Open your SVG document in Inkscape. Go to Extensions > Layer > Reset to Standard Configuration. Acknowledgements This extension was developed with the help of Gemini Advanced, Google's next-generation AI model. Special thanks to the Inkscape community for their valuable contributions and support, particularly the following resources: Inkscape Forum: https://inkscape.org/forums/ Inkscape Wiki: https://wiki.inkscape.org/wiki/ Inkscape Extensions Documentation: https://inkscape.gitlab.io/extensions/documentation/


Comment here...
Fix_A4
i

Alpha64Fix_A4

Alpha64

Straightening A4 format from raster image. Adaptation of Shrinivas Kulkarni's extension


Comment here...
Crossword Puzzle Generator
i

Jonathan NeuhauserCrossword Puzzle Generator

Jonathan Neuhauser

A simple crossword puzzle generator. - Generate simple crossword puzzles based on a list of words and clues. - Wordlist can be read in from a file. - Tries to find a relatively compact solution. The generation algorithm is based on genxword (https://github.com/riverrun/genxword). - Outputs the grid, clue list and solution (if requested) on newly added pages. - All different element types in the output are assigned a class to allow for easy manipulation of the design of the crossword; classes are reused if more than one crossword puzzle is generated inside a file. - The solution can be displayed as wordlist or as filled-out grid. - Letters can be marked as pre-filled by prefixing them with a `^` sign.


Comment here...
Small inkscape extension tutorial list all layers,paths and node
i

costycncSmall inkscape extension tutorial list all layers,paths and node

costycnc

This extension is util for who want to learn the base principle of python language and in special for who want create for first time or want to understand how request all paths or nodes for ulterior custom programming.


Comment here...
xkcdify
i

Gui Meiraxkcdify

Gui Meira

This extension modifies your paths to make them look hand-drawn like the ones in xkcd comics (https://xkcd.com/). It does so by first adding more nodes to your path and then adding a little bit of noise to the position of each node. The algorithm was adapted from the one used in matplotlib's xkcd function: https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.xkcd.html The extension can also replace the fonts of all the selected texts with Humor Sans, which looks (kinda) similar to the text on xkcd. Installation: 1) Download the zip file for this extension. 2) Open Inkscape and go to Edit > Preferences. Open the System tab on the left panel. You'll see a list of folder names. 3) Locate the User extensions folder and click Open. 4) Extract the files from the xkcdify release you just downloaded into this folder and restart Inkscape. 5) Optionally, download and install the Humor Sans font. It can be obtained here: https://github.com/shreyankg/xkcd-desktop/blob/master/Humor-Sans.ttf Usage: 1) Select the paths and texts you want to xkcdify 2) Go to Extensions > Modify paths > xkcdify 3) Adjust the parameters to tune the effect to your liking. You can enable the live preview using the checkbox at the bottom of the window This extension only processes paths. If you want to xkcdify ellipses, rectangles, and other shapes, convert them to paths first using Path > Object to path This project is not affiliated, authorized, or endorsed by xkcd. I'm just a guy on the internet who thinks xkcd is cool.


Comment here...
Inkdaviz - Visualize Data in Inkscape
i

Rania AminaInkdaviz - Visualize Data in Inkscape

Rania Amina

Inkdaviz is an Inkscape extension that generates SVG chart from CSV data directly in Inkscape.. Dependencies This extension use matplot library to generate chart. Make sure this package already installed in your system: - python3-matplotlib - python3-tinycss2 # Installation - Download the files inkdaviz.py and inkdaviz.inx. - Copy both files to the extensions directory in Inkscape's configuration folder: - Linux: ~/.config/inkscape/extensions/ - Restart Inkscape. # Usage - Open extension the menu **Extensions > Generate > Inkdaviz.. - Select CSV file and fill the fiels. See help tab to get more info for each field. - Click Apply. Demo: https://youtu.be/QM1wGCrzK94 # Notes - You need to ungroup generated chart to make the object movable.


Comment here...
Multi page layout and margins
i

ElCoyoteeMulti page layout and margins

ElCoyotee

Setup the Inkscape canvas for projects with multiple pages. For example booklets or flyers. You can change the way the pages are ordered either a single array of pages for loose collection of pages or double pages for books. As well as creating and positioning the pages margins are added for cut safety zones or content region. The margins are grouped so they are easy to show or hide for export. MD5 Hash: 6746c85b3a35bfc4ab296e71d1af8d75


Comment here...
Inkscape 1.3.2 Windows 64bit msi
i

Marc JeanmouginInkscape 1.3.2 Windows 64bit msi

Marc Jeanmougin

...


Comment here...
Animate Order
i

Mario VoigtAnimate Order

Mario Voigt

Create animated SVG preview file and show it in browser. Helps to quickly evaluate line order for cutting processes. Docs: https://y.stadtfabrikanten.org/animateorder Please also check out Maren's extension: https://inkscape.org/~Moini/%E2%98%85line-animator-draw-by-invisible-hand


Comment here...
Cleanup Styles
i

Mario VoigtCleanup Styles

Mario Voigt

This plugin is a bit similar to [Blueprint Maker](https://y.stadtfabrikanten.org/blueprint-maker) but has a more special use case and a lot of options! It is useful for adjusting the stroke width and opacity of large groups. Usually for good laser cutting the line width has to match a maximum width to be recognized as a hairline. Additionally often opacity issues cause that lines are missed by laser cutter. Docs: https://y.stadtfabrikanten.org/cleanup-styles


Comment here...
Inkscape 1.3.2 Windows 32bit 7z archive
i

Marc JeanmouginInkscape 1.3.2 Windows 32bit 7z archive

Marc Jeanmougin

...


Comment here...
Hello world example
i

costycncHello world example

costycnc

Minimal inkscape 1.0 extension https://github.com/costycnc/inkscape-1.0-python-hello-world-extension-costycnc


Comment here...
Inkscape 1.3.2 macOS Intel dmg
i

René de HesselleInkscape 1.3.2 macOS Intel dmg

René de Hesselle

...


Comment here...
Inkscape 1.3.2 Windows 64bit 7z archive
i

Marc JeanmouginInkscape 1.3.2 Windows 64bit 7z archive

Marc Jeanmougin

...


Comment here...
Inkscape 1.3.2 macOS arm64 dmg
i

René de HesselleInkscape 1.3.2 macOS arm64 dmg

René de Hesselle

...


Comment here...
Inkscape 1.3.2 source code tarball
i

Marc JeanmouginInkscape 1.3.2 source code tarball

Marc Jeanmougin

...


Comment here...
Inkscape 1.3.2 Linux AppImage
i

Marc JeanmouginInkscape 1.3.2 Linux AppImage

Marc Jeanmougin

...


Comment here...
Inkscape 1.3.2 Windows 64bit exe
i

Marc JeanmouginInkscape 1.3.2 Windows 64bit exe

Marc Jeanmougin

...


Comment here...
Sibelius ViewBox
i

musikaiSibelius ViewBox

musikai

This is an extension for Inkscape 1.2 for correcting SVG-files that were exported by Sibelius via the graphic selection tool. These SVG are always the full page with 4 white rectangles that cover the unwanted area. The page size and viewbox isn't set correctly to show only the selected area. The extension will correct this and has the options to - remove the white cover boxes - remove all elements that are outside the page (most of it). #### Download: Click on the image above #### Video: https://www.youtube.com/watch?v=Jg7QqarVrA4 #### Installation: On Windows extract the zip file into something like this path: C:\Users\yourname\AppData\Roaming\inkscape\extensions\ To find and open the correct folder you can also open Inkscape->Edit->Preferences->System->User Extensions->Open After installation and restart Inkscape you can run the extension in "Extensions"->Document->Sibelius Viewbox. #### (Optional) Usage as .bat-file to process multiple SVGs: As it is a python script it also can be used to batch process multiple files via command line. Put this line into a text-file, edit the paths (yourname) and save as SibeliusViewbox.bat: for %%a in (%*) do python.exe "C:\Users\yourname\AppData\Roaming\inkscape\extensions\SibeliusViewbox\SibeliusViewboxExtension.py" --remove_whiteboxes=True --remove_elements=True %%a > %%a_viewbox.svg An example .bat-file is included. Once created you can drag and drop multiple SVGs onto the SibeliusViewbox.bat-file and the script will generate the corrected SVGs. Note: If Inkscape is not installed in "C:\Program Files\" you must edit the Python script. #### (Optional) Add .bat-file to Send-to-Menu: You can add the .bat-file to the Windows Send-to-menu. Open Windows-Explorer and insert this into the address-bar: shell:sendto This opens the Send-to-folder. Copy the .bat-file into it. Now you can select all your SVGs, right click -> Send-to -> SibeliusViewbox.bat


Comment here...
Inkscape PDF+LaTex Viewer
i

emilldInkscape PDF+LaTex Viewer

emilld

Inkscape extension to save and view the svg file in the pdf+latex format for easier illustration generation for scientific papers.


Comment here...
Inkscape 1.3.2 Windows 32bit exe
i

Marc JeanmouginInkscape 1.3.2 Windows 32bit exe

Marc Jeanmougin

...


Comment here...
Marz
i

FrankMarz

Frank

This extension is for users of the FreeCAD Marz Workbench that relies on inkscape svg files. The user can add the required information to the paths in Inkscape so the Marz WB can recognize them as valid geometry references. Development: https://github.com/mnesarco/MarzWorkbench Tested on: Inkscape 1.3.2 (091e20ef0f, 2023-11-25) GLib version: 2.78.4 GTK version: 3.24.41 glibmm version: 2.66.1 gtkmm version: 3.24.5 libxml2 version: 2.11.5 libxslt version: 1.1.39 Cairo version: 1.18.0 Pango version: 1.51.2 HarfBuzz version: 8.1.1 OS version: GNOME 45 (Flatpak runtime)


Comment here...
Sync Sound Effects with SVG Animations
i

Inkscape PandaSync Sound Effects with SVG Animations

Inkscape Panda

Sync Sound Effects with SVG Animations - My brain melted trying to figure out this form to upload this. Click the Down Arrow to DOWNLOAD the archive file to have FUN!


Comment here...
Gimp Bubble Gum 01
i

theeagleowlGimp Bubble Gum 01

theeagleowl

Problème d'affichage avec le "Filtre / Biseaux / Eclairage spéculaire" --- Curated by Maren Hachmann on June 20 2024 12:27 AM


Comment here...
Split And Break Bezier At T
i

Mario VoigtSplit And Break Bezier At T

Mario Voigt

Splits a path at value t=0..1 (t=0.5 means 50%) Applies independently for each sub path in selection. Docs: https://y.stadtfabrikanten.org/splitandbreakbezieratt


Comment here...
Engrenage (Gear)
i

Frank SAURETEngrenage (Gear)

Frank SAURET

Gears extension for tracing involute gears and metric pitch gears (belt pulley); allows spokes, center cross, metric module, best evolute shape. Initially, copy of inkscape-gears-dev by jnweiger. - 2024-11-09 | 2024.3 : - Added the ability to define fixing holes based on material thickness. - Ability to make a hole that matches the material thickness. - Added the drawing of the axis if the perfect square option is chosen. - 2024-11-06 | 2024.2 : The fixing wheel for servomotors is now configurable. - 2024-10-25 | 2024.1 : Added the drawing of the fixing wheel for servomotors. Versioning change. Flanks for T-type wheel. - 2024-07-20 | 1.4 : Added the drawing of metric pitch pulley. Retouched explanations. Added diagrams. - 2024-06-22 | 1.3 : Added colors for cutting order. Separated into multiple objects to facilitate retouching and recoloring. - 2024-06-18 | 1.2 : Added the ability to choose the shape of the hole (rectangular, round, or servo imprint) and to choose the dimensions of the hole. Added the ability to choose an imprint for the servo hole. The imprints are placed in the file engrenage.ini. - 2024-04-21 | 1.1 : Translated into French. Modified the color in case of undercut. Modified the dedendum to be 1.25 times the addendum. -------------------------------------------------------------------------------------------------------------------- - 2024-11-09 | 2024.3 : - Ajout de la possibilité de définir les trous de fixation en fonction de l'épaisseur du matériau. - Possibilité de faire un trou qui correspond à l'épaisseur du matériau. - Ajout du dessin de l'axe si on choisit l'option carré parfait. - 2024-11-06 | 2024.2 : La roue de fixation pour les servomoteurs est maintenant paramétrable. - 2024-10-25 | 2024.1 : Ajout du tracé de roue de fixation pour les servomoteurs. Changement de versionnage. Flancs pour roue de type T. - 2024-07-20 | 1.4 : Ajout du tracé de poulie au pas métrique. Retouche des explications. Ajout de schémas. - 2024-06-22 | 1.3 : Ajout de couleurs pour l'ordre de découpe. Séparation en plusieurs objet pour faciliter la retouche et la recolorisation. - 2024-06-18 | 1.2 : Ajout de la possibilité de choisir la forme du trou (rectangulaire, ronde ou empreinte de servo) et de choisir les dimensions du trou. Ajout de la possibilité de choisir une empreinte pour le trou du servo. Les empreintes sont placées dans le fichier engrenage.ini - 2024-04-21 | 1.1 : traduction en français. Modification de la couleur en cas d'undercut. Modification du deddendum pour qu'il fasse 1,25 fois l'addendum. Translated in english. Please send me pot file for other languages.


Comment here...
Dynamic GUI example extensions with GTK
i

Nikki.SmithDynamic GUI example extensions with GTK

Nikki.Smith

For extension developers. Most extensions to Inkscape use an .inx file that describes a static user interface, then a Python script is run one time when the user clicks "Apply". To create a dynamic UI (that changes as the user clicks buttons, selects from dropdown menus, etc) you can build it in GTK using a Python script that runs immediately. Requires Inkscape v1.1 or newer. These short examples demonstrate a handful of functions in GTK+ 3. Now includes an example extension that uses a .glade XML file to create the UI with Gtk.Builder(). Also many small changes that result in much higher pylint code scores.


Comment here...
Localization / translation example extension
i

Nikki.SmithLocalization / translation example extension

Nikki.Smith

For extension developers. This minimal extension pulls together some helpful documentation about adding localization to an extension, including where the translation files go and what gettext commands to use on both Windows and Linux. Now includes localized text in the Python script. Also many small changes that result in a much higher pylint code score.


Comment here...