blob: ccee16e0c787127517b238ff1fc04a0c9f679b5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Image manipulation (other than with Image Magick)
## QR codes
Decode:
zbarimg -q --raw qrcode.png
Create:
qrencode -o <file.png> <string>
## SVG
Convert to PDF:
inkscape -D word.svg -o word.pdf
Compatible with LaTeX (see also latex.md):
inkscape -D word.svg -o word.pdf --export-latex
|