forked from sveinbjornt/osxiconutils
-
Notifications
You must be signed in to change notification settings - Fork 2
/
icns2image.1
41 lines (41 loc) · 949 Bytes
/
icns2image.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
.Dd Sep 30, 2006
.Dt ICNS2IMAGE 1
.Os Darwin
.Sh NAME
.Nm icns2image
.Nd Create image from a Mac OS X icns file
.Sh SYNOPSIS
.Nm
.Op Fl vh
.Op Fl r Ar size
.Op Fl t Ar imageFormat
.Ar icon
.Ar output_file
.Sh DESCRIPTION
.Nm
is a command line tool to create an image from a Mac OS X icns file
.Pp
The following flags are supported:
.Bl -tag -width -indent
.It Fl r, -representation
Specify which representation size to convert (e.g. 128). Defaults to using the largest representation within the icns file.
.It Fl t, -type
Specify output image format (e.g. jpeg, png, bmp, tiff, gif)
.It Fl v, -version
Print program version and exit
.It Fl h, -help
Print help and exit
.El
.Sh EXAMPLES
icns2image -t jpeg source.icns source.jpg
.Pp
icns2image -r 512 icon.icns icon.tiff
.Pp
icns2image icon.icns icon.png
.Sh SEE ALSO
.Xr geticon 1 ,
.Xr iconutil 1 ,
.Xr image2icns 1 ,
.Xr seticon 1
.Sh AUTHORS
.An Sveinbjorn Thordarson <sveinbjorn@sveinbjorn.org>