1iconvert(1) OpenImageIO iconvert(1)
2
3
4
6 iconvert -- copy images with format conversions and other alterations
7
9 Usage: iconvert [options] inputfile outputfile
10 or: iconvert --inplace [options] file...
11
12 %*
13
15 This program is part of the OpenImageIO (http://www.openimageio.org)
16 tool suite. Detailed documentation is available in pdf format with the
17 OpenImageIO distribution.
18
20 --help Print help message
21
22 -v Verbose status messages
23
24 --threads NTHREADS
25 Number of threads (default 0 = #cores)
26
27 -d TYPE
28 Set the output data format to one of:uint8, sint8, uint10,
29 uint12, uint16, sint16, half, float, double
30
31 -g GAMMA
32 Set gamma correction (default = 1.0)
33
34 --tile WIDTH HEIGHT
35 Output as a tiled image
36
37 --scanline
38 Output as a scanline image
39
40 --compression METHOD
41 Set the compression method (default = same as input). Note: may
42 be in the form "name:quality" --quality %d
43
44 --no-copy-image
45 Do not use ImageOutput copy_image functionality (dbg)
46
47 --adjust-time
48 Adjust file times to match DateTime metadata
49
50 --caption TEXT
51 Set caption (ImageDescription)
52
53 --keyword NAME
54 Add a keyword
55
56 --clear-keywords
57 Clear keywords
58
59 --attrib NAME VALUE
60 Set a string attribute
61
62 --orientation ORIENT
63 Set the orientation
64
65 --rotcw
66 Rotate 90 deg clockwise
67
68 --rotccw
69 Rotate 90 deg counter-clockwise
70
71 --rot180
72 Rotate 180 deg
73
74 --inplace
75 Do operations in place on images
76
77 --sRGB This file is in sRGB color space
78
79 --separate
80 Force planarconfig separate
81
82 --contig
83 Force planarconfig contig
84
85 --no-clobber
86 Do no overwrite existing files
87
88
89
90 01 November 2021 iconvert(1)