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