3 Deark is a command-line utility that can decode certain types of files, and
6 1. convert them to a more-modern or more-readable format; or
7 2. extract embedded files from them
9 The files it writes are usually named "output.*".
11 This program is still being developed, and its features are subject to change
14 For additional information, see the [technical.md](technical.md) file.
18 deark [options] [-file] <input-file> [options]
19 deark <-h|-version|-modules>
24 The "module" to use to process the input file. The default is to autodetect.
25 A module may represent one file format, or a group of related formats, or
26 may have some special purpose.
27 See formats.txt for a list of modules. You usually don't need to use -m,
28 unless the format can't be detected, or you want to use a special-purpose
29 module such as "copy". See also the -onlydetect option.
31 Don't extract, but list the files that would be extracted.
32 This option is not necessarily very efficient. Deark will still go through
33 all the motions of extracting the files, but will not actually write them.
35 Extract only "primary" files (e.g. not thumbnail images).
37 Extract only "auxiliary" files, such as thumbnail images.
39 Extract more data than usual, including things that are rarely of interest,
40 such as comments. See also the "-opt extract..." options, and the format-
41 specific options in technical.md.
43 Output filenames begin with this string. This can include a directory
44 path. Default is "output", except in some cases when using -zip/-tar.
46 Use exactly this filename for the first (and presumably only) output file.
47 The "-maxfiles 1" option is enabled automatically. Including the -main
50 "Keep" the input filename, and use it as the initial part of the output
51 filename(s). Incompatible with -o.
52 -k: Use only the base filename.
53 -k2: Use the full path, but not as an actual path.
54 -k3: Use the full path, as-is.
56 The directory in which to write output files. The directory must exist.
57 This affects only files that Deark writes directly, not e.g. the names of
58 ZIP member files when using -zip.
60 Do not overwrite existing output files.
62 This is an alternate syntax for specifying the primary input file. It works
63 even if the filename begins with "-".
65 Some formats are composed of more than one file. In some cases, you can
66 use the -file2 option to specify the secondary file. Refer to the
67 formats.txt file for details.
69 Write output files to a .zip file, instead of to individual files.
70 If the input format is an "archive" format (e.g. "ar" or "zoo"), then
71 by default, the filenames in the ZIP archive might not include the usual
74 Write output files to a .tar file, instead of to individual files.
75 Similar to -zip, but may work better with large files.
76 The -tostdout option is not currently supported when using -tar.
77 -ta <filename> (alias: -arcfn)
78 When using -zip/-tar, use this name for the output file. Default is
79 "output.zip" or "output.tar".
81 When uzing -zip/-tar, "keep" the input filename, and use it as the initial
82 part of the archive output filename. A suitable filename extenson like
83 ".zip" will be appended. Incompatible with -arcfn.
84 -ka: Use only the base filename.
85 -ka2: Use the full path, but not as an actual path.
86 -ka3: Use the full path, as-is.
87 -extrlist <filename>
88 Also create a text file containing a list of the names of the extracted
89 files. Format is UTF-8, no BOM, LF terminators. To append to the file
90 instead of overwriting, use with "-opt extrlist:append".
92 Write the output file(s) to the standard output stream (stdout).
93 It is recommended to put -tostdout early on the command line. The
94 -msgstostderr option is enabled automatically.
95 If used with -zip: Write the ZIP file to standard output.
96 Otherwise: The "-maxfiles 1" option is enabled automatically. Including the
97 -main option is recommended.
99 Read the input file from the standard input stream (stdin).
100 If you use -fromstdin, supplying an input filename is optional. If it is
101 supplied, the file will not be read (and need not exist), but the name
102 might be used to help guess the file format.
103 This option might not be very efficient, and might not work with extremely
106 Pretend that the input file starts at byte offset <n>.
108 Pretend that the input file contains only (up to) <n> bytes.
110 Don't extract the first <n> files found.
112 Extract at most <n> files. The normal default is 1000, or effectively
113 unlimited if using -zip.
115 Extract only the file identifed by <n>. The first file is 0.
116 Equivalent to "-firstfile <n> -maxfiles 1".
117 To unconditionally show the file identifiers, use "-l -opt list:fileid".
119 Do not write a file larger than <n> bytes. The default is 10 GiB.
120 This is an "emergency brake". If the limit is exceeded, Deark will stop all
122 This setting is for physical output files, so if you use -zip/-tar, it
123 applies to the ZIP/tar file, not to the individual member files.
124 This option implicitly increases the -maxtotalsize setting to be at least
127 Do not write files totaling more than about <n> bytes. The default is
129 Currently, this feature is not implemented very precisely. The limit is only
130 checked when an output file is completed.
132 Allow image dimensions up to <n> pixels.
133 By default, Deark refuses to generate images with a dimension larger than
134 10000 pixels. You can use -maxdim to decrease or increase the limit.
135 Increase the limit at your own risk. Deark does not generate large images
136 efficiently. In practice, a large dimension will only work if the other
137 dimension is very small.
139 Include "padding" pixels/bits in the image output.
140 Some images have extra bits at the end of each row that are used for
141 alignment, and are not normally made visible.
142 This option is not implemented for all formats.
144 Do not add a BOM to UTF-8 output files generated or converted by Deark. Note
145 that if a BOM already exists in the source data, it will not necessarily be
148 Do not try to record the original aspect ratio and pixel density in output
151 When generating an HTML document, use ASCII encoding instead of UTF-8. This
152 does not change how a browser will render the file; it just makes it larger
153 and very slightly more portable.
155 Make Deark less likely to try to improve output filenames by using names
156 from the contents of the input file. The output filenames will be more
157 predictable, but less informative.
159 In some cases, mainly when reading archive formats, a last-modified
160 timestamp contained in an input file will be used to set the timestamp of an
161 output file written directly to your computer (or with -zip/-tar, of a
162 member file inside that file). Use -nomodtime to disable this.
163 This does not affect internal timestamps that may be maintained when Deark
164 converts an item to some other format (such as PNG or HTML).
165 -opt <module:option>=<value>
166 Module-specific and feature-specific options. See formats.txt.
167 Caution: Unrecognized or misspelled options will be silently ignored.
168 Options not specific to one format:
169 -opt font:charsperrow=<n>
170 The number of characters per row, when rendering a font to a bitmap
171 -opt font:tounicode=<0|1>
172 [Don't] Try to translate a font's codepoints to Unicode codepoints.
173 -opt char:output=<html|image>
174 The output format for character graphics (such as ANSI Art).
175 -opt char:charwidth=<8|9>
176 The VGA character cell width for character graphics, when the output
178 -opt archive:subdirs=0
179 When using -zip/-tar, disallow subdirectories (the "/" character) in
181 -opt archive:zipcmprlevel=<n>
182 When using -zip, the compression level to use, from 0 (none) to 9 (max).
183 -opt pngcmprlevel=<n>
184 When generating a PNG file, the compression level to use, from 0 (low)
186 -opt archive:timestamp=<n>
188 Make the -zip/-tar output reproducible, by not including modification
189 times that are not contained in the source file. (That is, don't use the
190 current time, or the source file's timestamp.) If you use "repro", the
191 times will be set to some arbitrary value. If you use "timestamp", the
192 times will be set to the value you supply, in Unix time format (the
193 number of seconds since the beginning of 1970).
194 -opt keepdirentries=<0|1>
195 Select whether an archive file's directory entries are ignored (0), or
196 "extracted" (1). For details, see the technical.md file.
197 -opt list:fileid=<0|1>
198 Select whether the -l (list) option also prints the numeric file
201 Affects the -extrlist option.
206 Extract the specified type of data to a file, instead of decoding it.
207 For more about the ".8bimtiff" and ".iptctiff" formats, see the
209 -opt atari:palbits=<9|12|15>
210 For some Atari image formats, the number of significant bits per
211 palette color. The default is to autodetect.
212 -opt macrsrc=<raw|as|ad|mbin>
213 The preferred way to extract Macintosh resource forks, and data files
214 associated with a non-empty resource fork.
215 raw = Write the raw resource fork to a separate .rsrc file.
216 ad = Put the resource fork in an AppleDouble container (default).
217 as = Put both forks in an AppleSingle container.
218 mbin = Put both forks in a MacBinary container.
219 For input files already in AppleDouble or AppleSingle format, see the
220 formats.txt file for more information.
221 -opt riscos:appendtype
222 For RISC OS formats, append the file type to the output filename.
223 -opt deflatecodec=native
224 Use Deark's native "Deflate" decompressor when possible, instead of
225 miniz. It is experimental and much slower, but could be useful for
226 debugging and educational purposes.
228 Stop after the format identification phase. This can be used to show what
229 module Deark will run, without actually running it.
231 Print the help message.
232 Use with -m to get help for a specific module. Use with a filename to get
233 help for the detected format of that file. Note that most modules have no
234 module-specific help to speak of.
236 Print the version number, and other version information.
238 Print the names of the available modules.
239 With -a, list all modules, including internal modules, and modules that
242 Suppress informational messages.
244 Suppress warning messages.
246 Suppress informational and warning messages.
248 Print technical information about the contents of the file. -d2 is more
249 verbose. -d3 are -d4 are mainly for debugging.
251 Start each line printed by -d with this prefix. Default is "DEBUG: ".
252 -colormode <none|auto|ansi|ansi24|winconsole>
253 Control whether Deark uses color and similar features in its debug output.
254 Currently, this is mainly used to highlight unprintable characters, and
255 preview color palettes (usually requires -d2).
256 none: No color (default).
257 ansi: Use ANSI codes, but not the less-standard ones for 24-bit color.
258 ansi24: Use ANSI codes, including codes for 24-bit color. Works on most
259 Linux terminals, and on sufficiently new versions of Windows 10.
260 winconsole: Use Windows console commands. Works on all versions of Windows,
261 but does not support 24-bit color.
262 auto: Request color. Let Deark decide how to do it.
264 Same as "-colormode auto".
266 Set the encoding of the messages that are printed to the console. This does
267 not affect the extracted data files.
268 The default is to use Unicode (UTF-8, when the encoding is relevant).
269 ascii: Use ASCII characters only.
270 oem: [Windows only; has no effect on other platforms] Use the "OEM"
271 character set. This may be useful when paging the output with "|more".
273 [Windows only] Never change the console OEM code page (to UTF-8).
274 For technical reasons, Deark sometimes changes the code page of the Windows
275 console it is running in, when its output is going to a pipe or file.
276 -inenc <ascii|utf8|latin1|latin2|cp437|windows874|windows1250|windows1251|
277 windows1252|windows1253|windows1254|macroman|palm|riscos|atarist>
278 Supply a hint as to the encoding of the text contained in the input file.
279 This option is not supported by all formats, and may be ignored if the
280 encoding can be reliably determined by other means. Admittedly, it would be
281 nice if Deark knew more encodings than this.
283 Supply a hint as to the time zone used by timestamps contained in the input
285 Many file formats unfortunately contain timestamps in "local time", with no
286 information about their time zone. In such cases, the supplied -intz offset
287 will be used to convert the timestamp to UTC.
288 The "offset" parameter is in hours east of UTC. For example, New York City
289 is -5.0, or -4.0 when Daylight Saving Time is in effect.
290 This option does not respect Daylight Saving Time. It cannot deal with the
291 case where some of the timestamps in a file are in DST, and others are not.
293 Print all messages to stderr, instead of stdout. This option should be
294 placed early on the command line, as it might not affect messages
295 related to options that appear before it.
296 -nodetect <module1,module2,...>
297 -onlydetect <module1,module2,...>
298 Disable autodetection of the formats in the list (or for -onlydetect, the
299 formats *not* in the list).
300 -disablemods <module1,module2,...>
301 -onlymods <module1,module2,...>
302 Completely disable the main functionality, and the autodetection
303 functionality, of the modules in the list (or for -onlymods, the modules
304 *not* in the list). This can have unexpected side effects, because modules
305 often use other modules internally. These options exist mainly to help
306 address potential security-related concerns in some workflows.
308 Run the module in a non-default "mode".
309 The existence of this option (though not its details) is documented in the
310 interest of transparency, but it is mainly for developers, and to make it
311 possible to do things whose usefulness was not anticipated.
316 Deark sets the exit status to nonzero only if it wasn't able to do its job,
317 e.g. due to a read or write failure. A malformed input file usually does not
318 cause such an error, and the exit status will be zero even if an error message
321 However, all fatal errors result in a nonzero exit status, and in extreme cases
322 it is possible for the input file to cause a fatal error, due to certain
323 resource limits being exceeded.
327 Starting with version 1.4.x, Deark is distributed under an MIT-style license.
328 See the [COPYING](COPYING) file for the license text.
330 The main Deark license does not necessarily apply to the code in the "foreign"
331 subdirectory. Each file there may have its own licensing terms. In particular:
333 uncompface.h: Copyright (c) James Ashton - Sydney University - June 1990
334 (See the file foreign/readme-compface.txt for details.)
336 By necessity, Deark contains knowledge about how to decode various
337 third-party file formats. This knowledge includes data structures,
338 algorithms, tables, color palettes, etc. The author(s) of Deark make no
339 intellectual property claims to this essential knowledge, but they cannot
340 guarantee that no one else will attempt to do so.
342 Deark contains VGA and CGA bitmapped fonts, which have no known copyright
345 Be particularly wary of relying on Deark to decode archive and compression
346 formats (tar, ar, gzip, cpio, ...). For example, to decode tar format, you
347 really should use a battle-hardened application like GNU Tar, not Deark.
348 Deark's support for such formats is often incomplete, and it does not always
349 do integrity checking.
351 ## Feedback and contributions ##
353 (As of 2020-09.) Suggestions and bug reports are welcome. This can be done by
354 opening a GitHub issue, or by email. If you prefer to do it in the form of a
355 GitHub "pull request", that's fine too, but as a general rule, such requests
356 won't be merged directly.
358 Deark is not really a collaborative project at this time. Unsolicited
359 contributions of more than a few lines of code are unlikely to be accepted.
360 It's okay to offer them, but please don't do a lot of work with the
361 expectation that it will be accepted.
363 Any code copyrighted by someone other than the main Deark developer(s) is only
364 allowed in the "foreign" section of the project. Pointers to existing open
365 source format decoders, that might be useful in Deark, are welcome. However,
366 most such code will be rejected for one reason or another (incompatible
367 license, too large, too trivial, etc.).
371 See the [technical.md](technical.md) file.
373 ## Acknowledgements ##
375 Thanks to Rich Geldreich for the miniz library.
377 Thanks to the author of dskdcmps for the code used to decompress LoadDskF
380 Thanks to James Ashton for much of the code used by the X-Face format decoder.
382 Thanks to Haruyasu Yoshizaki and Haruhiko Okumura for the lzhuf.c decompressor.
384 Thanks to countless others who have documented the supported file formats.
388 Written by Jason Summers, 2014-2021.<br>
389 Copyright © 2016-2021 Jason Summers<br>
390 [https://entropymine.com/deark/](https://entropymine.com/deark/)<br>
391 [https://github.com/jsummers/deark](https://github.com/jsummers/deark)