svg-cairo-ps
This is a small library to normalise SVG paths use cairo convert to PostScript (ps), Encapsulated PostScript (eps), PDF, SVG, PNG.
Note: this package works with path data strings, Cairo and CairoSVG, not with full svg xml sources.
Install
npm install svg-cairo-ps
By default, binaries for macOS, Linux and Windows will be downloaded. If you want to build from source, use npm install --build-from-source
and see the Compiling section below.
The minimum version of Node.js required is 6.0.0.
Compiling
If you don't have a supported OS or processor architecture, or you use --build-from-source
, the module will be compiled on your system. This requires several dependencies, including Cairo and Pango.
For detailed installation information, reference material the wiki. One-line installation instructions for common OSes are below.
OS | Command |
---|---|
OS X | Using Homebrew:brew install pkg-config cairo libpng jpeg |
Ubuntu | sudo apt-get install build-essential libcairo2-dev libjpeg-dev libpng-dev |
Fedora | sudo yum install gcc-c++ cairo-devel libjpeg-turbo-devel |
Solaris | pkgin install cairo pkg-config xproto renderproto kbproto xextproto |
OpenBSD | doas pkg_add cairo png jpeg |
Windows | Reference material the wiki |
Others | Reference material the wiki |
Mac OS X v10.11+: If you have recently updated to Mac OS X v10.11+ and are experiencing trouble when compiling, run the following command: xcode-select --install
. Read more about the problem on Stack Overflow.
If you have xcode 10.0 or higher installed, in order to build from source you need NPM 6.4.1 or higher.
Note the setting pkg-config
Pkg-config environment variable, export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig"
.
Explain
// cairo_move_to cairo_rel_move_to () => M/m// cairo_line_to cairo_rel_line_to () => L/l、 H/h、V/v// 弧形 cairo_arc() cairo_arc_negative () => A/r// 贝塞尔曲线 cairo_curve_to() cairo_rel_curve_to () => C/c、Q/q、T/t、S/s// cairo_close_path() => Z/z
Example
const Parse =const pathParse serializePath =// cairo_move_to cairo_rel_move_to () => M/m// cairo_line_to cairo_rel_line_to () => L/l、 H/h、V/v// 弧形 cairo_arc() cairo_arc_negative () => A/r// 贝塞尔曲线 cairo_curve_to() cairo_rel_curve_to () => C/c、Q/q、T/t、S/s// cairo_close_path() => Z/z// support svg, png, PostScript(ps), Encapsulated PostScript(eps), pdfconst command = 'M10 80 Q 52.5 10, 95 80 T 180 80'const pathDatas =const pathDat =const segments = pathDatas// console.log('pathDatas', serializePath(pathDatas))// console.error('segments', segments)
// data construct d: "type": "M" "args": 97155 36172 "type": "L" "args": 81171 36172 "type": "L" "args": 81171 31137 "type": "L" "args": 92118 31137 "type": "A" "args": 3996 3996 0 0 0 96114 27141 "type": "L" "args": 96114 1028 "type": "A" "args": 3996 3996 0 0 0 92118 6286 "type": "L" "args": 10282 6286
License
注意, relcairo 存在问题