Holger Schadeck

Holgers gesammelte (Programmier-) Erfahrungen

Tag: svgz

Entdecke die Möglichkeiten: Inkscape, pdf2svg, svg2pdf und mehr

Was wird einem alles allein an Möglichkeiten angeboten, wenn man nach pdf2svg googelt:
Quelle 1:#!/bin/bash
 
# you need gs-common, pstoedit and skencil to
# get this script working
export BASENAME="`basename $1 .pdf`";
 
# convert PDF to postscript
pdf2ps ${BASENAME}.pdf
 
# Outline fonts
eps2eps -dNOCACHE ${BASENAME}.ps ${BASENAME}2.ps
 
# Fix bounding box
ps2epsi ${BASENAME}2.ps ${BASENAME}3.ps
 
# Convert to Sketch
pstoedit -f sk ${BASENAME}3.ps ${BASENAME}.sk
 
# Convert [...]