app • InkScape for SVG and vectorial image editing - martindubenet/wed-dev-design GitHub Wiki
Inkscape natively supports opening or importing many different formats, such as SVG, SVGZ (gzipped SVG), PDF, EPS, and AI (Adobe Illustrator) formats. And, as of version 0.91, Inkscape can import CDR (CorelDraw) and VSD (Visio) natively.
On Windows PC, InkScape requires that new fonts (from Google Fonts or others) needs to be INSTALL FOR ALL USERS. |
---|
Contrary to what the app’s « Save As EPS » option let you believe InkScape does NOT export as real PostScript. Instead it generates a compressed bitmap as a flatten layer that is saved with the extension «.eps» which is kinda dum if you ask me.
If you want to EXPORT AS EPS follow this tutorial. This will require you to install the Scribus app.
The default Inkscape SVG files require a lot of inkscape metadata for edition purposes since SVG is the default file extension at inkscape. Using SVGO we can remove a lot of redundant and useless information such as editor metadata, comments, hidden elements, default or non-optimal values and other stuff that can be safely removed or converted without affecting SVG rendering result.
SVG Optimizer is a Nodejs-based tool for optimizing SVG vector graphics files.
Useful parameters : https://github.com/svg/svgo#what-it-can-do
- cleanupAttrs
- removeComments
- removeUselessDefs
- removeEmptyContainers
- removeViewBox --OR--
removeDimensions - convertColors
- prefixIds
- removeDimensions --OR--
removeViewBox - addClassesToSVGElement
- removeOffCanvasPaths