-
Notifications
You must be signed in to change notification settings - Fork 2
/
pxlart.1
41 lines (35 loc) · 837 Bytes
/
pxlart.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.\" Manpage for pxlart.
.\" Contact [email protected] to correct errors or typos.
.
.TH PXLART "1" "April 2019" "pxlart" "User Manual"
.SH NAME
pxlart
.SH SYNOPSIS
.B pxlart
.SH DESCRIPTION
A ncurses pixel art editor
.SH Keybindings
.
.nf
h: move left
l: move right
j: move down
k: move up
d: draw (alternatively you can use space)
e: erase
b: change brush
c: set FG color
B: set BG color
s: save
o: load
q: quit
.
.fi
.
.SH Image Export
Keybindings and colors can be customized in
Saved projects can be exported to image formats using the mkppm utility included with pxlart.
A saved project called "foo" will generate a file called "foo.data", which can be passed into the mkppm utility to create "foo.ppm".
.B mkppm foo.data foo.ppm
The PPM file can then be converted to a PNG file using imagemagick:
.B convert foo.ppm foo.png