<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://fileformats.archiveteam.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://fileformats.archiveteam.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dexvertbot</id>
		<title>Just Solve the File Format Problem - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://fileformats.archiveteam.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dexvertbot"/>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Special:Contributions/Dexvertbot"/>
		<updated>2026-05-03T17:16:29Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.2</generator>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Plain_text</id>
		<title>Plain text</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Plain_text"/>
				<updated>2023-12-28T14:55:35Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Added sample files&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|extensions={{ext|txt}}, {{ext|text}}, {{ext|doc}}, {{ext|asc}}, {{noext}}, many others&lt;br /&gt;
|mimetypes={{mimetype|text/plain}}&lt;br /&gt;
|pronom={{PRONOM|x-fmt/111}}&lt;br /&gt;
|wikidata={{wikidata|Q1145976}}&lt;br /&gt;
}}&lt;br /&gt;
'''Plain text''' files (also known by the extension TXT) consist of characters encoded sequentially in some particular [[character encoding]]. Plain text files contain no formatting information other than white space characters. Some data formats (usually those intended to be human-readable) are based on plain text; see [[Text-based data]] for some structured formats that are stored in plain text (and hence can be opened in a plain text editor if no more specific program is available).&lt;br /&gt;
&lt;br /&gt;
Traditionally, [[ASCII]] was used much of the time for maximum interoperability, though many platform-specific character sets were also in use. For non-English text an encoding supporting a broader character repertoire is needed, often [[UTF-8]] nowadays. Note that if the file consists only of 7-bit ASCII characters, the bytes of the file are identical in us-ascii, ISO-8859-1, UTF-8, and a number of other encodings, so such a file can be identified as any of these depending on what is most convenient for a particular application. It is only when characters out of this repertoire are used that encoding-specific details need be considered. Some formats, such as [[HTML]] and [[XML]], provide some sort of escape sequences (such as ampersands used for character references and entities) allowing special characters to be referenced within the document while leaving the document itself entirely ASCII.&lt;br /&gt;
&lt;br /&gt;
Another point of contention or incompatibility in text-file formats is the conventions for line and paragraph breaks. Depending on what system the file was created on or intended to be viewed on, line breaks may be done as Carriage Return (ASCII 0D hex) and Linefeed (ASCII 0A hex) together (usually in that order, though in rare cases in the opposite order), or just one of those characters alone. Some text viewing or editing programs that are not cross-platform-friendly will really mess up badly in attempting to view/edit files using a different line break convention than the program expects, so you might see lines overwriting one another instead of going to the next line, or peculiar control characters show up within the file, or other strangeness. Files with linefeed alone are often referred to as &amp;quot;UNIX mode&amp;quot; (and the linefeed, in this context, referred to as NL for Newline), while files with carriage return alone are referred to as &amp;quot;Mac mode&amp;quot; (though it's also common in other early platforms such as the Apple II and Commodore 64, and no longer used in current Macs), while the CR+LF format is called &amp;quot;DOS&amp;quot; or &amp;quot;PC&amp;quot; or &amp;quot;Windows&amp;quot; mode (though it was used in various mainframes and network protocols as well).&lt;br /&gt;
&lt;br /&gt;
Files may also use hard line breaks to keep line length within a fixed number of columns (usually 80, but other values such as 40 or 65 are used sometimes), or just have line breaks at the end of paragraphs and expect systems to word-wrap long lines; encountering files of a different convention than you expect may result in lines running way off to the right of the screen and requiring horizontal scrolling, or else short, choppy lines. Many text editors have a &amp;quot;paragraph reformat&amp;quot; command to bring paragraphs into compliance with your desired conventions.&lt;br /&gt;
&lt;br /&gt;
Most operating systems include a simple text editor (e.g., Windows Notepad) which can open text files, but many other text editors exist (and computer people sometimes have &amp;quot;holy wars&amp;quot; over which one is best).  Some of the common text editors are EMACS, vi, and UltraEdit. In the earlier days of computing, there was less distinction between text editors and word processors than there is now, as word processors generally used a format that was mostly plain text and could even be completely plain text if you refrained from using special embedded commands and features. However, modern word processors such as Microsoft Word default to using program-specific save formats that have little resemblance to plain text, unless you go out of your way to &amp;quot;Save As&amp;quot; .txt. A common &amp;quot;newbie error&amp;quot; is to attempt to create or edit plain text files in such a program, leaving the files as proprietarily-formatted in a way that messes up the operation of other programs that expect to find plain text.&lt;br /&gt;
&lt;br /&gt;
Creating artwork using text characters is known as [[ASCII Art]], or other variants such as [[ANSI Art]] if special control or escape codes are used in addition to the plain text characters.&lt;br /&gt;
&lt;br /&gt;
== Extension ==&lt;br /&gt;
&lt;br /&gt;
The traditional extension for text files is &amp;lt;code&amp;gt;.txt&amp;lt;/code&amp;gt;, but lots of other extensions have been used. Occasionally on systems permitting extensions longer than three letters, &amp;lt;code&amp;gt;.text&amp;lt;/code&amp;gt; has been used, and &amp;lt;code&amp;gt;.asc&amp;lt;/code&amp;gt; for ASCII has also had some use; &amp;lt;code&amp;gt;.doc&amp;lt;/code&amp;gt; has also sometimes been used for files &amp;quot;documenting&amp;quot; something (like the manual accompanying a piece of downloaded software), but that went out of common use once that extension became associated with Microsoft Word's [[DOC]] format.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
&lt;br /&gt;
[[UTF-32]] text files are arrays of 32-bit integers representing Unicode code points and are usually detected by starting with the ''Byte Order Mark'' (BOM) consisting of the bytes &amp;lt;code&amp;gt;FF FE 00 00&amp;lt;/code&amp;gt; (for little endian &amp;lt;code&amp;gt;0x0000FEFF&amp;lt;/code&amp;gt;) or &amp;lt;code&amp;gt;00 00 FE FF&amp;lt;/code&amp;gt; (for big endian &amp;lt;code&amp;gt;0x0000FEFF&amp;lt;/code&amp;gt;). In some cases UTF-32 files may occur without the BOM, however, only &amp;lt;code&amp;gt;0x00000000&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0x0000D7FF&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;0x0000E000&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0x0010FFFF&amp;lt;/code&amp;gt; are valid ranges for dwords; &amp;lt;code&amp;gt;0x0000D800&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0x0000DFFF&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;0x00110000&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0xFFFFFFFF&amp;lt;/code&amp;gt; are invalid.&lt;br /&gt;
&lt;br /&gt;
[[UTF-16]] text files are arrays of 16-bit integers representing code units and are usually detected by starting with the byte order mark (BOM) consisting of the bytes &amp;lt;code&amp;gt;FF FE&amp;lt;/code&amp;gt; (for little endian &amp;lt;code&amp;gt;0xFEFF&amp;lt;/code&amp;gt;) or &amp;lt;code&amp;gt;FE FF&amp;lt;/code&amp;gt; (for big endian &amp;lt;code&amp;gt;0xFEFF&amp;lt;/code&amp;gt;). However, in some cases UTF-16 files may occur without the BOM, in which case, detection is not guaranteed to be reliable, but the line feed (&amp;lt;code&amp;gt;0x000A&amp;lt;/code&amp;gt;) in its byte reversal (&amp;lt;code&amp;gt;0x0A00&amp;lt;/code&amp;gt;) is not in ''Unicode 15.1'', and null bytes are unlikely to occur in other text encodings, so the presence of word-aligned &amp;lt;code&amp;gt;00 0A&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;0A 00&amp;lt;/code&amp;gt; can rule out 8-bit encodings and one of the endianness and therefore may be used for UTF-16 detection. On the other hand, the bytes &amp;lt;code&amp;gt;0D 0A&amp;lt;/code&amp;gt; in little endian form &amp;lt;code&amp;gt;U+0A0D&amp;lt;/code&amp;gt; which is not in ''Unicode 15.1'' either but it is a common newline in 8-bit encodings. The detection of [[UCS-2]] text works similarly, since UCS-2 is the precursor of UTF-16, as UTF-16 introduced surrogate pairs formed by &amp;lt;code&amp;gt;0xD800&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0xDBFF&amp;lt;/code&amp;gt; followed by &amp;lt;code&amp;gt;0xDC00&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0xDFFF&amp;lt;/code&amp;gt;, with other combinations of &amp;lt;code&amp;gt;0xD800&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0xDFFF&amp;lt;/code&amp;gt; being invalid.&lt;br /&gt;
&lt;br /&gt;
[[ASCII|ASCII-only]] text files may be detected by verifying that the file has all &amp;lt;code&amp;gt;0x01&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0x7F&amp;lt;/code&amp;gt; bytes. &amp;lt;code&amp;gt;0x80&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0xFF&amp;lt;/code&amp;gt; are not used in ASCII encoding, and null characters by &amp;lt;code&amp;gt;0x00&amp;lt;/code&amp;gt; are not typically found in plain text; null bytes are much more likely to be in UTF-16 or UTF-32 text.&lt;br /&gt;
&lt;br /&gt;
[[UTF-8]] text files may be detected by presence of any bytes from &amp;lt;code&amp;gt;0x80&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0xFF&amp;lt;/code&amp;gt; (to avoid UTF-8 for ASCII-only files), absence of null bytes (if UTF-16 and UTF-32 haven't been ruled out yet), and verifying that the file is valid UTF-8. UTF-8 has many error cases; the only valid bit patterns are &amp;lt;code&amp;gt;0xxxxxxx&amp;lt;/code&amp;gt; (where x forms &amp;lt;code&amp;gt;0x00&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0x7F&amp;lt;/code&amp;gt;), &amp;lt;code&amp;gt;110xxxxx&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;10xxxxxx&amp;lt;/code&amp;gt; (where x forms &amp;lt;code&amp;gt;0x0080&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0x07FF&amp;lt;/code&amp;gt;, but not &amp;lt;code&amp;gt;0x00&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0x7F&amp;lt;/code&amp;gt;), &amp;lt;code&amp;gt;1110xxxx&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;10xxxxxx&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;10xxxxxx&amp;lt;/code&amp;gt; (where x forms &amp;lt;code&amp;gt;0x0800&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0xD7FF&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;0xE000&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0xFFFF&amp;lt;/code&amp;gt;, but not &amp;lt;code&amp;gt;0x0000&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0x07FF&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;0xD800&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0xDFFF&amp;lt;/code&amp;gt;), and &amp;lt;code&amp;gt;11110xxx&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;10xxxxxx&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;10xxxxxx&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;10xxxxxx&amp;lt;/code&amp;gt; (where x forms &amp;lt;code&amp;gt;0x10000&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0x10FFFF&amp;lt;/code&amp;gt;, but not &amp;lt;code&amp;gt;0x0000&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0xFFFF&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;0x110000&amp;lt;/code&amp;gt;—&amp;lt;code&amp;gt;0x1FFFFF&amp;lt;/code&amp;gt;). UTF-8 text files may also start with the UTF-8 byte order mark (EF BB BF), but should still be verified for validity.&lt;br /&gt;
&lt;br /&gt;
When a file is known to be a plain text file but [[UTF-32]], [[UTF-16]], [[ASCII]], and [[UTF-8]] were already ruled out, only 8-bit encodings or mixed single byte/double byte encodings (such as [[JIS|Shift JIS]]) remain. In this case, the only thing left (other than applying complex heuristics) is to use the regional or system text encoding, such as [[Windows 1252|CP1252]], [[Windows 1250|CP1250]], [[CP437]], [[CP852]], etc..&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Text file creation software]]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://textract.readthedocs.org/en/latest/ Textract: extract text from various document formats]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|text/txt}}&lt;br /&gt;
* {{DexvertSamples|text/utf16Text}}&lt;br /&gt;
&lt;br /&gt;
== Links and References ==&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Text_file Text file (Wikipedia)]&lt;br /&gt;
* [http://textfiles.com/ textfiles.com: a site full of old text files]&lt;br /&gt;
* [http://www.greenwoodsoftware.com/less/index.html Less: a Unix/Linux text file pager (for viewing files)]&lt;br /&gt;
* [http://www.webarchive.org.uk/wayback/archive/20120518233003/http://www.openplanetsfoundation.org/blogs/2011-08-16-scenario-discussion-text-files Scenario for discussion: Text files.]&lt;br /&gt;
* [http://graydon2.dreamwidth.org/193447.html Always bet on text]&lt;br /&gt;
&lt;br /&gt;
[[Category:Text-based data]]&lt;br /&gt;
[[Category:File formats with too many extensions]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/User:Dexvertbot</id>
		<title>User:Dexvertbot</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/User:Dexvertbot"/>
				<updated>2023-12-28T05:23:34Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: FINISHED migrating the telparia.com file sample links to a template with the new domain they are hosted on&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I have finished migrating te telparia.com/fileFormatSamples to the new domain.&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/StuffIt</id>
		<title>StuffIt</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/StuffIt"/>
				<updated>2023-12-28T05:19:42Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: /* Sample files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Archiving&lt;br /&gt;
|extensions={{ext|sit}}&lt;br /&gt;
|mimetypes={{mimetype|application/x-stuffit}}, {{mimetype|application/x-sit}}&lt;br /&gt;
|pronom={{PRONOM|fmt/639}}, {{PRONOM|fmt/1459}}, {{PRONOM|fmt/1460}}&lt;br /&gt;
|wikidata={{wikidata|Q59535034}}&lt;br /&gt;
|type code={{Type Code|SIT!}}&lt;br /&gt;
|released=1987&lt;br /&gt;
}}&lt;br /&gt;
If somebody tells you '''StuffIt''', they might be brushing you off rudely, but, especially if they're a Mac user, they might just be recommending their favorite file archiver. Since the late 1980s, StuffIt has been the most popular file archiving system for the Mac platform, with a version available for Windows as well (though it never achieved a high degree of popularity there). Like a number of other Mac archivers, StuffIt supports storing the [[Resource Fork]] along with the &amp;quot;regular&amp;quot; file, which is one reason Mac-specific archivers were popular in preference to &amp;quot;generic&amp;quot; ones like [[ZIP]]. StuffIt also produced more compact archives than its main competitor [[PackIt]] at the time it was first released in 1987, when its author, Raymond Lau, was still in high school. It has faced other competitors since, but remained on top. In recent times, however, with OS X being [[Unix]]-based, traditional Unix archiving and compression programs such as [[Tape Archive|tar]] and [[gzip]] are getting increasing use on Macs.&lt;br /&gt;
&lt;br /&gt;
The makers of StuffIt have also released the newer format [[StuffIt X]].&lt;br /&gt;
&lt;br /&gt;
These formats remain proprietary, and do not interoperate with other programs unless they are officially licensed.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
StuffIt versions through 1.5.1 are credited to Raymond Lau. Following versions are by Aladdin Systems. Aladdin Systems was acquired by IMSI in 2004, and renamed to Allume Systems shortly afterward. In 2005, Allume Systems was acquired by Smith Micro.&lt;br /&gt;
&lt;br /&gt;
== Compression methods ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! ID !! Name !! Description&lt;br /&gt;
|-&lt;br /&gt;
|0 || None || Uncompressed&lt;br /&gt;
|-&lt;br /&gt;
|1 || RLE || [[RLE90]]&lt;br /&gt;
|-&lt;br /&gt;
|2 || LZW || [[LZW]], similar to [[compress (Unix)]]&lt;br /&gt;
|-&lt;br /&gt;
|3 || Huffman || Static [[Huffman coding]]&lt;br /&gt;
|-&lt;br /&gt;
|5 || LZAH || [[LZ77 with Huffman coding|LZ77+Huffman]] with [[Adaptive Huffman coding]]. Similar or identical to [[LHA]]'s &amp;quot;lh1&amp;quot; method.&lt;br /&gt;
|-&lt;br /&gt;
|6 || Fixed Huffman || Segmented. [[PackBits]], then optional [[Huffman coding]]. The set of Huffman codes is predefined, but the meaning of a code can be different in each segment.&lt;br /&gt;
|-&lt;br /&gt;
|8 || MW || &amp;quot;Miller-Wegman&amp;quot;. Presumably [[LZMW]].&lt;br /&gt;
|-&lt;br /&gt;
|13 || LZ+Huffman ||&lt;br /&gt;
|-&lt;br /&gt;
|14 || Installer ||&lt;br /&gt;
|-&lt;br /&gt;
|15 || Arsenic ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[SEA (StuffIt)]]&lt;br /&gt;
* [[StuffIt X]]&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
* Older StuffIt archives begin with ASCII &amp;quot;{{magic|SIT!}}&amp;quot;, and have &amp;quot;{{magic|rLau}}&amp;quot; at offset 10. The byte at offset 14 (the version number) is 0x01 for versions 1.5.x and earlier, or 0x02 for versions 1.6 - 4.5.&lt;br /&gt;
&lt;br /&gt;
* StuffIt 5 archives begin with a string of text that always starts with &amp;quot;{{magic|StuffIt&amp;amp;nbsp;(c)1997}}&amp;quot;. The byte at offset 82 has value {{magic|0x05}}.&lt;br /&gt;
&lt;br /&gt;
* See also [[StuffIt X#Identification]].&lt;br /&gt;
&lt;br /&gt;
Some .SIT files start with a 128-byte [[MacBinary]] header.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stuffit.com Official site with downloads/purchases]&lt;br /&gt;
* [[The Unarchiver]] (based in part on XAD)&lt;br /&gt;
* [[macutil]] → macunpack&lt;br /&gt;
* [https://github.com/ParksProjets/Maconv Maconv] (based in part on The Unarchiver)&lt;br /&gt;
* {{XAD}} (mainly for Amiga)&lt;br /&gt;
* {{Deark}} (limited support)&lt;br /&gt;
&lt;br /&gt;
== Format info ==&lt;br /&gt;
Original format:&lt;br /&gt;
* [http://apple2.org.za/gswv/a2zine/GS.WorldView/Resources/The.MacShrinkIt.Project/ARCHIVES.TXT Archive format info, including StuffIt]&lt;br /&gt;
&lt;br /&gt;
V5 format:&lt;br /&gt;
* Comments and code in the [http://aminet.net/package/util/arc/xadmasterdev XAD] (StuffIt.c) and [[The Unarchiver]] (XADStuffIt5Parser.m) source code&lt;br /&gt;
* [https://github.com/ParksProjets/Maconv/blob/master/docs/stuffit/Stuffit_v5.md Maconv: Stuffit 5 format]&lt;br /&gt;
&lt;br /&gt;
Other information:&lt;br /&gt;
* [http://www.russotto.net/arseniccomp.html StuffIt method 15 compression format]&lt;br /&gt;
&lt;br /&gt;
==Screenshots==&lt;br /&gt;
[[Image:Stuffit151-About.png|400px]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* http://cd.textfiles.com/carousel344/MACTOSH/ ...&lt;br /&gt;
* {{DexvertSamples|archive/sit}}&lt;br /&gt;
* {{DexvertSamples|archive/sea}}&lt;br /&gt;
* [https://archive.org/details/Macintosh_Garden_Collection Macintosh Garden Collection] ...&lt;br /&gt;
&lt;br /&gt;
== Other links ==&lt;br /&gt;
* [[Wikipedia:StuffIt|Wikipedia article]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Macintosh]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/StuffIt</id>
		<title>StuffIt</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/StuffIt"/>
				<updated>2023-12-28T05:19:32Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: /* Sample files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Archiving&lt;br /&gt;
|extensions={{ext|sit}}&lt;br /&gt;
|mimetypes={{mimetype|application/x-stuffit}}, {{mimetype|application/x-sit}}&lt;br /&gt;
|pronom={{PRONOM|fmt/639}}, {{PRONOM|fmt/1459}}, {{PRONOM|fmt/1460}}&lt;br /&gt;
|wikidata={{wikidata|Q59535034}}&lt;br /&gt;
|type code={{Type Code|SIT!}}&lt;br /&gt;
|released=1987&lt;br /&gt;
}}&lt;br /&gt;
If somebody tells you '''StuffIt''', they might be brushing you off rudely, but, especially if they're a Mac user, they might just be recommending their favorite file archiver. Since the late 1980s, StuffIt has been the most popular file archiving system for the Mac platform, with a version available for Windows as well (though it never achieved a high degree of popularity there). Like a number of other Mac archivers, StuffIt supports storing the [[Resource Fork]] along with the &amp;quot;regular&amp;quot; file, which is one reason Mac-specific archivers were popular in preference to &amp;quot;generic&amp;quot; ones like [[ZIP]]. StuffIt also produced more compact archives than its main competitor [[PackIt]] at the time it was first released in 1987, when its author, Raymond Lau, was still in high school. It has faced other competitors since, but remained on top. In recent times, however, with OS X being [[Unix]]-based, traditional Unix archiving and compression programs such as [[Tape Archive|tar]] and [[gzip]] are getting increasing use on Macs.&lt;br /&gt;
&lt;br /&gt;
The makers of StuffIt have also released the newer format [[StuffIt X]].&lt;br /&gt;
&lt;br /&gt;
These formats remain proprietary, and do not interoperate with other programs unless they are officially licensed.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
StuffIt versions through 1.5.1 are credited to Raymond Lau. Following versions are by Aladdin Systems. Aladdin Systems was acquired by IMSI in 2004, and renamed to Allume Systems shortly afterward. In 2005, Allume Systems was acquired by Smith Micro.&lt;br /&gt;
&lt;br /&gt;
== Compression methods ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! ID !! Name !! Description&lt;br /&gt;
|-&lt;br /&gt;
|0 || None || Uncompressed&lt;br /&gt;
|-&lt;br /&gt;
|1 || RLE || [[RLE90]]&lt;br /&gt;
|-&lt;br /&gt;
|2 || LZW || [[LZW]], similar to [[compress (Unix)]]&lt;br /&gt;
|-&lt;br /&gt;
|3 || Huffman || Static [[Huffman coding]]&lt;br /&gt;
|-&lt;br /&gt;
|5 || LZAH || [[LZ77 with Huffman coding|LZ77+Huffman]] with [[Adaptive Huffman coding]]. Similar or identical to [[LHA]]'s &amp;quot;lh1&amp;quot; method.&lt;br /&gt;
|-&lt;br /&gt;
|6 || Fixed Huffman || Segmented. [[PackBits]], then optional [[Huffman coding]]. The set of Huffman codes is predefined, but the meaning of a code can be different in each segment.&lt;br /&gt;
|-&lt;br /&gt;
|8 || MW || &amp;quot;Miller-Wegman&amp;quot;. Presumably [[LZMW]].&lt;br /&gt;
|-&lt;br /&gt;
|13 || LZ+Huffman ||&lt;br /&gt;
|-&lt;br /&gt;
|14 || Installer ||&lt;br /&gt;
|-&lt;br /&gt;
|15 || Arsenic ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[SEA (StuffIt)]]&lt;br /&gt;
* [[StuffIt X]]&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
* Older StuffIt archives begin with ASCII &amp;quot;{{magic|SIT!}}&amp;quot;, and have &amp;quot;{{magic|rLau}}&amp;quot; at offset 10. The byte at offset 14 (the version number) is 0x01 for versions 1.5.x and earlier, or 0x02 for versions 1.6 - 4.5.&lt;br /&gt;
&lt;br /&gt;
* StuffIt 5 archives begin with a string of text that always starts with &amp;quot;{{magic|StuffIt&amp;amp;nbsp;(c)1997}}&amp;quot;. The byte at offset 82 has value {{magic|0x05}}.&lt;br /&gt;
&lt;br /&gt;
* See also [[StuffIt X#Identification]].&lt;br /&gt;
&lt;br /&gt;
Some .SIT files start with a 128-byte [[MacBinary]] header.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stuffit.com Official site with downloads/purchases]&lt;br /&gt;
* [[The Unarchiver]] (based in part on XAD)&lt;br /&gt;
* [[macutil]] → macunpack&lt;br /&gt;
* [https://github.com/ParksProjets/Maconv Maconv] (based in part on The Unarchiver)&lt;br /&gt;
* {{XAD}} (mainly for Amiga)&lt;br /&gt;
* {{Deark}} (limited support)&lt;br /&gt;
&lt;br /&gt;
== Format info ==&lt;br /&gt;
Original format:&lt;br /&gt;
* [http://apple2.org.za/gswv/a2zine/GS.WorldView/Resources/The.MacShrinkIt.Project/ARCHIVES.TXT Archive format info, including StuffIt]&lt;br /&gt;
&lt;br /&gt;
V5 format:&lt;br /&gt;
* Comments and code in the [http://aminet.net/package/util/arc/xadmasterdev XAD] (StuffIt.c) and [[The Unarchiver]] (XADStuffIt5Parser.m) source code&lt;br /&gt;
* [https://github.com/ParksProjets/Maconv/blob/master/docs/stuffit/Stuffit_v5.md Maconv: Stuffit 5 format]&lt;br /&gt;
&lt;br /&gt;
Other information:&lt;br /&gt;
* [http://www.russotto.net/arseniccomp.html StuffIt method 15 compression format]&lt;br /&gt;
&lt;br /&gt;
==Screenshots==&lt;br /&gt;
[[Image:Stuffit151-About.png|400px]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* http://cd.textfiles.com/carousel344/MACTOSH/ ...&lt;br /&gt;
* {{DexvertSamples|archive/sit}&lt;br /&gt;
* {{DexvertSamples|archive/sea}&lt;br /&gt;
* [https://archive.org/details/Macintosh_Garden_Collection Macintosh Garden Collection] ...&lt;br /&gt;
&lt;br /&gt;
== Other links ==&lt;br /&gt;
* [[Wikipedia:StuffIt|Wikipedia article]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Macintosh]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Tape_Archive</id>
		<title>Tape Archive</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Tape_Archive"/>
				<updated>2023-12-28T05:19:11Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: /* Sample files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Archiving&lt;br /&gt;
|extensions={{ext|tar}}, {{ext|tgz}}, {{ext|tbz}}, {{ext|txz}}, {{ext|tlz}}, {{ext|tsz}}, {{ext|taz}}, {{ext|tz}}&lt;br /&gt;
|mimetypes={{mimetype|application/x-tar}}&lt;br /&gt;
|pronom={{PRONOM|x-fmt/265}}&lt;br /&gt;
|locfdd={{LoCFDD|fdd000531}}&lt;br /&gt;
|wikidata={{wikidata|Q283579}}&lt;br /&gt;
|released=1979&lt;br /&gt;
}}&lt;br /&gt;
:''This article is about the electronic archive format. For physical tape archives, see [[Magnetic tape]] or [[Punched tape]].''&lt;br /&gt;
&lt;br /&gt;
'''Tape Archive''' ('''tar''') is a traditional UNIX archive format, defined in POSIX.1-1988 and later POSIX.1-2001. Its original purpose was to archive files on backup tapes. Archived data in the tar format is sometimes referred to as a &amp;quot;tarball&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Compression ==&lt;br /&gt;
While tar itself does not offer any compression, it's frequently used together with a stream compression format such as [[gzip]], [[bzip2]], or [[XZ]] to provide file archiving plus compression. Most modern implementations of tar, present in UNIX/Linux systems, offer built-in support for this combined operation by using a modifier such as '''z''' (gzip) or '''j''' (bzip2). When extracting files, the compression format can sometimes be detected and handled automatically.&lt;br /&gt;
&lt;br /&gt;
Files compressed this way should have a dual file extension such as .tar.gz or tar.bz2. Sometimes the .tgz extension is used in place of .tar.gz. Rarely, other shortened extensions are used:&lt;br /&gt;
* .tbz and .tbz2 instead of .tar.bz2 ([[bzip2]])&lt;br /&gt;
* .txz instead of .tar.xz ([[XZ]])&lt;br /&gt;
* .tlz instead of .tar.lz ([[Lzip]]) or .tar.lzma ([[LZMA Alone|LZMA_Alone]])&lt;br /&gt;
* .tsz instead of .tar.sz ([[Sunzip]])&lt;br /&gt;
* .taz instead of .tar.Z ([[compress]]) (or possibly some other compressed format)&lt;br /&gt;
* .tz instead of .tar.Z ([[compress]]) (or possibly some other compressed format)&lt;br /&gt;
&lt;br /&gt;
== Variants ==&lt;br /&gt;
&lt;br /&gt;
There exist some variants to the TAR archive format. The original POSIX.1-1988 TAR format had limitations on the type of files it could contain and the length of filenames. That's why the USTAR format was later developed and standardized as POSIX IEEE P1003.1. Jörg Schilling has collected some information about the different implementations; see the references section. There's also an old version (often referred to as &amp;quot;non-ANSI Tar&amp;quot; or simply &amp;quot;old Tar&amp;quot;) which both GNU Tar and STar can read and write.&lt;br /&gt;
&lt;br /&gt;
[[Pax]] is a system of extensions to USTAR format.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Most modern tar files use a format based on either GNU Tar or POSIX/USTAR. GNU Tar files have the signature &amp;quot;{{magic|ustar }}&amp;quot; (with a trailing space) at offset 257, and POSIX/USTAR files have &amp;quot;{{magic|ustar\0}}&amp;quot; at offset 257.&lt;br /&gt;
&lt;br /&gt;
Some other variants have the signature &amp;quot;{{magic|tar\0}}&amp;quot; at offset 508.&lt;br /&gt;
&lt;br /&gt;
But most older tar files have no signature, and must be identified by other means. Validating that the checksum field at offset 148 is well-formed and accurate is a possibility.&lt;br /&gt;
&lt;br /&gt;
Note that most tar files have no global file header, so the tests suggested here are actually looking at the first member file in the archive.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[AR]] - comparable format&lt;br /&gt;
* [[cpio]] - comparable format&lt;br /&gt;
* [[Disk Archiver]] (DAR) was intended by its authors as a replacement for TAR, supporting file compression among other features.&lt;br /&gt;
* [[Pax]] - extension&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
To list the contents of a .tar.gz archive:&lt;br /&gt;
&lt;br /&gt;
 tar tvzf example.tar.gz&lt;br /&gt;
&lt;br /&gt;
To extract a .tar.gz archive to the current directory:&lt;br /&gt;
&lt;br /&gt;
 tar xvzf example.tar.gz&lt;br /&gt;
&lt;br /&gt;
With some versions of tar, the &amp;quot;&amp;lt;code&amp;gt;z&amp;lt;/code&amp;gt;&amp;quot; flag can be omitted when extracting or listing (&amp;quot;&amp;lt;code&amp;gt;tar xvf ...&amp;lt;/code&amp;gt;&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
To compress two files into a .tar.gz archive:&lt;br /&gt;
&lt;br /&gt;
 tar cvzf example2.tar.gz inputfile1 inputfile2&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [http://linux.die.net/man/1/tar Linux man page for tar]&lt;br /&gt;
* [https://github.com/libarchive/libarchive/wiki/ManPageTar5 man page for bsdtar]&lt;br /&gt;
** [http://www.freebsd.org/cgi/man.cgi?query=tar&amp;amp;sektion=5&amp;amp;manpath=FreeBSD+8-current FreeBSD man page]&lt;br /&gt;
* [https://www.gnu.org/software/tar/manual/html_node/Tar-Internals.html GNU Tar: Tar Internals]&lt;br /&gt;
* [http://cdrtools.sourceforge.net/private/man/star/star.4.html star man page] by Jörg Schilling&lt;br /&gt;
* [https://twitter.com/angealbertini/status/532263011952513024/photo/1 Chart of TAR format]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [https://www.gnu.org/software/tar/ GNU Tar] · [https://www.gnu.org/software/tar/manual/ Documentation] · [https://savannah.gnu.org/projects/tar Development]&lt;br /&gt;
* [https://www.libarchive.org libarchive / bsdtar]&lt;br /&gt;
* [[7-Zip]]&lt;br /&gt;
* {{Deark}}&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* https://github.com/mgorny/tar-test-inputs&lt;br /&gt;
* {{DexvertSamples|archive/tar}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
* [[Wikipedia: tar (computing)]]&lt;br /&gt;
* [https://xkcd.com/1168/ XKCD comic]&lt;br /&gt;
* [http://superuser.com/questions/234649/how-to-extract-a-tar-file-tgz-in-windows Discussion on extracting a .tgz file]&lt;br /&gt;
* [https://dev.gentoo.org/~mgorny/articles/portability-of-tar-features.html Portability of tar features]&lt;br /&gt;
* [https://invisible-island.net/autoconf/portability-tar.html TAR versus Portability]&lt;br /&gt;
&lt;br /&gt;
[[Category:Backup]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/JPEG</id>
		<title>JPEG</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/JPEG"/>
				<updated>2023-12-28T05:18:50Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: /* Sample files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|thiscat=JPEG&lt;br /&gt;
|extensions={{ext|jpg}}, {{ext|jpeg}}, {{ext|jpe}}, {{ext|jif}}&lt;br /&gt;
|mimetypes={{mimetype|image/jpeg}}&lt;br /&gt;
|locfdd={{LoCFDD|fdd000017}}, others&lt;br /&gt;
|pronom={{PRONOM|fmt/41}}, others&lt;br /&gt;
|wikidata={{wikidata|Q27996264}}&lt;br /&gt;
|released=1992&lt;br /&gt;
|kaitai struct=jpeg&lt;br /&gt;
}}&lt;br /&gt;
'''JPEG''' is a popular raster image format well-suited to photographic images. It usually uses lossy [[DCT compression]]. It is named after the Joint Photographic Experts Group, the organization which developed the format. It is sometimes called '''JPEG1''', '''JPEG-1''', or '''JPEG 1992''' to help disambiguate it. (Also see [[JPEG 2000]] and [[JP2]].)&lt;br /&gt;
&lt;br /&gt;
== Terminology ==&lt;br /&gt;
''(In which we discuss the tired old question of whether JPEG is a file format, or a compression standard)''&lt;br /&gt;
&lt;br /&gt;
In the original specification (ITU-T Rec. T.81), the term ''JPEG'' refers only to an organization. The serialized form of the compression format it defines is referred to only as the &amp;quot;interchange format&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The followup ITU-T Rec. T.84 document says that ''JPEG'' can also refer to a set of ''standards'', including at least Rec. T.81, Rec. T.83, and Rec. T.84. It also informally uses ''JPEG'' to refer to the Rec. T.81 interchange format.&lt;br /&gt;
&lt;br /&gt;
ITU-T Rec. T.851 refers to the interchange format as ''JPEG-1''.&lt;br /&gt;
&lt;br /&gt;
The interchange format is ''almost'' a full-fledged portable file format, lacking only standard conventions and/or standard metadata elements to tell how to interpret it as an image. The missing pieces can be added in various ways. Some file formats, including [[JFIF]], do so in such a way that the interchange format is used directly as a file format. In practice, the term ''JPEG'' often refers to the family of such file formats, and this usage does not seem unreasonable, especially since there is no other suitable name. The term '''JIF''' (for ''JPEG Interchange Format'') has been tossed around, but it is an ambiguous term that doesn't necessarily refer to a file format, and it's unusable in practice due to similarity to [[GIF]].&lt;br /&gt;
&lt;br /&gt;
It could be that ''JPEG'' is sometimes misused to mean [[JFIF]], but such an accusation might be relying on the incorrect assumption that '''.jpg''' files always use JFIF format.&lt;br /&gt;
&lt;br /&gt;
== Portability ==&lt;br /&gt;
In and of itself, JPEG is not really a suitable format for image interchange, for several reasons:&lt;br /&gt;
* It essentially only defines a way to store one or more arrays of numbers. It does not say how to interpret those numbers as an image. The decoder will just have to guess.&lt;br /&gt;
* It is large and general, and it might be unrealistic to expect every decoder to support all of it.&lt;br /&gt;
* It defines no standard metadata elements.&lt;br /&gt;
&lt;br /&gt;
To address these issues, a number of JPEG subformats have been invented. [[JFIF]] is by far the most popular of them, though a significant minority of JPEG files use [[Exif]] instead. The [[SPIFF]] file format was intended as a replacement for JFIF, but never caught on.&lt;br /&gt;
&lt;br /&gt;
In practice, a portable JPEG file is pretty much &amp;quot;whatever the libjpeg software supports&amp;quot;. This includes some varieties (such as RGB color) that do not conform to JFIF, and excludes some (such as lossless JPEG) that do.&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
A JPEG file consists largely of a sequence of tagged segments. Each segment begins with a two-byte &amp;quot;marker&amp;quot;. (The term &amp;quot;marker&amp;quot; is often used to refer to the entire segment.) The first byte of a marker is 0xff. The second may have any value except 0x00 or 0xff, and indicates the type of data stored in the segment. Segment types are assigned names; for example, 0xd9 is &amp;quot;SOI&amp;quot;, and 0xe1 is &amp;quot;APP1&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Segment types 0x01, and 0xd0 through 0xd9, consist entirely of the two-byte marker. All other markers are followed by a two-byte integer indicating the size of the segment, followed by the payload data contained in the segment.&lt;br /&gt;
&lt;br /&gt;
The image data is the exception to this segmented format. It appears following an &amp;quot;SOS&amp;quot; (0xda) segment, but there is no prefix to indicate its size. Instead, any 0xff bytes in the image data are escaped as 0xff 0x00, so that they won't be mistaken for markers. (Note that some JPEG-like formats, such as [[JPEG-LS]] and [[JPEG 2000 codestream]], use different rules for escaping 0xff bytes.)&lt;br /&gt;
&lt;br /&gt;
=== Application segments ===&lt;br /&gt;
There are 16 segment types reserved for application-specific data: 0xe0 (&amp;quot;APP0&amp;quot;) through 0xef (&amp;quot;APP15&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
An APP segment's data often begins with NUL-terminated text string to identify the type of data contained in it. The actual payload data then begins after the NUL byte. This convention was standardized by ISO/IEC 10918-4:1999 (see ITU-T Rec. T.86), but is not as universal as one might hope. Most APP segments do have a signature of some sort, but because there is no simple matching algorithm that always works, identifying the signature can be difficult.&lt;br /&gt;
&lt;br /&gt;
== Identifiers ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Format&lt;br /&gt;
! PRONOM&lt;br /&gt;
! LoCFDD&lt;br /&gt;
|-&lt;br /&gt;
|JPEG             || {{PRONOM|fmt/41}}    || {{LoCFDD|fdd000017}}&lt;br /&gt;
|-&lt;br /&gt;
|Baseline JPEG    ||                      || {{LoCFDD|fdd000149}}&lt;br /&gt;
|-&lt;br /&gt;
|Progressive JPEG ||                      || {{LoCFDD|fdd000333}}&lt;br /&gt;
|-&lt;br /&gt;
|[[Lossless JPEG (original)|Lossless JPEG]] ||  || {{LoCFDD|fdd000334}}&lt;br /&gt;
|-&lt;br /&gt;
|Other JPEG       ||                      || {{LoCFDD|fdd000150}}&lt;br /&gt;
|-&lt;br /&gt;
|JFIF 1.00        || {{PRONOM|fmt/42}}&lt;br /&gt;
|-&lt;br /&gt;
|JFIF 1.01        || {{PRONOM|fmt/43}}&lt;br /&gt;
|-&lt;br /&gt;
|[[JFIF]] 1.02    || {{PRONOM|fmt/44}}    || {{LoCFDD|fdd000018}}&lt;br /&gt;
|-&lt;br /&gt;
|Exif 2.0 JPEG    || {{PRONOM|x-fmt/398}} ||rowspan=&amp;quot;5&amp;quot;| {{LoCFDD|fdd000147}}&lt;br /&gt;
|-&lt;br /&gt;
|Exif 2.1 JPEG    || {{PRONOM|x-fmt/390}}&lt;br /&gt;
|-&lt;br /&gt;
|[[Exif]] 2.2 JPEG || {{PRONOM|x-fmt/391}}&lt;br /&gt;
|-&lt;br /&gt;
|Exif 2.21 JPEG    || {{PRONOM|fmt/645}}&lt;br /&gt;
|-&lt;br /&gt;
|Exif 2.3.x JPEG    || {{PRONOM|fmt/1507}}&lt;br /&gt;
|-&lt;br /&gt;
|[[SPIFF]]        || {{PRONOM|fmt/112}}   || {{LoCFDD|fdd000019}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
JPEG files begin with bytes &amp;lt;code&amp;gt;ff d8 ff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
However, this does not distinguish them from [[JPEG-LS]]. To do that reliably, one may have to scan the file to look for one of the valid SOF segment types.&lt;br /&gt;
&lt;br /&gt;
== Types of JPEG files ==&lt;br /&gt;
The following types are not disjoint. For example, a progressive JPEG may use arithmetic coding.&lt;br /&gt;
&lt;br /&gt;
Some JPEG images do not belong to any of these types. An SOF1 segment is used if no other SOF segment applies.&lt;br /&gt;
&lt;br /&gt;
=== Baseline ===&lt;br /&gt;
JPEGs with an SOF0 segment are known as ''Baseline'' JPEGs. They are always lossy, not progressive, use Huffman coding, and have a bit depth of 8. Every application that supports JPEG is supposed to at least support Baseline JPEG.&lt;br /&gt;
&lt;br /&gt;
=== Progressive ===&lt;br /&gt;
Progressive JPEG rearranges the image data, so that the the first part of it represents a very low quality version of the entire image, rather than a high quality version of a small part of the image.&lt;br /&gt;
&lt;br /&gt;
A progressive JPEG is identified by the presence of an SOF2, SOF6, SOF10, or SOF14 segment.&lt;br /&gt;
&lt;br /&gt;
=== Non-interleaved ===&lt;br /&gt;
Color JPEG images may be either ''interleaved'' or ''non-interleaved''.&lt;br /&gt;
&lt;br /&gt;
In an interleaved JPEG, all the color components (e.g. Y, Cb, Cr) for a pixel are stored close together in the file.&lt;br /&gt;
&lt;br /&gt;
In a non-interleaved JPEG, the image is separated into its color components, and each component is stored separately in the file.&lt;br /&gt;
&lt;br /&gt;
Interleaving is not a simple yes/no option, because a single image may use both interleaved and non-interleaved scans (SOS segments) – in fact, progressive JPEGs usually do just that. Some JPEG decoders do not support non-interleaved images unless they use progressive encoding.&lt;br /&gt;
&lt;br /&gt;
=== Arithmetic coding ===&lt;br /&gt;
Even lossy JPEG makes use of a lossless compression algorithm. The lossless algorithm is usually [[Huffman coding]], but [[arithmetic coding]] may be used instead. JPEG's arithmetic coding usually results in a smaller file size, but it is not as widely supported as one might hope, probably because it used to be encumbered by [[patents]].&lt;br /&gt;
&lt;br /&gt;
An arithmetic-coded JPEG is identified by the presence of an SOF9, SOF10, SOF11, SOF13, SOF14, or SOF15 segment.&lt;br /&gt;
&lt;br /&gt;
=== 12-bit ===&lt;br /&gt;
Except for Baseline JPEG, all lossy types of JPEG may use a bit depth of either 8 or 12 bits per sample. However, few applications support anything other than 8 bits.&lt;br /&gt;
&lt;br /&gt;
Starting with version 9a, IJG libjpeg also supports bit depths of 9, 10, and 11. These depths are nonstandard, and libjpeg's implementation is nearly unusable in practice, because it only supports a single bit depth, which must be selected at compile time.&lt;br /&gt;
&lt;br /&gt;
=== Lossless JPEG ===&lt;br /&gt;
:''Main article: [[Lossless JPEG (original)]]''&lt;br /&gt;
&lt;br /&gt;
JPEG supports true lossless compression, but it is used so rarely that JPEG is commonly thought of as strictly a lossy format.&lt;br /&gt;
&lt;br /&gt;
A lossless JPEG is identified by the presence of an SOF3, SOF7, SOF11, or SOF15 segment.&lt;br /&gt;
&lt;br /&gt;
See also the [[Lossless JPEG|Lossless JPEG disambiguation page]], for other uses of the term.&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical ===&lt;br /&gt;
Also called &amp;quot;differential&amp;quot;, hierarchical JPEG is vaguely similar to progressive JPEG, but geared toward storing multiple sizes of the same image, such that the decoder can select the size it prefers. Hierarchical JPEGs are, to a close approximation, nonexistent.&lt;br /&gt;
&lt;br /&gt;
A hierarchical JPEG is identified by the presence of an SOF5, SOF6, SOF7, SOF13, SOF14, or SOF15 segment.&lt;br /&gt;
&lt;br /&gt;
== Color format ==&lt;br /&gt;
There are five JPEG color types that are reasonably portable:&lt;br /&gt;
# Grayscale&lt;br /&gt;
# YCbCr&lt;br /&gt;
# RGB&lt;br /&gt;
# YCCK&lt;br /&gt;
# CMYK&lt;br /&gt;
&lt;br /&gt;
To make the compression more effective, RGB images are almost always transformed to YCbCr format when they are written to a JPEG file. However, many applications will still report that such images use &amp;quot;RGB&amp;quot; color. This may be because their authors weren't aware of the transformation, or because they considered it to be an internal part of the compression algorithm as opposed to a different colorspace. Unfortunately, this inconsistent terminology can make it hard to distinguish YCbCr JPEGs from the rare JPEGs that really do use RGB color.&lt;br /&gt;
&lt;br /&gt;
YCCK is a transformed version of CMYK, and the same terminology confusion exists as with YCbCr and RGB.&lt;br /&gt;
&lt;br /&gt;
The JPEG format does not have any clear way to indicate the color type of an image. Decoders usually determine the color type based on several factors:&lt;br /&gt;
* The number of color components&lt;br /&gt;
* The presence of a JFIF application segment&lt;br /&gt;
* The &amp;quot;color transform&amp;quot; field of the APP14 &amp;quot;Adobe&amp;quot; segment, if present&lt;br /&gt;
* The component ID numbers ({82, 71, 66} suggests RGB)&lt;br /&gt;
&lt;br /&gt;
== SmartScale ==&lt;br /&gt;
Starting with version 7 or 8, the IJG libjpeg software has been adding nonstandard  &amp;quot;SmartScale&amp;quot; scaling and color transform features of debatable merit&amp;lt;ref&amp;gt;[http://www.libjpeg-turbo.org/About/SmartScale A Study on the Usefulness of DCT Scaling and SmartScale]&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[http://hardwarebug.org/2010/02/01/ijg-swings-again-and-misses/ IJG swings again, and misses]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Notably, it is possible to achieve lossless DCT compression by setting the DCT block size to 1, and using RGB color if necessary.&lt;br /&gt;
&lt;br /&gt;
Version 9 introduced a &amp;quot;reversible color transform&amp;quot; feature that can improve the compression of RGB images. Files with this feature contain a JPG8 (0xf8) segment.&lt;br /&gt;
&lt;br /&gt;
== Related Formats ==&lt;br /&gt;
* [[JFIF]] is a subformat and extension, and uses APP0 &amp;quot;JFIF&amp;quot; and APP0 &amp;quot;JFXX&amp;quot; segments.&lt;br /&gt;
* [[SPIFF]] is a subformat and extension, and uses an APP8 &amp;quot;SPIFF&amp;quot; segment.&lt;br /&gt;
* [[JPEG-HDR]] is an extension, and uses APP11 segments.&lt;br /&gt;
* [[JPEG XT]] is an extension.&lt;br /&gt;
* [[JPEG 360]] is an extension, and/or a metadata format.&lt;br /&gt;
* [[JPS]] is an extension, and uses an APP3 &amp;quot;_JPSJPS_&amp;quot; segment.&lt;br /&gt;
* [[Multi-Picture Format]] is an extension, and uses an APP2 &amp;quot;MPF&amp;quot; segment.&lt;br /&gt;
* The [[Exif]] standard uses an APP1 &amp;quot;Exif&amp;quot; segment.&lt;br /&gt;
* [[FlashPix]] data is contained in APP2 &amp;quot;FPXR&amp;quot; segments in Exif-compliant JPEGs. Refer to the [[Exif]] specification.&lt;br /&gt;
* [[Photoshop Image Resources]] is contained in an APP13 &amp;quot;Photoshop 3.0&amp;quot; segment.&lt;br /&gt;
* [[IPTC-IIM]] metadata often appears in JPEG files, embedded in [[Photoshop Image Resources]].&lt;br /&gt;
* [[XMP]] metadata is contained in an APP1 &amp;lt;nowiki&amp;gt;&amp;quot;http://ns.adobe.com/xap/1.0/&amp;quot;&amp;lt;/nowiki&amp;gt; segment.&lt;br /&gt;
* [[ICC profile]] data is contained in an APP2 &amp;quot;ICC_PROFILE&amp;quot; segment.&lt;br /&gt;
* Many other file formats, such as [[TIFF]], [[MNG]]/[[JNG]], and [[PDF]], can contain JPEG-compressed data or encapsulated JPEG files.&lt;br /&gt;
* ''(And we heard you like JPEG...)'' JPEG files themselves often contain thumbnail images in the form of embedded JPEG files, via formats such as [[Exif]], [[Photoshop Image Resources]], or [[JFIF]].&lt;br /&gt;
&lt;br /&gt;
Formats that are '''not''' compatible with JPEG include [[JPEG-LS]], [[JPEG 2000]], [[JPEG XR]], and presumably [[JPEG XL]].&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [http://www.w3.org/Graphics/JPEG/itu-t81.pdf ITU-T Rec. T.81] (originally CCITT Rec. T.81): The JPEG standard&lt;br /&gt;
* [http://www.itu.int/rec/T-REC-T.83/en ITU-T Rec. T.83]: Compliance testing&lt;br /&gt;
* [http://www.itu.int/rec/T-REC-T.84/en ITU-T Rec. T.84]: Extensions&lt;br /&gt;
* [http://www.itu.int/rec/T-REC-T.86/en ITU-T Rec. T.86]: Registration of JPEG Profiles, etc.&lt;br /&gt;
* [http://www.itu.int/rec/T-REC-T.851-200509-I/en ITU-T Rec. T.851]: (JPEG-1)-based still-image coding using an alternative arithmetic coder&lt;br /&gt;
* [http://www.itu.int/rec/T-REC-T.872/en ITU-T Rec. T.872]: Application to printing systems&lt;br /&gt;
* [https://exiftool.org/TagNames/JPEG.html#Adobe ExifTool: The APP14 &amp;quot;Adobe&amp;quot; segment]&lt;br /&gt;
* ISO/IEC 10918: Digital compression and coding of continuous-tone still images&lt;br /&gt;
** [http://www.iso.org/iso/catalogue_detail.htm?csnumber=18902 ISO/IEC 10918-1:1994] - Requirements and guidelines&lt;br /&gt;
*** [http://www.iso.org/iso/catalogue_detail.htm?csnumber=41504 ISO/IEC 10918-1:1994/Cor 1:2005] - Patent information update&lt;br /&gt;
** [http://www.iso.org/iso/catalogue_detail.htm?csnumber=20689 ISO/IEC 10918-2:1995] - Compliance testing&lt;br /&gt;
** [http://www.iso.org/iso/catalogue_detail.htm?csnumber=25037 ISO/IEC 10918-3:1997] - Extensions&lt;br /&gt;
*** ISO/IEC 10918-3:1997/Amd 1:1999 - Refer to [[SPIFF]]&lt;br /&gt;
** [http://www.iso.org/iso/catalogue_detail.htm?csnumber=25431 ISO/IEC 10918-4:1999] - Registration of JPEG profiles, ...&lt;br /&gt;
*** [http://www.iso.org/iso/catalogue_detail.htm?csnumber=59454 ISO/IEC 10918-4:1999/Amd 1:2013] - Application specific marker list&lt;br /&gt;
** ISO/IEC 10918-5:2013 - Refer to [[JFIF]]&lt;br /&gt;
** [http://www.iso.org/iso/catalogue_detail.htm?csnumber=59634 ISO/IEC 10918-6:2013] - Application to printing systems&lt;br /&gt;
** [https://www.iso.org/standard/75845.html ISO/IEC 10918-7:2019] - Reference software&lt;br /&gt;
* [https://jpeg.org/jpegsystems/index.html ISO/IEC 19566: JPEG Systems] (a collection of JPEG-related standards)&lt;br /&gt;
** [https://www.iso.org/standard/65348.html ISO/IEC 19566-1]: Packaging of information using codestreams and file formats&lt;br /&gt;
** [https://www.iso.org/standard/67704.html ISO/IEC 19566-2]: Transport mechanisms and packaging&lt;br /&gt;
** [https://www.iso.org/standard/73607.html ISO/IEC 19566-4]: Privacy, security and IPR features&lt;br /&gt;
** [https://www.iso.org/standard/73604.html ISO/IEC 19566-5]: JPEG Universal Metadata Box Format (JUMBF)&lt;br /&gt;
** ISO/IEC 19566-6 - Refer to [[JPEG 360]]&lt;br /&gt;
** [https://www.iso.org/standard/78466.html ISO/IEC 19566-7]: JPEG Linked Media Format&lt;br /&gt;
* [https://jpeg.org/downloads/jpeg/wg1n76028-CfP-JPEG-reference-software.pdf Final Call for Proposal for a JPEG Reference Software] (2017-07)&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|image/jpg}}&lt;br /&gt;
&lt;br /&gt;
== Metaformat files ==&lt;br /&gt;
* {{Synalysis|jpeg}}&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
Nearly all serious graphics applications, including web browsers, support JPEG. This section primarily lists libraries and tools.&lt;br /&gt;
&lt;br /&gt;
* [http://www.ijg.org/ The Independent JPEG Group's software], commonly known as ''libjpeg'' or ''IJG libjpeg''&lt;br /&gt;
* [http://libjpeg-turbo.virtualgl.org/ libjpeg-turbo]&lt;br /&gt;
* [https://github.com/thorfdbg/libjpeg Thomas Richter's libjpeg]: C++ library that supports all of the JPEG standard&lt;br /&gt;
* [https://github.com/mozilla/mozjpeg/ mozjpeg: Improved JPEG encoding library from Mozilla]&lt;br /&gt;
** [http://calendar.perfplanet.com/2014/mozjpeg-3-0/ Info on mozjpeg 3.0]&lt;br /&gt;
* [https://research.googleblog.com/2017/03/announcing-guetzli-new-open-source-jpeg.html Guetzli] - JPEG encoder optimized for file size&lt;br /&gt;
** [https://github.com/google/guetzli Source code at GitHub]&lt;br /&gt;
* [http://coptr.digipres.org/Bad_Peggy Bad Peggy: scans images for problems]&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
When saving a JPEG image from [[Twitter]] in Google Chrome / Chromium, it will save with the default extension '''.jpg-large'''. This is due to a [https://code.google.com/p/chromium/issues/detail?id=172529 known bug] (and one which shows no signs of being solved any time soon) in the way the browser sanitises Twitter image URLs (the filename is determined to be e.g. Xyzxyzxyz.jpg:large, which is sanitised to Xyzxyzxyz.jpg-large).&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [[Wikipedia:JPEG|JPEG (Wikipedia)]]&lt;br /&gt;
* [https://exiftool.org/TagNames/JPEG.html ExifTool JPEG Tags]&lt;br /&gt;
* [https://www.disktuna.com/list-of-jpeg-markers/ List of JPEG Markers]&lt;br /&gt;
* [http://blog.sucuri.net/2013/07/malware-hidden-inside-jpg-exif-headers.html Malware Hidden Inside JPG EXIF Headers]&lt;br /&gt;
* [http://www.theatlantic.com/technology/archive/2013/09/what-is-a-jpeg-the-invisible-object-you-see-every-day/279954/ What Is a JPEG? The Invisible Object You See Every Day]&lt;br /&gt;
* [http://l0ss.elliepritts.com/ Project L0SS], a collection of images demonstrating the glitches and artifacts caused by repeatedly recompressing JPEG images&lt;br /&gt;
* [http://thenextweb.com/insider/2014/03/05/mozilla-launches-jpeg-encoder-mozjpeg-improve-compression-rates-reduce-network-traffic-page-loads/ Mozilla launches JPEG encoder mozjpeg to reduce webpage loads, results show up to 10% decrease in file size]&lt;br /&gt;
* [http://andreasgal.com/2014/07/15/improving-jpeg-image-encoding/ Improving JPEG image encoding]&lt;br /&gt;
* [http://arstechnica.com/information-technology/2014/07/we-dont-need-new-image-formats-mozilla-works-to-build-a-better-jpeg/ We don’t need new image formats: Mozilla works to build a better JPEG]&lt;br /&gt;
* [http://www.ams.org/samplings/feature-column/fcarc-image-compression Explanation of JPEG compression algorithm]&lt;br /&gt;
* [https://github.com/lclevy/libcraw2/blob/master/docs/cr2_lossless.pdf Lossless JPEG decompression]&lt;br /&gt;
* [http://xooyoozoo.github.io/yolo-octo-bugfixes/ Online demonstrator]- shows quality differences between similarly-sized images in [[JPEG]], [[JP2]], [[WebP]] and [[BPG]] formats&lt;br /&gt;
* [https://github.com/mozilla/mozjpeg/issues/182 Method to improve JPEG compression that was the subject of a now-expired patent]&lt;br /&gt;
* [https://medium.freecodecamp.com/how-jpg-works-a4dbd2316f35 How JPG Works]&lt;br /&gt;
* [http://frdx.free.fr/JPEG_for_the_horseshoe_crabs.pdf JPEG for the horseshoe crabs]&lt;br /&gt;
* [http://cloudinary.com/blog/why_jpeg_is_like_a_photocopier Why JPEG is like a photocopier] - discussion of generation loss in JPEG and other lossy formats (with examples)&lt;br /&gt;
* [http://openpreservation.org/blog/2017/04/09/using-exiftool-to-address-tag-out-of-sequence-errors-in-images-and-a-101-level-dive-into-tags/ Using EXIFTool to address “Tag out of sequence” errors in images (and a 101 level dive into tags)]&lt;br /&gt;
* [https://openpreservation.org/blog/2019/11/07/jpeg-got-the-blues/ JPEG Got the Blues] - on properly rendering 32-bit (CMYK) JPEGs&lt;br /&gt;
* [https://yasoob.me/posts/understanding-and-writing-jpeg-decoder-in-python/ Understanding and Decoding a JPEG Image using Python]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Compression]]&lt;br /&gt;
[[Category:JPEG (organization)]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/WordStar</id>
		<title>WordStar</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/WordStar"/>
				<updated>2023-12-28T05:18:35Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: /* Sample files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|subcat2=Word Processor&lt;br /&gt;
|extensions={{ext|ws}}, {{ext|ws3}}, {{ext|wsd}}, others&lt;br /&gt;
|pronom={{PRONOM|x-fmt/370}}, {{PRONOM|x-fmt/260}}, {{PRONOM|x-fmt/205}}, {{PRONOM|x-fmt/236}}, {{PRONOM|x-fmt/237}}, {{PRONOM|x-fmt/261}}, {{PRONOM|x-fmt/206}}, {{PRONOM|x-fmt/262}}&lt;br /&gt;
|released=1978&lt;br /&gt;
}}&lt;br /&gt;
'''WordStar''' was a word processor originally released in 1978 which was extremely popular in the early 1980s before losing ground to other word processors (particularly [[WordPerfect]]). Many professional writers used it in that era, and given their notorious conservatism regarding tools used for their writing, some are still using it to this day. This means that many original manuscripts are stored in this format.&lt;br /&gt;
&lt;br /&gt;
The original version was for the CP/M operating system, but it was later ported to a number of other systems; the PC/MS-DOS version became the most popular one. The particular set of control keys used for accessing various functions (often requiring multiple keypresses) were widely imitated in other programs at the time, making a &amp;quot;de-facto standard&amp;quot; for editing keys that got even wider use than WordStar itself.&lt;br /&gt;
&lt;br /&gt;
As with many early word processors, its files were basically plain text, with optional special functions causing control characters to be inserted. Files could be created or edited with any extension, but '''.ws''' (sometimes with an appended number to mark versions, like '''.ws3''') was commonly used.&lt;br /&gt;
&lt;br /&gt;
One quirk present in versions prior to 5.0 was its use of the high bit of each byte of its files to denote the last letter of a word. This limited the character set to 7-bit [[ASCII]], where all characters in the document that were not the last letter of a word had a clear high bit (and thus had values from 00-7F hex corresponding to the ASCII values), while last letters had the high bit set (giving them values from 80-FF hex, but actually representing the corresponding characters from 00-7F). This interfered with internationalization, since it prevented the use of extended character sets beyond ASCII, and also resulted in WordStar files having characters at the end of words that looked like gibberish in other programs which interpreted the characters via some 8-bit encoding. Eventually this &amp;quot;feature&amp;quot; was dropped, but even in late versions extended characters were marked in the saved files by control characters both preceding and following them, making an 8-bit character take three bytes to store, which was necessary to preserve file compatibility (old WordStar files with high bits set at the end of words still needed to load correctly meaning that the program couldn't interpret high-bit characters as other characters in extended character sets without a special marker).&lt;br /&gt;
&lt;br /&gt;
Extended characters (when they appeared in the special escaped sequence, consisting of character 1B hex, followed by the special character, followed by character 1C hex) were generally of the [[MS-DOS encodings]], at least if the file was created in a DOS version of WordStar.&lt;br /&gt;
&lt;br /&gt;
There was also a [[WordStar 2000]] program, with its own different file format not compatible with other WordStar versions; this program (which, despite its name, was released in the 1980s, nowhere near the year 2000) was intended to be a new-generation word-processor to compete with the newer programs that were starting to catch on at the time, but didn't succeed and actually went out of use earlier than the original WordStar, which continued to get updated through the 1990s.&lt;br /&gt;
&lt;br /&gt;
== Converting WordStar files with high bits set ==&lt;br /&gt;
&lt;br /&gt;
Some other programs have special &amp;quot;WordStar import&amp;quot; features which handle high-bit characters, but if you need to deal with such files without a conversion utility, it's helpful to change high-bit characters to their corresponding 7-bit characters in order to have standard ASCII. This can be done simply in most programming or scripting languages; here's a Perl example, for instance.&lt;br /&gt;
&lt;br /&gt;
 open OUTFILE, &amp;quot;&amp;gt;out.txt&amp;quot;;&lt;br /&gt;
 open INFILE, &amp;quot;&amp;lt;in.ws&amp;quot;;&lt;br /&gt;
 while (&amp;lt;INFILE&amp;gt;)&lt;br /&gt;
 {&lt;br /&gt;
   tr [\200-\377] [\000-\177];&lt;br /&gt;
   print OUTFILE $_;&lt;br /&gt;
 }&lt;br /&gt;
 close INFILE;&lt;br /&gt;
 close OUTFILE;&lt;br /&gt;
&lt;br /&gt;
== Control characters ==&lt;br /&gt;
&lt;br /&gt;
These are the control characters as stored in WordStar documents, and their meanings. Most of them are program-specific, not corresponding to the standard [[C0 controls|ASCII control meanings]], though some of these are preserved. The toggle options were used at the start and end of blocks of text intended to be formatted in a particular way (e.g., bold). Since these control characters had different meanings as immediate commands when typed within WordStar, a different sequence of keys (shown in the &amp;quot;WordStar Key&amp;quot; column) was used to insert them into the document.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! title=&amp;quot;Hexadecimal code point&amp;quot; | Hex&lt;br /&gt;
! title=&amp;quot;Decimal code point&amp;quot; | Dec&lt;br /&gt;
! title=&amp;quot;Standard ASCII Acronym&amp;quot; | ASCII Char&lt;br /&gt;
! title=&amp;quot;Control key&amp;quot; | Ctrl Key&lt;br /&gt;
! title=&amp;quot;WordStar Key&amp;quot; | WordStar Key&lt;br /&gt;
! title=&amp;quot;Description and uses&amp;quot; | WordStar meaning&lt;br /&gt;
|-&lt;br /&gt;
|00||0||NUL||^@||Control-PZ||In some versions right-aligns text; in others fixes print head to absolute position of character in line&lt;br /&gt;
|-&lt;br /&gt;
|01||1||SOH||^A||Control-PA||Toggles alternate font&lt;br /&gt;
|-&lt;br /&gt;
|02||2||STX||^B||Control-PB||Toggles Bold mode&lt;br /&gt;
|-&lt;br /&gt;
|03||3||ETX||^C||Control-PC||Pause print for user response&lt;br /&gt;
|-&lt;br /&gt;
|04||4||EOT||^D||Control-PD||Toggles double-strike mode&lt;br /&gt;
|-&lt;br /&gt;
|05||5||ENQ||^E||Control-PE||Custom print control&lt;br /&gt;
|-&lt;br /&gt;
|06||6||ACK||^F||Control-PF||Phantom space&lt;br /&gt;
|-&lt;br /&gt;
|07||7||BEL||^G||Control-PG||Phantom rubout&lt;br /&gt;
|-&lt;br /&gt;
|08||8||BS||^H||Control-PH||Overprint previous character (backspace)&lt;br /&gt;
|-&lt;br /&gt;
|09||9||HT||^I||Control-PI||Tab&lt;br /&gt;
|-&lt;br /&gt;
|0A||10||LF||^J||Control-PJ||Linefeed: follows Carriage Return for line break. (Enter/Return inserts two-character sequence ^M^J)&lt;br /&gt;
|-&lt;br /&gt;
|0B||11||VT||^K||Control-PK||In some versions, centers text; in others marks text to be indexed (placed both before and after the text sequence)&lt;br /&gt;
|-&lt;br /&gt;
|0C||12||FF||^L||Control-PL||Form feed (page break)&lt;br /&gt;
|-&lt;br /&gt;
|0D||13||CR||^M||Control-PM||Carriage Return: precedes Linefeed for line break. (Enter/Return inserts two-character sequence ^M^J)&lt;br /&gt;
|-&lt;br /&gt;
|0E||14||SO||^N||Control-PN||Return to normal character width&lt;br /&gt;
|-&lt;br /&gt;
|0F||15||SI||^O||Control-PO||Non-breaking space&lt;br /&gt;
|-&lt;br /&gt;
|10||16||DLE||^P||Control-PP||Unused&lt;br /&gt;
|-&lt;br /&gt;
|11||17||DC1||^Q||Control-PQ||Custom print control&lt;br /&gt;
|-&lt;br /&gt;
|12||18||DC2||^R||Contorl-PR||Custom print control&lt;br /&gt;
|-&lt;br /&gt;
|13||19||DC3||^S||Control-PS||Toggles underline mode&lt;br /&gt;
|-&lt;br /&gt;
|14||20||DC4||^T||Control-PT||Toggles superscript mode&lt;br /&gt;
|-&lt;br /&gt;
|15||21||NAK||^U||Control-PU||Unused&lt;br /&gt;
|-&lt;br /&gt;
|16||22||SYN||^V||Control-PV||Toggles subscript mode&lt;br /&gt;
|-&lt;br /&gt;
|17||23||ETB||^W||Control-PW||Custom print control&lt;br /&gt;
|-&lt;br /&gt;
|18||24||CAN||^X||Control-PX||Toggles overstrike mode&lt;br /&gt;
|-&lt;br /&gt;
|19||25||EM||^Y||Control-PY||Toggles italic mode&lt;br /&gt;
|-&lt;br /&gt;
|1A||26||SUB||^Z||||End-of-file character&lt;br /&gt;
|-&lt;br /&gt;
|1B||27||ESC||^[||||Marks that following character is extended character&lt;br /&gt;
|-&lt;br /&gt;
|1C||28||FS||^\||||Marks that previous character is extended character (you need both 1B and 1C to delimit extended characters)&lt;br /&gt;
|-&lt;br /&gt;
|1D||29||GS||^]||||Symmetrical sequence start/stop character&lt;br /&gt;
|-&lt;br /&gt;
|1E||30||RS||^^||||Inactive Soft Hyphen&lt;br /&gt;
|-&lt;br /&gt;
|1F||31||US||^_||||Active Soft Hyphen&lt;br /&gt;
|-&lt;br /&gt;
|8D||141||||||||Soft Carriage Return (inserted, followed by normal linefeed 0A, to mark soft line break at word-wrap)&lt;br /&gt;
|-&lt;br /&gt;
|A0||160||||||||Soft Space&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Dot commands ==&lt;br /&gt;
&lt;br /&gt;
These commands are intended to be on a line by themselves, and started with the dot (.). This meant that regular text lines couldn't start with dots. Many other early word processors emulated WordStar in their use of &amp;quot;dot lines&amp;quot; for commands, though some of them required a control character to precede the dot in order to allow dots at the start of normal text lines. The specific commands varied a lot between programs, however.&lt;br /&gt;
&lt;br /&gt;
:'''..''' Comment line (followed by comment text; not printed)&lt;br /&gt;
:'''.av''' Pause to ask user for value of variable&lt;br /&gt;
:'''.aw''' Turn aligning/word-wrap on or off&lt;br /&gt;
:'''.bn''' Select sheet feeder bin&lt;br /&gt;
:'''.cc ''n''''' Conditional column break if n lines won't fit on page&lt;br /&gt;
:'''.co''' Specifies number of columns and optionally gutter width&lt;br /&gt;
:'''.cp ''n''''' Conditional page break if n lines won't fit on page&lt;br /&gt;
:'''.cs ''string''''' Clear screen and display message&lt;br /&gt;
:'''.cv''' Convert note type (convert first type specified to second type)&lt;br /&gt;
:'''.cw ''n''''' Set character width to given number of 1/120 inch increments&lt;br /&gt;
:'''.df ''filename''''' Insert data file ([[CSV]], [[dBase III|dBase]], etc)&lt;br /&gt;
:'''.dm ''string''''' Display message&lt;br /&gt;
:'''.e#''' Set new value for endnote numbering&lt;br /&gt;
:'''.ei''' End .if block (must be paired up with .if command)&lt;br /&gt;
:'''.el''' Begins optional else clause after .if command&lt;br /&gt;
:'''.f#''' Set new value for footnote numbering, and optionally set whether it restarts each page or is consecutive&lt;br /&gt;
:'''.fi ''filename''''' Insert text file ([[ASCII]], WordStar, [[Lotus 1-2-3]], etc.)&lt;br /&gt;
:'''.fm ''n''''' Set footer margin (number of lines left blank between main text and first footer line; default 2; footer margin and footer lines must fit within bottom margin)&lt;br /&gt;
:'''.fo''' If followed by text string, sets footer line; without a string resets footer. Can optionally specify odd or even pages.&lt;br /&gt;
:'''.f1''' First footer line (if using multiple-line footer)&lt;br /&gt;
:'''.f2''' Second footer line&lt;br /&gt;
:'''.f3''' Third footer line&lt;br /&gt;
:'''.f4''' Fourth footer line&lt;br /&gt;
:'''.f5''' Fifth footer line&lt;br /&gt;
:'''.go''' Go to top or bottom of document&lt;br /&gt;
:'''.he''' If followed by text string, sets header line; without a string resets header. Can optionally specify odd or even pages.&lt;br /&gt;
:'''.h1''' First header line (if using multiple-line header)&lt;br /&gt;
:'''.h2''' Second header line&lt;br /&gt;
:'''.h3''' Third header line&lt;br /&gt;
:'''.h4''' Fourth header line&lt;br /&gt;
:'''.h5''' Fifth header line&lt;br /&gt;
:'''.hm ''n''''' Set header margin (number of lines left blank between last header line and top of main text; default 2; header margin and header lines must fit within top margin)&lt;br /&gt;
:'''.hy''' Turn auto-hyphenating on or off&lt;br /&gt;
:'''.if ''condition''''' Conditional clause: can test string variables with = &amp;lt; &amp;gt; &amp;lt;&amp;gt; and number variables with #= #&amp;lt;&amp;gt; #&amp;lt; #&amp;gt; and print/execute following lines up to .ei if true, and optional else clause starting with .el if false. May be nested up to 255 levels.&lt;br /&gt;
:'''.ig ''string''''' Ignore text on remainder of line (same as .. for comments).&lt;br /&gt;
:'''.ix''' Puts text on remainder of line in index. Main entries and subentries can be separated with comma. If text starts with - it's used as cross-reference, and if it starts with + the page number is boldfaced.&lt;br /&gt;
:'''.kr''' Adjust kerning&lt;br /&gt;
:'''.l#''' Turns line numbering on/off or specifies attributes of line numbering&lt;br /&gt;
:'''.lh ''n''''' Set line height to n 1/48-inch increments. Argument of a sets auto-leading.&lt;br /&gt;
:'''.lm ''n''''' Set left margin to n characters&lt;br /&gt;
:'''.lq''' Letter quality on/off&lt;br /&gt;
:'''.ls ''n''''' Set line spacing to n (1-9), where 1 is single-spaced, 2 double-spaced, etc.&lt;br /&gt;
:'''.ma''' Math: Store result of a calculation in a variable&lt;br /&gt;
:'''.mb ''n''''' Set bottom margin (must be big enough to include all footers)&lt;br /&gt;
:'''.mt ''n''''' Set top margin (must be big enough to include all headers)&lt;br /&gt;
:'''.oc''' Turn centering on or off&lt;br /&gt;
:'''.oj''' Turn output justification on or off&lt;br /&gt;
:'''.op''' Omit page numbers&lt;br /&gt;
:'''.p#''' Set paragraph number or formatting of paragraph numbers.&lt;br /&gt;
:'''.pa''' Page break&lt;br /&gt;
:'''.pc ''n''''' Put page numbers at column n, or centered if 0 is used.&lt;br /&gt;
:'''.pe''' Print endnotes at this point in document&lt;br /&gt;
:'''.pf''' Turn paragraph realignment on or off&lt;br /&gt;
:'''.pg''' Turn on page numbering (reverses .op)&lt;br /&gt;
:'''.pl ''n''''' Set page length to n lines (usually 66 for normal letter paper)&lt;br /&gt;
:'''.pm ''n''''' Set paragraph margin (indenting)&lt;br /&gt;
:'''.pn ''n''''' Set current page number&lt;br /&gt;
:'''.po ''n''''' Set page offset (added to left margin), optionally separately for even or odd pages&lt;br /&gt;
:'''.pr''' Set print orientation ('''.pr or=l''' for landscape, '''.pr or=p''' for portrait)&lt;br /&gt;
:'''.ps''' Turn proportional spacing on or off&lt;br /&gt;
:'''.rm ''n''''' Set right margin&lt;br /&gt;
:'''.rp''' Repeat-print multiple copies (may not work with .df command)&lt;br /&gt;
:'''.rr''' Embed ruler line (may add number from 0 to 9 to specify preformatted ruler from user area)&lt;br /&gt;
:'''.rv''' Read variable&lt;br /&gt;
:'''.sb''' Suppress blank lines (on/off)&lt;br /&gt;
:'''.sr ''n''''' subscript/superscript roll (in 1/48ths of an inch), default 3&lt;br /&gt;
:'''.sv''' Set variable&lt;br /&gt;
:'''.tb''' Set tab stops&lt;br /&gt;
:'''.tc ''string''''' The string is set as a table of contents entry; # is used to indicate where page number is inserted&lt;br /&gt;
:'''.t1 ''string''''' Table of contents entry 1&lt;br /&gt;
:'''.t2 ''string''''' Table of contents entry 2&lt;br /&gt;
:'''.t3 ''string''''' Table of contents entry 3&lt;br /&gt;
:'''.t4 ''string''''' Table of contents entry 4&lt;br /&gt;
:'''.t5 ''string''''' Table of contents entry 5&lt;br /&gt;
:'''.t6 ''string''''' Table of contents entry 6&lt;br /&gt;
:'''.t7 ''string''''' Table of contents entry 7&lt;br /&gt;
:'''.t8 ''string''''' Table of contents entry 8&lt;br /&gt;
:'''.t9 ''string''''' Table of contents entry 9&lt;br /&gt;
:'''.uj''' Turn on or off micro-justify (spreads right-justify space in very fine increments)&lt;br /&gt;
:'''.ul''' Turn on or off continuous underlining (of blanks between words)&lt;br /&gt;
:'''.xe''' Up to 5 bytes following command define custom print control for Ctrl-E&lt;br /&gt;
:'''.xq''' Up to 5 bytes following command define custom print control for Ctrl-Q&lt;br /&gt;
:'''.xr''' Up to 5 bytes following command define custom print control for Ctrl-R&lt;br /&gt;
:'''.xw''' Up to 5 bytes following command define custom print control for Ctrl-W&lt;br /&gt;
:'''.xl''' Form feed with controls defined by hex pairs following command&lt;br /&gt;
:'''.xx ''c''''' Set strikeout character&lt;br /&gt;
&lt;br /&gt;
== Format documentation ==&lt;br /&gt;
* [http://www.moon-soft.com/program/format/text/wordst.htm WordStar file format documentation]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://vetusware.com/download/WordStar%204.00/?id=3443 WordStar 4.0 download]&lt;br /&gt;
* [http://www.brothersoft.com/wordstar-207541.html WordStar 7.0 download]&lt;br /&gt;
* [https://winworldpc.com/product/wordstar WordStar Downloads (Multiple Versions)]&lt;br /&gt;
* [https://archive.org/details/wordstar_2.26_osborne1_1981_micropro In-browser emulation: WordStar Word Processing Version 2.26 (1981) (MicroPro) (Osborne 1) (1981)]&lt;br /&gt;
* [http://www.wordstar.org/index.php/wordstar-emulator/11-wordstar-file-conversion/107-habit-wordstar-converter HABit WordStar Converter]&lt;br /&gt;
* [http://web.archive.org/web/20100317135102/http://www.wordstar.org/wordstar/pages/convert_faq.htm Converting WordStar Files into Other Formats]&lt;br /&gt;
&lt;br /&gt;
== Manuals ==&lt;br /&gt;
* [http://archive.org/details/Wordstar_Rel_4_for_CPM_1979_Micropro_International WordStar manual (CP/M, 1979)]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|document/wordStar}}&lt;br /&gt;
&lt;br /&gt;
== Other links ==&lt;br /&gt;
* [[Wikipedia:WordStar|WordStar (Wikipedia)]]&lt;br /&gt;
* [http://www.wordstar.org/ WordStar resource site]&lt;br /&gt;
* [https://blogs.loc.gov/thesignal/2022/07/wow-its-wordstar-exploring-a-beloved-early-word-processor-and-its-many-formats/ “Wow, it’s WordStar!” Exploring a Beloved Early Word Processor and its Many Formats] (Library of Congress blog)&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/WordStar</id>
		<title>WordStar</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/WordStar"/>
				<updated>2023-12-28T05:18:11Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: /* Sample files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|subcat2=Word Processor&lt;br /&gt;
|extensions={{ext|ws}}, {{ext|ws3}}, {{ext|wsd}}, others&lt;br /&gt;
|pronom={{PRONOM|x-fmt/370}}, {{PRONOM|x-fmt/260}}, {{PRONOM|x-fmt/205}}, {{PRONOM|x-fmt/236}}, {{PRONOM|x-fmt/237}}, {{PRONOM|x-fmt/261}}, {{PRONOM|x-fmt/206}}, {{PRONOM|x-fmt/262}}&lt;br /&gt;
|released=1978&lt;br /&gt;
}}&lt;br /&gt;
'''WordStar''' was a word processor originally released in 1978 which was extremely popular in the early 1980s before losing ground to other word processors (particularly [[WordPerfect]]). Many professional writers used it in that era, and given their notorious conservatism regarding tools used for their writing, some are still using it to this day. This means that many original manuscripts are stored in this format.&lt;br /&gt;
&lt;br /&gt;
The original version was for the CP/M operating system, but it was later ported to a number of other systems; the PC/MS-DOS version became the most popular one. The particular set of control keys used for accessing various functions (often requiring multiple keypresses) were widely imitated in other programs at the time, making a &amp;quot;de-facto standard&amp;quot; for editing keys that got even wider use than WordStar itself.&lt;br /&gt;
&lt;br /&gt;
As with many early word processors, its files were basically plain text, with optional special functions causing control characters to be inserted. Files could be created or edited with any extension, but '''.ws''' (sometimes with an appended number to mark versions, like '''.ws3''') was commonly used.&lt;br /&gt;
&lt;br /&gt;
One quirk present in versions prior to 5.0 was its use of the high bit of each byte of its files to denote the last letter of a word. This limited the character set to 7-bit [[ASCII]], where all characters in the document that were not the last letter of a word had a clear high bit (and thus had values from 00-7F hex corresponding to the ASCII values), while last letters had the high bit set (giving them values from 80-FF hex, but actually representing the corresponding characters from 00-7F). This interfered with internationalization, since it prevented the use of extended character sets beyond ASCII, and also resulted in WordStar files having characters at the end of words that looked like gibberish in other programs which interpreted the characters via some 8-bit encoding. Eventually this &amp;quot;feature&amp;quot; was dropped, but even in late versions extended characters were marked in the saved files by control characters both preceding and following them, making an 8-bit character take three bytes to store, which was necessary to preserve file compatibility (old WordStar files with high bits set at the end of words still needed to load correctly meaning that the program couldn't interpret high-bit characters as other characters in extended character sets without a special marker).&lt;br /&gt;
&lt;br /&gt;
Extended characters (when they appeared in the special escaped sequence, consisting of character 1B hex, followed by the special character, followed by character 1C hex) were generally of the [[MS-DOS encodings]], at least if the file was created in a DOS version of WordStar.&lt;br /&gt;
&lt;br /&gt;
There was also a [[WordStar 2000]] program, with its own different file format not compatible with other WordStar versions; this program (which, despite its name, was released in the 1980s, nowhere near the year 2000) was intended to be a new-generation word-processor to compete with the newer programs that were starting to catch on at the time, but didn't succeed and actually went out of use earlier than the original WordStar, which continued to get updated through the 1990s.&lt;br /&gt;
&lt;br /&gt;
== Converting WordStar files with high bits set ==&lt;br /&gt;
&lt;br /&gt;
Some other programs have special &amp;quot;WordStar import&amp;quot; features which handle high-bit characters, but if you need to deal with such files without a conversion utility, it's helpful to change high-bit characters to their corresponding 7-bit characters in order to have standard ASCII. This can be done simply in most programming or scripting languages; here's a Perl example, for instance.&lt;br /&gt;
&lt;br /&gt;
 open OUTFILE, &amp;quot;&amp;gt;out.txt&amp;quot;;&lt;br /&gt;
 open INFILE, &amp;quot;&amp;lt;in.ws&amp;quot;;&lt;br /&gt;
 while (&amp;lt;INFILE&amp;gt;)&lt;br /&gt;
 {&lt;br /&gt;
   tr [\200-\377] [\000-\177];&lt;br /&gt;
   print OUTFILE $_;&lt;br /&gt;
 }&lt;br /&gt;
 close INFILE;&lt;br /&gt;
 close OUTFILE;&lt;br /&gt;
&lt;br /&gt;
== Control characters ==&lt;br /&gt;
&lt;br /&gt;
These are the control characters as stored in WordStar documents, and their meanings. Most of them are program-specific, not corresponding to the standard [[C0 controls|ASCII control meanings]], though some of these are preserved. The toggle options were used at the start and end of blocks of text intended to be formatted in a particular way (e.g., bold). Since these control characters had different meanings as immediate commands when typed within WordStar, a different sequence of keys (shown in the &amp;quot;WordStar Key&amp;quot; column) was used to insert them into the document.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! title=&amp;quot;Hexadecimal code point&amp;quot; | Hex&lt;br /&gt;
! title=&amp;quot;Decimal code point&amp;quot; | Dec&lt;br /&gt;
! title=&amp;quot;Standard ASCII Acronym&amp;quot; | ASCII Char&lt;br /&gt;
! title=&amp;quot;Control key&amp;quot; | Ctrl Key&lt;br /&gt;
! title=&amp;quot;WordStar Key&amp;quot; | WordStar Key&lt;br /&gt;
! title=&amp;quot;Description and uses&amp;quot; | WordStar meaning&lt;br /&gt;
|-&lt;br /&gt;
|00||0||NUL||^@||Control-PZ||In some versions right-aligns text; in others fixes print head to absolute position of character in line&lt;br /&gt;
|-&lt;br /&gt;
|01||1||SOH||^A||Control-PA||Toggles alternate font&lt;br /&gt;
|-&lt;br /&gt;
|02||2||STX||^B||Control-PB||Toggles Bold mode&lt;br /&gt;
|-&lt;br /&gt;
|03||3||ETX||^C||Control-PC||Pause print for user response&lt;br /&gt;
|-&lt;br /&gt;
|04||4||EOT||^D||Control-PD||Toggles double-strike mode&lt;br /&gt;
|-&lt;br /&gt;
|05||5||ENQ||^E||Control-PE||Custom print control&lt;br /&gt;
|-&lt;br /&gt;
|06||6||ACK||^F||Control-PF||Phantom space&lt;br /&gt;
|-&lt;br /&gt;
|07||7||BEL||^G||Control-PG||Phantom rubout&lt;br /&gt;
|-&lt;br /&gt;
|08||8||BS||^H||Control-PH||Overprint previous character (backspace)&lt;br /&gt;
|-&lt;br /&gt;
|09||9||HT||^I||Control-PI||Tab&lt;br /&gt;
|-&lt;br /&gt;
|0A||10||LF||^J||Control-PJ||Linefeed: follows Carriage Return for line break. (Enter/Return inserts two-character sequence ^M^J)&lt;br /&gt;
|-&lt;br /&gt;
|0B||11||VT||^K||Control-PK||In some versions, centers text; in others marks text to be indexed (placed both before and after the text sequence)&lt;br /&gt;
|-&lt;br /&gt;
|0C||12||FF||^L||Control-PL||Form feed (page break)&lt;br /&gt;
|-&lt;br /&gt;
|0D||13||CR||^M||Control-PM||Carriage Return: precedes Linefeed for line break. (Enter/Return inserts two-character sequence ^M^J)&lt;br /&gt;
|-&lt;br /&gt;
|0E||14||SO||^N||Control-PN||Return to normal character width&lt;br /&gt;
|-&lt;br /&gt;
|0F||15||SI||^O||Control-PO||Non-breaking space&lt;br /&gt;
|-&lt;br /&gt;
|10||16||DLE||^P||Control-PP||Unused&lt;br /&gt;
|-&lt;br /&gt;
|11||17||DC1||^Q||Control-PQ||Custom print control&lt;br /&gt;
|-&lt;br /&gt;
|12||18||DC2||^R||Contorl-PR||Custom print control&lt;br /&gt;
|-&lt;br /&gt;
|13||19||DC3||^S||Control-PS||Toggles underline mode&lt;br /&gt;
|-&lt;br /&gt;
|14||20||DC4||^T||Control-PT||Toggles superscript mode&lt;br /&gt;
|-&lt;br /&gt;
|15||21||NAK||^U||Control-PU||Unused&lt;br /&gt;
|-&lt;br /&gt;
|16||22||SYN||^V||Control-PV||Toggles subscript mode&lt;br /&gt;
|-&lt;br /&gt;
|17||23||ETB||^W||Control-PW||Custom print control&lt;br /&gt;
|-&lt;br /&gt;
|18||24||CAN||^X||Control-PX||Toggles overstrike mode&lt;br /&gt;
|-&lt;br /&gt;
|19||25||EM||^Y||Control-PY||Toggles italic mode&lt;br /&gt;
|-&lt;br /&gt;
|1A||26||SUB||^Z||||End-of-file character&lt;br /&gt;
|-&lt;br /&gt;
|1B||27||ESC||^[||||Marks that following character is extended character&lt;br /&gt;
|-&lt;br /&gt;
|1C||28||FS||^\||||Marks that previous character is extended character (you need both 1B and 1C to delimit extended characters)&lt;br /&gt;
|-&lt;br /&gt;
|1D||29||GS||^]||||Symmetrical sequence start/stop character&lt;br /&gt;
|-&lt;br /&gt;
|1E||30||RS||^^||||Inactive Soft Hyphen&lt;br /&gt;
|-&lt;br /&gt;
|1F||31||US||^_||||Active Soft Hyphen&lt;br /&gt;
|-&lt;br /&gt;
|8D||141||||||||Soft Carriage Return (inserted, followed by normal linefeed 0A, to mark soft line break at word-wrap)&lt;br /&gt;
|-&lt;br /&gt;
|A0||160||||||||Soft Space&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Dot commands ==&lt;br /&gt;
&lt;br /&gt;
These commands are intended to be on a line by themselves, and started with the dot (.). This meant that regular text lines couldn't start with dots. Many other early word processors emulated WordStar in their use of &amp;quot;dot lines&amp;quot; for commands, though some of them required a control character to precede the dot in order to allow dots at the start of normal text lines. The specific commands varied a lot between programs, however.&lt;br /&gt;
&lt;br /&gt;
:'''..''' Comment line (followed by comment text; not printed)&lt;br /&gt;
:'''.av''' Pause to ask user for value of variable&lt;br /&gt;
:'''.aw''' Turn aligning/word-wrap on or off&lt;br /&gt;
:'''.bn''' Select sheet feeder bin&lt;br /&gt;
:'''.cc ''n''''' Conditional column break if n lines won't fit on page&lt;br /&gt;
:'''.co''' Specifies number of columns and optionally gutter width&lt;br /&gt;
:'''.cp ''n''''' Conditional page break if n lines won't fit on page&lt;br /&gt;
:'''.cs ''string''''' Clear screen and display message&lt;br /&gt;
:'''.cv''' Convert note type (convert first type specified to second type)&lt;br /&gt;
:'''.cw ''n''''' Set character width to given number of 1/120 inch increments&lt;br /&gt;
:'''.df ''filename''''' Insert data file ([[CSV]], [[dBase III|dBase]], etc)&lt;br /&gt;
:'''.dm ''string''''' Display message&lt;br /&gt;
:'''.e#''' Set new value for endnote numbering&lt;br /&gt;
:'''.ei''' End .if block (must be paired up with .if command)&lt;br /&gt;
:'''.el''' Begins optional else clause after .if command&lt;br /&gt;
:'''.f#''' Set new value for footnote numbering, and optionally set whether it restarts each page or is consecutive&lt;br /&gt;
:'''.fi ''filename''''' Insert text file ([[ASCII]], WordStar, [[Lotus 1-2-3]], etc.)&lt;br /&gt;
:'''.fm ''n''''' Set footer margin (number of lines left blank between main text and first footer line; default 2; footer margin and footer lines must fit within bottom margin)&lt;br /&gt;
:'''.fo''' If followed by text string, sets footer line; without a string resets footer. Can optionally specify odd or even pages.&lt;br /&gt;
:'''.f1''' First footer line (if using multiple-line footer)&lt;br /&gt;
:'''.f2''' Second footer line&lt;br /&gt;
:'''.f3''' Third footer line&lt;br /&gt;
:'''.f4''' Fourth footer line&lt;br /&gt;
:'''.f5''' Fifth footer line&lt;br /&gt;
:'''.go''' Go to top or bottom of document&lt;br /&gt;
:'''.he''' If followed by text string, sets header line; without a string resets header. Can optionally specify odd or even pages.&lt;br /&gt;
:'''.h1''' First header line (if using multiple-line header)&lt;br /&gt;
:'''.h2''' Second header line&lt;br /&gt;
:'''.h3''' Third header line&lt;br /&gt;
:'''.h4''' Fourth header line&lt;br /&gt;
:'''.h5''' Fifth header line&lt;br /&gt;
:'''.hm ''n''''' Set header margin (number of lines left blank between last header line and top of main text; default 2; header margin and header lines must fit within top margin)&lt;br /&gt;
:'''.hy''' Turn auto-hyphenating on or off&lt;br /&gt;
:'''.if ''condition''''' Conditional clause: can test string variables with = &amp;lt; &amp;gt; &amp;lt;&amp;gt; and number variables with #= #&amp;lt;&amp;gt; #&amp;lt; #&amp;gt; and print/execute following lines up to .ei if true, and optional else clause starting with .el if false. May be nested up to 255 levels.&lt;br /&gt;
:'''.ig ''string''''' Ignore text on remainder of line (same as .. for comments).&lt;br /&gt;
:'''.ix''' Puts text on remainder of line in index. Main entries and subentries can be separated with comma. If text starts with - it's used as cross-reference, and if it starts with + the page number is boldfaced.&lt;br /&gt;
:'''.kr''' Adjust kerning&lt;br /&gt;
:'''.l#''' Turns line numbering on/off or specifies attributes of line numbering&lt;br /&gt;
:'''.lh ''n''''' Set line height to n 1/48-inch increments. Argument of a sets auto-leading.&lt;br /&gt;
:'''.lm ''n''''' Set left margin to n characters&lt;br /&gt;
:'''.lq''' Letter quality on/off&lt;br /&gt;
:'''.ls ''n''''' Set line spacing to n (1-9), where 1 is single-spaced, 2 double-spaced, etc.&lt;br /&gt;
:'''.ma''' Math: Store result of a calculation in a variable&lt;br /&gt;
:'''.mb ''n''''' Set bottom margin (must be big enough to include all footers)&lt;br /&gt;
:'''.mt ''n''''' Set top margin (must be big enough to include all headers)&lt;br /&gt;
:'''.oc''' Turn centering on or off&lt;br /&gt;
:'''.oj''' Turn output justification on or off&lt;br /&gt;
:'''.op''' Omit page numbers&lt;br /&gt;
:'''.p#''' Set paragraph number or formatting of paragraph numbers.&lt;br /&gt;
:'''.pa''' Page break&lt;br /&gt;
:'''.pc ''n''''' Put page numbers at column n, or centered if 0 is used.&lt;br /&gt;
:'''.pe''' Print endnotes at this point in document&lt;br /&gt;
:'''.pf''' Turn paragraph realignment on or off&lt;br /&gt;
:'''.pg''' Turn on page numbering (reverses .op)&lt;br /&gt;
:'''.pl ''n''''' Set page length to n lines (usually 66 for normal letter paper)&lt;br /&gt;
:'''.pm ''n''''' Set paragraph margin (indenting)&lt;br /&gt;
:'''.pn ''n''''' Set current page number&lt;br /&gt;
:'''.po ''n''''' Set page offset (added to left margin), optionally separately for even or odd pages&lt;br /&gt;
:'''.pr''' Set print orientation ('''.pr or=l''' for landscape, '''.pr or=p''' for portrait)&lt;br /&gt;
:'''.ps''' Turn proportional spacing on or off&lt;br /&gt;
:'''.rm ''n''''' Set right margin&lt;br /&gt;
:'''.rp''' Repeat-print multiple copies (may not work with .df command)&lt;br /&gt;
:'''.rr''' Embed ruler line (may add number from 0 to 9 to specify preformatted ruler from user area)&lt;br /&gt;
:'''.rv''' Read variable&lt;br /&gt;
:'''.sb''' Suppress blank lines (on/off)&lt;br /&gt;
:'''.sr ''n''''' subscript/superscript roll (in 1/48ths of an inch), default 3&lt;br /&gt;
:'''.sv''' Set variable&lt;br /&gt;
:'''.tb''' Set tab stops&lt;br /&gt;
:'''.tc ''string''''' The string is set as a table of contents entry; # is used to indicate where page number is inserted&lt;br /&gt;
:'''.t1 ''string''''' Table of contents entry 1&lt;br /&gt;
:'''.t2 ''string''''' Table of contents entry 2&lt;br /&gt;
:'''.t3 ''string''''' Table of contents entry 3&lt;br /&gt;
:'''.t4 ''string''''' Table of contents entry 4&lt;br /&gt;
:'''.t5 ''string''''' Table of contents entry 5&lt;br /&gt;
:'''.t6 ''string''''' Table of contents entry 6&lt;br /&gt;
:'''.t7 ''string''''' Table of contents entry 7&lt;br /&gt;
:'''.t8 ''string''''' Table of contents entry 8&lt;br /&gt;
:'''.t9 ''string''''' Table of contents entry 9&lt;br /&gt;
:'''.uj''' Turn on or off micro-justify (spreads right-justify space in very fine increments)&lt;br /&gt;
:'''.ul''' Turn on or off continuous underlining (of blanks between words)&lt;br /&gt;
:'''.xe''' Up to 5 bytes following command define custom print control for Ctrl-E&lt;br /&gt;
:'''.xq''' Up to 5 bytes following command define custom print control for Ctrl-Q&lt;br /&gt;
:'''.xr''' Up to 5 bytes following command define custom print control for Ctrl-R&lt;br /&gt;
:'''.xw''' Up to 5 bytes following command define custom print control for Ctrl-W&lt;br /&gt;
:'''.xl''' Form feed with controls defined by hex pairs following command&lt;br /&gt;
:'''.xx ''c''''' Set strikeout character&lt;br /&gt;
&lt;br /&gt;
== Format documentation ==&lt;br /&gt;
* [http://www.moon-soft.com/program/format/text/wordst.htm WordStar file format documentation]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://vetusware.com/download/WordStar%204.00/?id=3443 WordStar 4.0 download]&lt;br /&gt;
* [http://www.brothersoft.com/wordstar-207541.html WordStar 7.0 download]&lt;br /&gt;
* [https://winworldpc.com/product/wordstar WordStar Downloads (Multiple Versions)]&lt;br /&gt;
* [https://archive.org/details/wordstar_2.26_osborne1_1981_micropro In-browser emulation: WordStar Word Processing Version 2.26 (1981) (MicroPro) (Osborne 1) (1981)]&lt;br /&gt;
* [http://www.wordstar.org/index.php/wordstar-emulator/11-wordstar-file-conversion/107-habit-wordstar-converter HABit WordStar Converter]&lt;br /&gt;
* [http://web.archive.org/web/20100317135102/http://www.wordstar.org/wordstar/pages/convert_faq.htm Converting WordStar Files into Other Formats]&lt;br /&gt;
&lt;br /&gt;
== Manuals ==&lt;br /&gt;
* [http://archive.org/details/Wordstar_Rel_4_for_CPM_1979_Micropro_International WordStar manual (CP/M, 1979)]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|wordStar}}&lt;br /&gt;
&lt;br /&gt;
== Other links ==&lt;br /&gt;
* [[Wikipedia:WordStar|WordStar (Wikipedia)]]&lt;br /&gt;
* [http://www.wordstar.org/ WordStar resource site]&lt;br /&gt;
* [https://blogs.loc.gov/thesignal/2022/07/wow-its-wordstar-exploring-a-beloved-early-word-processor-and-its-many-formats/ “Wow, it’s WordStar!” Exploring a Beloved Early Word Processor and its Many Formats] (Library of Congress blog)&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/QuickTime</id>
		<title>QuickTime</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/QuickTime"/>
				<updated>2023-12-28T05:17:55Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: /* Sample files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Video&lt;br /&gt;
|extensions={{ext|mov}}&lt;br /&gt;
|mimetypes={{mimetype|video/quicktime}}&lt;br /&gt;
|pronom={{PRONOM|x-fmt/384}}&lt;br /&gt;
|wikidata={{wikidata|Q942350}}&lt;br /&gt;
|kaitai struct=quicktime_mov&lt;br /&gt;
}}&lt;br /&gt;
:''&amp;quot;MOV&amp;quot; redirects here. For another MOV format, see [[Electronic Arts MOV]]. For movie formats in general, see [[Video]].''&lt;br /&gt;
&lt;br /&gt;
'''QuickTime''' is a container format developed by Apple Computer, Inc.  It is usually used to wrap video content, but can also be used to wrap sound and still image data.  &lt;br /&gt;
&lt;br /&gt;
The QuickTime format was used as the basis for the international standard [[MPEG-4]] format.&lt;br /&gt;
&lt;br /&gt;
A now-deprecated related format for still images taken from a QuickTime video is [[QTIF]].&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
QuickTime was originally released in 1991 following years of internal development. &lt;br /&gt;
QuickTime exists in 7 minor format releases from 1991 (1.x) through 2016 (7.x). &lt;br /&gt;
A major upgrade to the platform occurred in 2009 with QuickTime X. &lt;br /&gt;
The current version of classic QuickTime is 7.7.9 as of 2016. &lt;br /&gt;
QuickTime X is At version 10.5&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
See [[boxes/atoms format]]. Starting in 2004, the QuickTime movie file specification has been based on [[ISO Base Media File Format]], with a brand of &amp;quot;&amp;lt;code&amp;gt;qt&amp;amp;nbsp;&amp;amp;nbsp;&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Quicktime VR ==&lt;br /&gt;
In the past, the Quicktime format has been used as a container for so called Virtual Reality (or rather, 360 degree panorama) data. Not clear how to identify. File extensions usually just .mov, but may be .qt or more specifically .qvr (possibly .qtvr?).&lt;br /&gt;
&lt;br /&gt;
* [http://www.mactech.com/articles/mactech/Vol.12/12.05/QTVRTutorial/index.html Getting started with QuickTime VR] - tutorial from February, 1996.]&lt;br /&gt;
** Mentions &amp;quot;creator/file type of the downloaded movie to QuickTime VR’s 'vrod'/'MooV'&amp;quot;, which may be the type?&lt;br /&gt;
** ffprobe shows &amp;quot;Stream #0:1(eng): Data: none (pano / 0x6F6E6170), 0 kb/s&amp;quot;, so I presume 'pano' is the ftyp/FourCC?&lt;br /&gt;
** &amp;quot;The media type of the panorama track is 'pano'.&amp;quot; from Quicktime file format specification, page 289.&lt;br /&gt;
* [http://www.synthetic-ap.com/qtvr/qtvrsamp.html Example Quicktime VR files]&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
&lt;br /&gt;
* [https://developer.apple.com/standards/classic-quicktime/ QuickTime File Format Specification (classic, 2001)] &lt;br /&gt;
* [https://developer.apple.com/library/content/documentation/QuickTime/QTFF/ QuickTime File Format Specification (current version)]&lt;br /&gt;
&lt;br /&gt;
== Metaformat files ==&lt;br /&gt;
&lt;br /&gt;
* {{Synalysis|qt}}&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[Konvertor]]&lt;br /&gt;
* [http://archive.org/download/PowerPlay0597/PowerPlay0597.iso01.iso/TOOLS/Qtime/QT32INST.EXE QuickTime 2.1.2 for Windows (c. 1997)]&lt;br /&gt;
* [http://www.apple.com/quicktime/download/ Current QuickTime download]&lt;br /&gt;
* [[FFmpeg]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [http://support.apple.com/kb/HT1425 Apple's sample QuickTime files in several encodings]&lt;br /&gt;
* {{DexvertSamples|video/mov}}&lt;br /&gt;
* http://samples.mplayerhq.hu/mov/&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Boxes/atoms format]]&lt;br /&gt;
* [[ISO Base Media File Format]]&lt;br /&gt;
* [[MPEG-4]]&lt;br /&gt;
* [[PICT]]&lt;br /&gt;
* [[QTIF]]&lt;br /&gt;
* [[QuickTime Animation]]&lt;br /&gt;
&lt;br /&gt;
== Links and references ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.apple.com/quicktime/ Official site]&lt;br /&gt;
* [[Wikipedia:QuickTime|QuickTime : Wikipedia]]&lt;br /&gt;
* {{EGFF|quicktime|QuickTime File Format Summary}}, from the [[Encyclopedia of Graphics File Formats]]&lt;br /&gt;
* [http://scarygoround.com/index.php?date=20110408 Even comic-strip people can have trouble getting those things to play...]&lt;br /&gt;
&lt;br /&gt;
[[Category:Apple]]&lt;br /&gt;
[[Category:Box file format]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/VisualBasic_project</id>
		<title>VisualBasic project</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/VisualBasic_project"/>
				<updated>2023-12-28T05:16:06Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name           = VisualBasic project&lt;br /&gt;
| formattype     = electronic&lt;br /&gt;
| subcat         = Development&lt;br /&gt;
| subcat2        = &lt;br /&gt;
| subcat3        = &lt;br /&gt;
| subcat4        = &lt;br /&gt;
| subcat5        = &lt;br /&gt;
| thiscat        = &lt;br /&gt;
| extensions     = {{ext|mak}}, {{ext|vbp}}, {{ext|vbproj}}&lt;br /&gt;
| mimetypes      = &lt;br /&gt;
| locfdd         = &lt;br /&gt;
| fourccs        =&lt;br /&gt;
| pronom         =&lt;br /&gt;
| type code      =&lt;br /&gt;
| uniform type   =&lt;br /&gt;
| conforms to    = &lt;br /&gt;
| released       =&lt;br /&gt;
| image          =&lt;br /&gt;
| caption        =&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
A '''Visual Basic project file''' lists the files which are part of a project for [[Visual Basic]], and defines how they are grouped.&lt;br /&gt;
&lt;br /&gt;
The original files were in an [[ASCII]]-based format with a .vbp extension. Later, the Visual Studio .NET version of Visual Basic projects was introduced using a .vbproj extension and [[XML]]-based format.&lt;br /&gt;
&lt;br /&gt;
There are also [[Visual Studio Solution file]]s (.sln), which group together multiple .vbproj project files (or other project files used in Visual Studio).&lt;br /&gt;
&lt;br /&gt;
== File structure ==&lt;br /&gt;
&lt;br /&gt;
The ASCII-based file is a plain text file that describes the code project. It consists of key-value pairs.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;pre&amp;gt;Type=Exe&lt;br /&gt;
Form=SysEdit.frm&lt;br /&gt;
Form=MsdosFrm.frm&lt;br /&gt;
Form=ConfigFrm.frm&lt;br /&gt;
Form=AutoexecFrm.frm&lt;br /&gt;
Form=WinFrm.frm&lt;br /&gt;
Form=SystemFrm.frm&lt;br /&gt;
Form=DosstartFrm.frm&lt;br /&gt;
Form=WinstartFrm.frm&lt;br /&gt;
Reference=*\G{00025E01-0000-0000-C000-000000000046}#0.0#0#..\..\PROGRAM FILES\COMMON FILES\MICROSOFT SHARED\DAO\DAO360.DLL#Microsoft DAO 2.5 Object Library&lt;br /&gt;
IconForm=&amp;quot;MsdosFrm&amp;quot;&lt;br /&gt;
Startup=&amp;quot;Sysedit&amp;quot;&lt;br /&gt;
HelpFile=&amp;quot;&amp;quot;&lt;br /&gt;
Command32=&amp;quot;&amp;quot;&lt;br /&gt;
Name=&amp;quot;SystemEditor&amp;quot;&lt;br /&gt;
HelpContextID=&amp;quot;0&amp;quot;&lt;br /&gt;
CompatibleMode=&amp;quot;0&amp;quot;&lt;br /&gt;
MajorVer=1&lt;br /&gt;
MinorVer=0&lt;br /&gt;
RevisionVer=0&lt;br /&gt;
AutoIncrementVer=0&lt;br /&gt;
ServerSupportFiles=0&lt;br /&gt;
VersionCompanyName=&amp;quot;Anti-Censorship Organization&amp;quot;&lt;br /&gt;
CompilationType=0&lt;br /&gt;
OptimizationType=0&lt;br /&gt;
FavorPentiumPro(tm)=0&lt;br /&gt;
CodeViewDebugInfo=0&lt;br /&gt;
NoAliasing=0&lt;br /&gt;
BoundsCheck=0&lt;br /&gt;
OverflowCheck=0&lt;br /&gt;
FlPointCheck=0&lt;br /&gt;
FDIVCheck=0&lt;br /&gt;
UnroundedFP=0&lt;br /&gt;
StartMode=0&lt;br /&gt;
Unattended=0&lt;br /&gt;
Retained=0&lt;br /&gt;
ThreadPerObject=0&lt;br /&gt;
MaxNumberOfThreads=1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|other/visualBasicProject}}&lt;br /&gt;
&lt;br /&gt;
=== .NET VBPROJ ===&lt;br /&gt;
* [http://www.euronet.nl/users/swinkels/cmg.zip Cartooners Music Generator]&lt;br /&gt;
* [http://www.euronet.nl/users/swinkels/cav.zip Cartooners Actor Viewer]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://msdn.microsoft.com/en-us/library/aa716294%28v=vs.60%29.aspx .vbp format]&lt;br /&gt;
* [http://visualbasic.about.com/od/quicktips/qt/slnfiles.htm The &amp;quot;vbproj&amp;quot; and &amp;quot;sln&amp;quot; Files]&lt;br /&gt;
&lt;br /&gt;
[[Category:Microsoft]]&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/8-Bit_Sampled_Voice</id>
		<title>8-Bit Sampled Voice</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/8-Bit_Sampled_Voice"/>
				<updated>2023-12-28T05:16:00Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Audio and Music&lt;br /&gt;
|extensions={{ext|8svx}}, {{ext|iff}}&lt;br /&gt;
|mimetypes={{mimetype|audio/8svx}}, {{mimetype|audio/x-8svx}}&lt;br /&gt;
|pronom={{PRONOM|fmt/339}}&lt;br /&gt;
}}&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
'''8SVX''' (8-Bit Sampled Voice) is an audio file format developed by Electronic Arts and used on the Commodore Amiga. It is a subtype of the [[IFF|Interchange File Format]] file container and contains [[LPCM]] audio. The most common file extension is &amp;quot;.8svx&amp;quot; but they may also have the extension &amp;quot;.iff&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[FFmpeg]]&lt;br /&gt;
* [http://www.boomerangsworld.de/cms/tools/iff-convert.html iff-convert]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* http://cd.textfiles.com/audio11000/MEDIA/SOUNDS/IFF/&lt;br /&gt;
* {{DexvertSamples|audio/amiga8svx}}&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.textfiles.com/programming/FORMATS/8svx.pro File format description] (textfiles.com)&lt;br /&gt;
* [http://wiki.amigaos.net/wiki/8SVX_IFF_8-Bit_Sampled_Voice 8SVX IFF 8-Bit Sampled Voice]&lt;br /&gt;
* [http://wiki.multimedia.cx/index.php?title=IFF MultimediaWiki - IFF]&lt;br /&gt;
* [http://wiki.amigaos.net/wiki/IFF_FORM_and_Chunk_Registry AmigaOS Documentation Wiki - IFF FORM and CHUNK registry]&lt;br /&gt;
&lt;br /&gt;
[[Category:IFF based file formats]]&lt;br /&gt;
[[Category:Amiga]]&lt;br /&gt;
[[Category:Electronic Arts]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/D-Lusion_Music_File</id>
		<title>D-Lusion Music File</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/D-Lusion_Music_File"/>
				<updated>2023-12-28T05:15:58Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Audio and Music&lt;br /&gt;
|extensions={{ext|dmf}}&lt;br /&gt;
}}&lt;br /&gt;
:''&amp;quot;DMF&amp;quot; redirects here. For the floppy disk format, see [[DMF (Distribution Media Format)]].''&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
Sometimes referred to as D-Lusion / Delusion Music Format or D-Lusion / Delusion Digital Music Format, D-Lusion Music File (DMF) files are modules created by X-Tracker, a tracker for [[MS-DOS]]. The xtracker32 project planned to extend the format, but appears to have been delayed since late-2001 and can be presumed dead (although it was apparently in closed beta, so some files / source may remain in existence).&lt;br /&gt;
&lt;br /&gt;
The file format version identifier at offset 04h can tell you which version of X-Tracker was used to create the file:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center; width:200px; height:200px;&amp;quot;&lt;br /&gt;
|+ Tracker Version / File Format Version&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
! Version Number&lt;br /&gt;
|-&lt;br /&gt;
! X-Tracker beta&lt;br /&gt;
| 1-7&lt;br /&gt;
|-&lt;br /&gt;
! X-Tracker final&lt;br /&gt;
| 8&lt;br /&gt;
|-&lt;br /&gt;
! xtracker32&lt;br /&gt;
| 10&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
*[http://hackipedia.org/File%20formats/Music/Sample%20based/text/Delusion%20Digital%20Music%20Format%20-%20v0.25.cp437.txt.utf-8.txt DDMF description v0.25]&lt;br /&gt;
*[http://www.xtracker32.org/fileformat.shtml DMF Fileformat]&lt;br /&gt;
&lt;br /&gt;
== Software == &lt;br /&gt;
* [http://www.pouet.net/prod.php?which=55233 X-Tracker v1.03]&lt;br /&gt;
* [http://www.xtracker32.org/download.shtml#xt32amp xt32amp] - Winamp plugin, can play back X-Tracker / xtracker32 DMF files.&lt;br /&gt;
* [https://zxtune.bitbucket.io/ zxtune]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|music/dLusionDMF}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://rr.rockz.org/ The Radical Rhythms Archive] - some example DMF files can be found here&lt;br /&gt;
* http://www.xtracker32.org/RAN-JUST.DMF - possibly a song created with xtracker32?&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Atari_SoundHeader</id>
		<title>Atari SoundHeader</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Atari_SoundHeader"/>
				<updated>2023-12-28T05:15:57Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Audio and Music&lt;br /&gt;
|extensions={{ext|sndh}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The SNDH / Atari SoundHeader format was created by Jochen Knaus, aka BDC of the Atari ST demo group Aura, in an attempt to standardise chip music formats and playback for the Atari ST. A '''.sndh''' file consists of the original song, a replayer for that format and a header containing a unified calling interface and metadata about the music.&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
&lt;br /&gt;
* [ftp://ftp.modland.com/pub/documents/format_documentation/Atari%20SoundHeader%20(.sndh).txt SNDH file structure, Revision 2.00]&lt;br /&gt;
* [http://sndh.atari.org/fileformat.php SNDH file structure, Revision 2.10]&lt;br /&gt;
&lt;br /&gt;
Note that SNDH files are often compressed with [[Pack-Ice]].&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
&lt;br /&gt;
=== Conversion ===&lt;br /&gt;
&lt;br /&gt;
* [http://sndh.atari.org/files/sndhconv.zip SNDHconv] ([[Xlr8 module|Xlr8]], [[Sid Sound Designer module|Sid Sound Designer]], [[Music Mon module|Music Mon]], [[Triplex module|Triplex]] and [[Trisound module|Trisound]] to [[Atari SoundHeader|SNDH]] - [[ZIP]] file, Atari ST/TT/Falcon)&lt;br /&gt;
* [http://files.dhs.nu/files_msx/qua2sndh.zip Quartet-2-SNDH] ([[Quartet]] to [[Atari SoundHeader|SNDH]] - [[ZIP]] file, Atari ST/TT/Falcon)&lt;br /&gt;
&lt;br /&gt;
=== Editing ===&lt;br /&gt;
&lt;br /&gt;
* [http://sndh.atari.org/files/sndh111.zip SNDH-Editor] ([[ZIP]] file, Atari ST/TT/Falcon)&lt;br /&gt;
&lt;br /&gt;
=== Playback ===&lt;br /&gt;
&lt;br /&gt;
* [http://mahen.free.fr/plugins/index-en.htm AmiNetRadio] (Amiga MorphOS)&lt;br /&gt;
* [http://www.bannister.org/software/ao.htm Audio Overload] (cross-platform)&lt;br /&gt;
* [http://www.exotica.org.uk/wiki/DeliPlayer DeliPlayer] (Windows)&lt;br /&gt;
* [http://yescrew.atari.org/eng/products.htm#gemplay GemPLAY] (Atari ST/TT/Falcon)&lt;br /&gt;
* [http://creamhq.de/jam.php Jam] (Atari ST/TT/Falcon &amp;amp; Windows)&lt;br /&gt;
* [http://sndh.atari.org/files/krap14.zip KrapSNDH] ([[ZIP]] file, Atari ST/TT/Falcon)&lt;br /&gt;
* [http://bulba.untergrund.net/ayplayer_e.htm MicroST] (Windows)&lt;br /&gt;
* [http://sc68.atari.org/ SC68] (UNIX / Windows)&lt;br /&gt;
* [http://mahen.free.fr/sc68/ sc68mui] (Amiga MorphOS)&lt;br /&gt;
* [https://itunes.apple.com/app/sc68-player/id295290413?mt=8 SC68 Player] (iPhone / iPod Touch)&lt;br /&gt;
* [http://sndplayer.atari.org/ SND Player] (Atari ST/TT/Falcon)&lt;br /&gt;
* [http://www.preromanbritain.com/stj/ STj] (Atari ST/TT/Falcon)&lt;br /&gt;
* [http://www.nocrew.org/software-stsndplay.html STsndplay] (UNIX)&lt;br /&gt;
* [http://xsc.atari.org/ XSC] (Mac OS X)&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [http://sndh.atari.org/ Atari ST YM2149 Archive]&lt;br /&gt;
* https://ftp.modland.com/pub/modules/SNDH/&lt;br /&gt;
* {{DexvertSamples|music/sndh}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Atari computers]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Scream_Tracker_3_module</id>
		<title>Scream Tracker 3 module</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Scream_Tracker_3_module"/>
				<updated>2023-12-28T05:15:55Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Audio and Music&lt;br /&gt;
|extensions={{ext|s3m}}&lt;br /&gt;
|pronom={{PRONOM|fmt/718}}&lt;br /&gt;
|wikidata={{wikidata|Q1461901}}&lt;br /&gt;
|kaitai struct=s3m&lt;br /&gt;
}}&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
'''.s3m''' (Scream Tracker 3 Module) files are modules created by Scream Tracker v3.0 and up. It was developed for DOS by Finnish demo group Future Crew.&lt;br /&gt;
&lt;br /&gt;
Scream Tracker 3 modules support up to 100 8-bit samples, 32 channels, 100 patterns and 256 order positions. FM instruments can also be specified, although not all implementations support this feature.&lt;br /&gt;
&lt;br /&gt;
Versions of Scream Tracker prior to v3.0 created [[Scream Tracker 1 &amp;amp; 2 module|STM]] modules.&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
&lt;br /&gt;
* [http://hackipedia.org/File%20formats/Music/Sample%20based/html/s3mformat.html S3M Specifications]&lt;br /&gt;
* [http://wiki.multimedia.cx/index.php?title=Scream_Tracker_3_Module MultimediaWiki - Scream Tracker 3 Module]&lt;br /&gt;
* [http://hackipedia.org/File%20formats/Music/Sample%20based/text/Scream%20Tracker%203.01%20BETA%20File%20Formats%20And%20Mixing%20Info.ascii.txt.utf-8.txt ScreamTracker 3.01 BETA File Formats and Mixing Info]&lt;br /&gt;
* [http://hackipedia.org/File%20formats/Music/Sample%20based/text/Scream%20Tracker%203.20%20file%20format.cp437.txt.utf-8.txt Scream Tracker 3.20 File Formats And Mixing Info]&lt;br /&gt;
* [http://www.textfiles.com/programming/FORMATS/s3m-form.txt Another copy of this file]&lt;br /&gt;
* [http://www.textfiles.com/programming/FORMATS/stracker.pro Still another version]&lt;br /&gt;
* [http://16-bits.org/s3m/ The above, with some additional notes / corrections]&lt;br /&gt;
* [ftp://ftp.modland.com/pub/documents/format_documentation/FireLight%20S3M%20Player%20Tutorial.txt S3M Player Tutorial by FireLight] - step-by-step guide to writing an S3M player. The [ftp://ftp.modland.com/pub/documents/format_documentation/FireLight%20MOD%20Player%20Tutorial.txt MOD Player Tutorial] should be read prior to this.&lt;br /&gt;
* [http://www.textfiles.com/programming/FORMATS/admusfmt.pro 1994 discussion of &amp;quot;advanced music formats&amp;quot; that covers Scream Tracker 3.0]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
&lt;br /&gt;
=== Scream Tracker ===&lt;br /&gt;
* [ftp://ftp.modland.com/pub/software/trackers/DOS/Scream%20Tracker%203/ ScreamTracker v3.01 beta, v3.03 beta, v3.20 and v3.21]&lt;br /&gt;
* [http://www.scene.org/file.php?file=%2Fdemos%2Fgroups%2Ffuture_crew%2Fother%2Fscrmt321.zip&amp;amp;fileinfo Scream Tracker v3.21]&lt;br /&gt;
&lt;br /&gt;
=== Playback ===&lt;br /&gt;
* [http://mikmod.shlomifish.org/ MikMod] - Linux&lt;br /&gt;
* [http://xmp.sourceforge.net/ Extended Module Player]&lt;br /&gt;
* [https://zxtune.bitbucket.io/ zxtune]&lt;br /&gt;
&lt;br /&gt;
=== Other ===&lt;br /&gt;
* [http://www.modplug.com/trackerinfo.html MODPlug Tracker] allows you to compose and convert in a number of module formats, including S3M&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|music/s3m}}&lt;br /&gt;
* [ftp://ftp.modland.com/pub/modules/Screamtracker%203/ Example .s3m files]&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[Scream Tracker 1 &amp;amp; 2 module]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/OctaMED_module_(MED)</id>
		<title>OctaMED module (MED)</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/OctaMED_module_(MED)"/>
				<updated>2023-12-28T05:15:55Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Audio and Music&lt;br /&gt;
|released=1989&lt;br /&gt;
|extensions={{ext|med}}&lt;br /&gt;
}}&lt;br /&gt;
'''OctaMED''', by Teijo Kinnunen (originally just '''MED'''), is a &amp;lt;u&amp;gt;m&amp;lt;/u&amp;gt;usic &amp;lt;u&amp;gt;ed&amp;lt;/u&amp;gt;itor for the Amiga. It used both &amp;quot;standard&amp;quot; notes and &amp;quot;tracker&amp;quot;-style notations. Songs had up to 100 blocks of up to 256 lines. There could be up to 99 songs in memory, sharing 63 instruments.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
There are a number of sub formats that are referred to generically as &amp;quot;MED&amp;quot; files.&lt;br /&gt;
&lt;br /&gt;
* MED - MED version 1.0 to 2.0 &amp;quot;Song and Samples&amp;quot; file&lt;br /&gt;
** MED2 - MED version 1.12&lt;br /&gt;
** MED3 - MED version 2.00&lt;br /&gt;
** [[OctaMED v2.10 module (MED4)|MED4 - MED version 2.10]]&lt;br /&gt;
* MMD - &amp;quot;Med MoDule&amp;quot; files used by MED version 2.1 and above, and OctaMED Professional.&lt;br /&gt;
** MMD0 - MED version 2.1 &amp;quot;Med MoDule 0&amp;quot; file&lt;br /&gt;
** MMD1 - OctaMED Professional file&lt;br /&gt;
** MMD2 - OctaMED Professional V5 file&lt;br /&gt;
&lt;br /&gt;
The OctaMED Professional package includes details of many of these file formats in the &amp;quot;Programmers&amp;quot; directory&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://xmp.sourceforge.net/ Extended Module Player]&lt;br /&gt;
* [https://zxtune.bitbucket.io/ zxtune]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [http://cd.textfiles.com/aggames/COMMERCIAL%20DEMOS/SKID/GFX/SKIDMARKS.MED SKIDMARKS.MED, MMD1]&lt;br /&gt;
* {{DexvertSamples|music/med}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://www.textfiles.com/programming/FORMATS/med-efx.txt Description and instructions]&lt;br /&gt;
* [http://www.textfiles.com/programming/FORMATS/med-form.txt Info on file formats]&lt;br /&gt;
&lt;br /&gt;
[[Category:Amiga]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Extended_Module</id>
		<title>Extended Module</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Extended_Module"/>
				<updated>2023-12-28T05:15:50Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Audio and Music&lt;br /&gt;
|extensions={{ext|xm}}&lt;br /&gt;
|pronom={{PRONOM|fmt/323}}&lt;br /&gt;
|kaitai struct=fasttracker_xm_module&lt;br /&gt;
|wikidata={{wikidata|Q376852}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
:''Not to be confused with the Sirius XM satellite radio service, with which it has nothing to do.''&lt;br /&gt;
&lt;br /&gt;
'''XM''' (extended module) is an audio format introduced by (and primarily produced by) FastTracker 2, a now defunct tracker for [[MS-DOS]]. The format is also used by other trackers, such as [[DigiTracker]] and [[MilkyTracker]].&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
&lt;br /&gt;
The tracker which produced the file can be identified by means of the 20-byte string at offset 38 (0x26):&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center; width:200px; height:200px;&amp;quot;&lt;br /&gt;
|+ Tracker / Identifying string&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
! String&lt;br /&gt;
|-&lt;br /&gt;
! DigiTracker&lt;br /&gt;
| Composer's name&lt;br /&gt;
|-&lt;br /&gt;
! FastTracker 2&lt;br /&gt;
| &amp;quot;FastTracker II&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! OpenMPT&lt;br /&gt;
| &amp;quot;OpenMPT &amp;quot; and then the version number&lt;br /&gt;
|-&lt;br /&gt;
! AmigaMML&lt;br /&gt;
| By default, &amp;quot;AmigaMML &amp;quot; and the version number; can be changed&lt;br /&gt;
|-&lt;br /&gt;
! MilkyTracker&lt;br /&gt;
| &amp;quot;MilkyTracker        &amp;quot; (with 8 padding spaces)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* [https://pastebin.com/F5S0Nbn9 Original file format documentation by Mr.H of Triton (1994), included with the FT2 distribution as &amp;quot;Xm.txt&amp;quot;]&lt;br /&gt;
* [http://16-bits.org/xm/ The above, with a number of corrections and additions] (link seems to be dead?)&lt;br /&gt;
* [https://ftp.modland.com/pub/documents/format_documentation/FastTracker%202%20(.xm)%20%232.txt Errors in the XM format documentation]&lt;br /&gt;
* [https://ftp.modland.com/pub/documents/format_documentation/FastTracker%202%20v2.04%20%28.xm%29.html Mr.H documentation with corrections by Guru and Alfred of Sahara Surfers (1995)] ([https://pastebin.com/FP8XXgVu pastebin mirror])&lt;br /&gt;
* [http://zzo38computer.org/textfile/music/xm-form.txt Further corrected version of the above] ([https://pastebin.com/pEi8Ehzd pastebin mirror])&lt;br /&gt;
* [http://jss.sourceforge.net/moddoc/xm-form.txt A more complete file format documentation, by ccr@tnsp (2001)] ([https://pastebin.com/rFWAhEEr pastebin mirror])&lt;br /&gt;
* [https://www.celersms.com/doc/XM_file_format.pdf &amp;quot;The Unofficial XM File Format Specification&amp;quot;], ''Vladimir Kameñar'', 2007&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
&lt;br /&gt;
* [https://ftp.modland.com/pub/software/trackers/DOS/FastTracker%202/ FastTracker 2]&lt;br /&gt;
* [https://archive.org/details/msdos_Fast_Tracker_2_1994 FastTracker 2 in-browser emulation]&lt;br /&gt;
* [http://xmp.sourceforge.net/ Extended Module Player]&lt;br /&gt;
* [http://zzo38computer.org/prog/amigamml.zip AmigaMML]&lt;br /&gt;
* [https://ufmod.sourceforge.io/ uFMOD]&lt;br /&gt;
* [https://zxtune.bitbucket.io/ zxtune]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|music/xm}}&lt;br /&gt;
* [ftp://ftp.modland.com/pub/modules/Fasttracker%202/ Example .xm files]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://www.textfiles.com/programming/FORMATS/xmformat.mus Format info]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/XMS-Tracker_module</id>
		<title>XMS-Tracker module</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/XMS-Tracker_module"/>
				<updated>2023-12-28T05:15:50Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Audio and Music&lt;br /&gt;
|extensions={{ext|xms}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
'''.xms''' files are produced by XMS-Tracker. The format appears to be similar to [[AMusic module|AMD]] modules produced by AMusic. The [http://adlib.wave460.net/trackers.html Malfunction's FM Synthesis Heaven] site notes that XMS-Tracker looks like &amp;quot;unfinished, cracked Amusic&amp;quot; and the format documentation on the [ftp://ftp.modland.com/ Modland FTP] is labeled &amp;quot;AMusic ripp-off (.xms).txt&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
* [https://ftp.modland.com/pub/documents/format_documentation/AMusic%20ripp-off%20(.xms).txt XMS Format FAQ]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [https://ftp.modland.com/pub/software/trackers/DOS/XMS%20Tracker/ XMS-Tracker]&lt;br /&gt;
* [http://adplug.github.io/ AdPlug / AdPlay]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [https://ftp.modland.com/pub/modules/Ad%20Lib/AMusic%20XMS/ Example .xms files]&lt;br /&gt;
* {{DexvertSamples|music/amusicTrackerXMS}}&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Composer_669_module</id>
		<title>Composer 669 module</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Composer_669_module"/>
				<updated>2023-12-28T05:15:48Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Audio and Music&lt;br /&gt;
|extensions={{ext|669}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
'''.669''' files are modules created by Composer 669 / Unis 669.&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
* [http://hackipedia.org/File%20formats/Music/Sample%20based/text/669%20Mod%20Composer%2c%20Composd%20669%20module%20format.ascii.txt.utf-8.txt 669 Specification] (.txt file)&lt;br /&gt;
* [ftp://ftp.modland.com/pub/documents/format_documentation/Composer%20669%20(.669).txt Composer 669 module]&lt;br /&gt;
* [ftp://ftp.modland.com/pub/documents/format_documentation/Composer%20669,%20Unis%20669%20(.669).txt 669 and Extended 669 file format] (or [http://www.textfiles.com/programming/FORMATS/669-form.pro same file at textfiles.com])&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [ftp://ftp.modland.com/pub/software/trackers/DOS/Composer%20669/ Composer 669]&lt;br /&gt;
* [ftp://ftp.modland.com/pub/software/trackers/DOS/Unis669/ Unis669]&lt;br /&gt;
* [[XMP]]&lt;br /&gt;
* [https://zxtune.bitbucket.io/ zxtune]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [ftp://ftp.modland.com/pub/modules/Composer%20669/ Example .669 files (Composer 669)]&lt;br /&gt;
* [ftp://ftp.modland.com/pub/modules/Unis%20669/ Example .669 files (Unis 669)]&lt;br /&gt;
* {{DexvertSamples|music/composer669}}&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/WebM</id>
		<title>WebM</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/WebM"/>
				<updated>2023-12-28T05:15:44Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Video&lt;br /&gt;
|extensions={{ext|webm}}&lt;br /&gt;
|mimetypes={{mimetype|video/webm}}, {{mimetype|audio/webm}}&lt;br /&gt;
|pronom={{PRONOM|fmt/573}}&lt;br /&gt;
|wikidata={{wikidata|Q309440}}&lt;br /&gt;
|locfdd={{LoCFDD|fdd000518}}&lt;br /&gt;
}}&lt;br /&gt;
'''WebM''' is a video and audio container format released by Google, used with content encoded under the [[VP8]] or [[VP9]] codecs for video, and [[Vorbis]] and [[Opus]] for audio. It is a variant of [[Matroska]], based on [[EBML]].&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
A WebM file begins with {{magic|0x1a 0x45 0xdf 0xa3}}, as do all [[EBML]] files.&lt;br /&gt;
&lt;br /&gt;
It contains an EMBL &amp;quot;DocType&amp;quot; element whose value is the string &amp;quot;webm&amp;quot;. This means that the byte sequence {{magic|0x42 0x82 0x84 'w' 'e' 'b' 'm'}} will appear in the file, normally near the beginning.&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [https://webm.html5.org/test.webm Test video]&lt;br /&gt;
* {{DexvertSamples|video/webmVideo}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:WebM|Wikipedia article]]&lt;br /&gt;
* [https://www.webmproject.org/ The WebM Project]&lt;br /&gt;
* [https://www.webmproject.org/docs/container/ Container Guidelines]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[FFmpeg]]&lt;br /&gt;
* [[Konvertor]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Google]]&lt;br /&gt;
[[Category:Audio and Music]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Embedded_OpenType</id>
		<title>Embedded OpenType</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Embedded_OpenType"/>
				<updated>2023-12-28T05:15:41Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Fonts&lt;br /&gt;
|extensions={{ext|eot}}, {{ext|fntdata}}&lt;br /&gt;
|mimetypes={{mimetype|application/vnd.ms-fontobject}}&lt;br /&gt;
}}&lt;br /&gt;
'''Embedded OpenType''' ('''EOT''') is an outline font format developed by Microsoft. It is intended to be used on web pages. A popular alternative to EOT is [[WOFF]].&lt;br /&gt;
&lt;br /&gt;
EOT is related to [[OpenType]], but is a distinct format.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
The ASCII characters &amp;quot;{{magic|LP}}&amp;quot; appear at file offset 34.&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [https://www.w3.org/Submission/2008/SUBM-EOT-20080305/ Embedded OpenType File Format] (W3C submission, 2008-03-05)&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|font/eot}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia: Embedded OpenType]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Web]]&lt;br /&gt;
[[Category:Microsoft]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/TrueType</id>
		<title>TrueType</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/TrueType"/>
				<updated>2023-12-28T05:15:41Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Fonts&lt;br /&gt;
|extensions={{ext|ttf}}&lt;br /&gt;
|pronom={{PRONOM|x-fmt/453}}&lt;br /&gt;
|kaitai struct=ttf&lt;br /&gt;
|released=1991&lt;br /&gt;
}}&lt;br /&gt;
'''TrueType''' ('''TTF''') is an outline font format developed by Apple. It was first used by Mac OS System 7, and was licensed to Microsoft for use in Windows 3.1.&lt;br /&gt;
&lt;br /&gt;
See also its successor, [[OpenType]].&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [https://developer.apple.com/fonts/TrueType-Reference-Manual/ TrueType Reference Manual]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* http://cd.textfiles.com/maxfonts/TTF/&lt;br /&gt;
* http://cd.textfiles.com/maxx/tothemaxww/FONT_TT/&lt;br /&gt;
* http://cd.textfiles.com/fantaziafonts/ → .../TRUETYPE/*.TTF&lt;br /&gt;
* http://cd.textfiles.com/collectionfw/cdr30/&lt;br /&gt;
* {{DexvertSamples|font/ttf}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:TrueType|Wikipedia article]]&lt;br /&gt;
* [http://www.truetype-typography.com/tthist.htm A History of TrueType]&lt;br /&gt;
&lt;br /&gt;
[[Category:Apple]]&lt;br /&gt;
[[Category:Microsoft]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Microsoft_Write</id>
		<title>Microsoft Write</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Microsoft_Write"/>
				<updated>2023-12-28T05:15:40Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|subcat2=Word Processor&lt;br /&gt;
|extensions={{ext|wri}}&lt;br /&gt;
|pronom={{PRONOM|x-fmt/4}}, {{PRONOM|x-fmt/12}}&lt;br /&gt;
|wikidata={{wikidata|Q60615282}}, {{wikidata|Q27526866}}&lt;br /&gt;
}}&lt;br /&gt;
'''Write''' (also called '''Microsoft Windows Write''', '''Microsoft Write''', '''Windows Write''') is the word processor that came with Microsoft Windows version 1.0 through 3.11, as well as Microsoft Windows NT through version 3.5. All versions were able to read and write '''.wri''' files, and later versions were also able to read and write Microsoft Word [[DOC|.doc]] files. It was replaced with Microsoft WordPad with the advent of Windows 95 (which could read Write format, but couldn't save to it).&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [https://www.libreoffice.org/ LibreOffice] v5.1+&lt;br /&gt;
* [https://sourceforge.net/projects/libwps/ libwps]&lt;br /&gt;
* [http://msxnet.org/word2rtf/ Converting MS Write to RTF] ([https://web.archive.org/web/20170106122225/http://msxnet.org/word2rtf/ copy at archive.org])&lt;br /&gt;
* [https://sourceforge.net/projects/osplus/files/Text%20Editor/ OSPlus Text Editor] - An old open source project with a WRI to [[RTF]] converter (src/convert/txtwrite.c). Likely predecessor of libwps's Write support.&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|document/wri}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://msxnet.org/word2rtf/formats/write.txt File format specification] ([https://web.archive.org/web/20130831064118/http://msxnet.org/word2rtf/formats/write.txt copy at archive.org])&lt;br /&gt;
* [[Wikipedia:Microsoft Write|Wikipedia article]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Microsoft]]&lt;br /&gt;
[[Category:Windows]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/PostScript</id>
		<title>PostScript</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/PostScript"/>
				<updated>2023-12-28T05:15:38Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Document&lt;br /&gt;
|extensions={{ext|ps}}&lt;br /&gt;
|mimetypes={{mimetype|application/postscript}}&lt;br /&gt;
|pronom={{PRONOM|fmt/501}}, others&lt;br /&gt;
|wikidata={{wikidata|Q218170}}&lt;br /&gt;
}}&lt;br /&gt;
'''PostScript''' is a [[Page description languages|page description language]] and document format, used primarily with printers. It is actually a complete programming language, which the printer interprets in order to generate graphics to print.&lt;br /&gt;
&lt;br /&gt;
== Identifiers ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Version&lt;br /&gt;
! PRONOM&lt;br /&gt;
|-&lt;br /&gt;
|1.0   || {{PRONOM|x-fmt/91}}&lt;br /&gt;
|-&lt;br /&gt;
|2.0   || {{PRONOM|x-fmt/406}}&lt;br /&gt;
|-&lt;br /&gt;
|2.1   || {{PRONOM|x-fmt/407}}&lt;br /&gt;
|-&lt;br /&gt;
|3.0   || {{PRONOM|x-fmt/408}}&lt;br /&gt;
|-&lt;br /&gt;
|3.1   || {{PRONOM|fmt/501}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Encapsulated PostScript]]&lt;br /&gt;
* [[PDF]]&lt;br /&gt;
* [[PostScript binary object format]]&lt;br /&gt;
* [[PostScript font]]&lt;br /&gt;
* [[PostScript Printer Description]]&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [http://www.adobe.com/products/postscript/pdfs/PLRM.pdf PostScript Language Reference, third edition]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://pages.cs.wisc.edu/~ghost/ Ghostscript] - A free PostScript interpreter&lt;br /&gt;
* [http://pages.cs.wisc.edu/~ghost/ Ghostview and GSview] - Viewers based on Ghostscript&lt;br /&gt;
* [[Scribus]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|document/ps}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [[Wikipedia:PostScript|Wikipedia article]]&lt;br /&gt;
* [http://www.textfiles.com/programming/FORMATS/level2.inf PostScript Level 2 Q&amp;amp;A]&lt;br /&gt;
* [http://www.textfiles.com/programming/FORMATS/whatisps.txt What is Postscript? tutorial]&lt;br /&gt;
* [https://computerhistory.org/blog/postscript-a-digital-printing-press/ PostScript history]&lt;br /&gt;
* [https://info.computerhistory.org/aoc-postscript PostScript original source code (registration required)]&lt;br /&gt;
&lt;br /&gt;
[[Category:Page description languages]]&lt;br /&gt;
[[Category:Programming Languages]]&lt;br /&gt;
[[Category:Adobe]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/HLP_(WinHelp)</id>
		<title>HLP (WinHelp)</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/HLP_(WinHelp)"/>
				<updated>2023-12-28T05:15:35Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Help files&lt;br /&gt;
|extensions={{ext|hlp}}&lt;br /&gt;
|pronom={{PRONOM|fmt/474}}&lt;br /&gt;
}}&lt;br /&gt;
:''&amp;quot;HLP&amp;quot; redirects here. For other HLP formats, see [[:Category:File formats with extension .hlp]], or [[Help files]].''&lt;br /&gt;
&lt;br /&gt;
'''WinHelp''' is a help file format based on [[RTF]] created by Microsoft that exists in several versions and was used in Windows 3.0 up to Windows 95 and NT. Starting with Windows Vista, the format can not be opened without additional software downloads. The format was abandoned to encourage use of the newer [[CHM]] (compiled HTML) help format.&lt;br /&gt;
&lt;br /&gt;
There are also [[WinHelp annotation]] (.ann) files with annotations of help topics.&lt;br /&gt;
&lt;br /&gt;
==Identification==&lt;br /&gt;
Files start with hex {{magic|3F 5F 03 00}}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[CHM]]&lt;br /&gt;
* [[Multimedia Viewer Book]] (MVB)&lt;br /&gt;
* [[Segmented Hypergraphics]]&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [https://sourceforge.net/projects/helpdeco/ helpdeco] → helpfile.txt has information based on reverse-engineering.&lt;br /&gt;
** [https://www.oocities.org/mwinterhoff/helpfile.htm Windows Help File Format ...]&lt;br /&gt;
** [https://geocities.ws/mwinterhoff/helpfile.htm Windows Help File Format ...]&lt;br /&gt;
* [http://delphi-kb.blogspot.com/2010/07/detailed-description-of-winhelp-file.html A detailed description of the WinHelp file format]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
&lt;br /&gt;
* [https://sourceforge.net/projects/helpdeco/ helpdeco] - Decompiler for WinHelp files&lt;br /&gt;
* [https://www.winehq.org/ Wine] - Includes a WinHelp viewer, with source code&lt;br /&gt;
* [https://github.com/rel-eng/QWinHelp QWinHelp] (untested)&lt;br /&gt;
* [https://web.archive.org/web/20190309094436/https://www.microsoft.com/en-us/download/details.aspx?id=91 Microsoft's WinHlp32.exe for Windows 7]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* HLP files may be found in collections of old Windows software; e.g. [{{CdTextfilesURL|hotgames/PROGRAMS/}}], [{{CdTextfilesURL|40bestwin95/PROGRAMS/}}], [{{CdTextfilesURL|49games/49GAMES/}}], [{{CdTextfilesURL|sbup/}}], [{{CdTextfilesURL|ultimatews/WIN/}}]&lt;br /&gt;
* {{DexvertSamples|document/hlp}}&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
* [[Wikipedia:WinHelp|Wikipedia article]]&lt;br /&gt;
* [http://www.help-info.de/en/home.htm Resource page for Windows help formats]&lt;br /&gt;
* [http://www.help-info.de/en/Help_Info_WinHelp/hw.htm Subpage on the site linked above with a list of links to software and information about the WinHelp format]&lt;br /&gt;
&lt;br /&gt;
[[Category:Microsoft]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:Hypermedia]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/OpenXPS</id>
		<title>OpenXPS</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/OpenXPS"/>
				<updated>2023-12-28T05:15:34Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Page description languages&lt;br /&gt;
|extensions={{ext|oxps}}, {{ext|xps}}&lt;br /&gt;
|mimetypes={{mimetype|application/oxps}}, {{mimetype|application/vnd.ms-xpsdocument}}&lt;br /&gt;
|pronom={{PRONOM|fmt/657}}&lt;br /&gt;
|released=2006&lt;br /&gt;
}}&lt;br /&gt;
'''OpenXPS''' ('''Open XML Paper Specification''') is a page description language and document format. It was originally developed by Microsoft and named '''XPS'''.&lt;br /&gt;
&lt;br /&gt;
It is based on [[XAML]], which is based on [[XML]]. It uses [[ZIP]] as a container format.&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [http://www.ecma-international.org/publications/standards/Ecma-388.htm ECMA-388]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [https://www.dan.info/sampledata/msword/testing.xps Sample file saved from Windows Word 2007]&lt;br /&gt;
* {{DexvertSamples|document/xps}}&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [https://wiki.gnome.org/action/show/Projects/libgxps libgxps] - GNOME library for reading OpenXPS files&lt;br /&gt;
* [http://snisurset.net/code/abydos/ abydos]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Open XML Paper Specification|Wikipedia article]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Document]]&lt;br /&gt;
[[Category:Microsoft]]&lt;br /&gt;
[[Category:ZIP based file formats]]&lt;br /&gt;
[[Category:XML based file formats]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Encapsulated_PostScript</id>
		<title>Encapsulated PostScript</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Encapsulated_PostScript"/>
				<updated>2023-12-28T05:15:31Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|eps}}, {{ext|epsf}}, {{ext|epsi}}, {{ext|epi}}, {{ext|ept}}&lt;br /&gt;
|pronom={{PRONOM|fmt/122}}, {{PRONOM|fmt/123}}, {{PRONOM|fmt/124}}&lt;br /&gt;
}}&lt;br /&gt;
[[Encapsulated PostScript]] ('''EPS''') is a format based on [[PostScript]], designed to be more like an image format than a page description language.&lt;br /&gt;
&lt;br /&gt;
== Formats ==&lt;br /&gt;
An EPS file may contain a &amp;quot;preview&amp;quot; version of the image, intended to be used, for example, by document editors when displaying the image on the screen. This has a surprisingly large effect on the format. The varieties of EPS are best categorized based on the type of preview image.&lt;br /&gt;
&lt;br /&gt;
Also, be aware that some image viewers may display only the preview image, instead of the full-quality main image.&lt;br /&gt;
&lt;br /&gt;
=== No preview ===&lt;br /&gt;
We'll call an EPS file with no preview image a &amp;quot;plain EPS&amp;quot; file, to distinguish it from the other EPS varieties.&lt;br /&gt;
&lt;br /&gt;
Plain EPS is a subformat of PostScript. It is a plain text file.&lt;br /&gt;
&lt;br /&gt;
=== EPSI ===&lt;br /&gt;
'''EPSI''' (Encapsulated PostScript Interchange) is the same as plain EPS, except that it has a preview image inside it. The preview uses a simple raster image format. EPSI format can be identified by the presence of a line beginning with &amp;quot;&amp;lt;code&amp;gt;%%BeginPreview&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== PICT preview ===&lt;br /&gt;
This variety is only relevant to the Macintosh platform. It contains a [[PICT]] file in the [[Resource Fork]], and a plain EPS file in the data fork.&lt;br /&gt;
&lt;br /&gt;
=== TIFF/WMF preview ===&lt;br /&gt;
This is a wrapper format containing an embedded [[TIFF]] or [[Windows Metafile|WMF]] file, and an embedded plain EPS file. It is sometimes called '''DOS EPS Binary'''. It begins with a 30-byte or a 32-byte binary header. In most cases then the EPS text comes and finally the preview image. For the variant with the TIFF preview image sometimes the file extension &amp;lt;code&amp;gt;ept&amp;lt;/code&amp;gt; is used.&lt;br /&gt;
 &lt;br /&gt;
== Identification ==&lt;br /&gt;
Files with a TIFF or WMF preview image begin with signature bytes &amp;lt;code&amp;gt;C5 D0 D3 C6&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
All other EPS formats begin with ASCII text &amp;quot;&amp;lt;code&amp;gt;%!PS-Adobe-x.x EPSF-x.x&amp;lt;/code&amp;gt;&amp;quot; (where each &amp;lt;code&amp;gt;x&amp;lt;/code&amp;gt; is a single digit).&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [https://web.archive.org/web/19970704051627/http://www3.adobe.com/supportservice/devrelations/PDFS/TN/5002.EPSF_Spec_v3.0.pdf Encapsulated PostScript Version 3.0]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://pages.cs.wisc.edu/~ghost/ Ghostscript]: A free PostScript interpreter&lt;br /&gt;
* [http://pages.cs.wisc.edu/~ghost/ Ghostview and GSview]: Viewers based on Ghostscript&lt;br /&gt;
* [[ImageMagick]] (requires Ghostscript)&lt;br /&gt;
* [[XnView]] (requires Ghostscript)&lt;br /&gt;
* [http://epsviewer.org/ EPS Viewer]&lt;br /&gt;
* CorelDRAW&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* http://aminet.net/pix/eps&lt;br /&gt;
* http://cd.textfiles.com/dtpfmwaves/&lt;br /&gt;
* https://example-files.online-convert.com/vector%20image/eps/example.eps&lt;br /&gt;
* http://file.fyicenter.com/b/sample.eps&lt;br /&gt;
* {{DexvertSamples|image/eps}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* ''Die PostScript- Acrobat-Bibel'' by Thomas Merz, 1996, ISBN 3-9804943-0-6&lt;br /&gt;
* [http://www.file-extensions.org/ept-file-extension Information about '.ept' on File-Extensions.org]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Encapsulated PostScript|Wikipedia article]]&lt;br /&gt;
* {{EGFF|eps|Encapsulated PostScript File Format Summary}}, from the [[Encyclopedia of Graphics File Formats]]&lt;br /&gt;
* [https://www.fireeye.com/blog/threat-research/2015/12/the_eps_awakens.html FireEye blog post about vulnerability in Microsoft's EPS implementation in 2015] (and [https://www.fireeye.com/blog/threat-research/2015/12/the-eps-awakens-part-two.html part 2])&lt;br /&gt;
* [{{ForensicsWikiURL|encapsulated_postscript_%28eps%29}} ForensicsWiki entry] (all information already copied over)&lt;br /&gt;
* [https://support.apple.com/en-us/HT213250 Apple dropping support in MacOS Ventura]&lt;br /&gt;
&lt;br /&gt;
[[Category:Adobe]]&lt;br /&gt;
[[Category:TIFF]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/DirectDraw_Surface</id>
		<title>DirectDraw Surface</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/DirectDraw_Surface"/>
				<updated>2023-12-28T05:15:29Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|dds}}&lt;br /&gt;
|released=~1999&lt;br /&gt;
|pronom={{PRONOM|fmt/1040}}&lt;br /&gt;
}}&lt;br /&gt;
:''DDS redirects here. For the tape format, see [[Digital Data Storage]].''&lt;br /&gt;
&lt;br /&gt;
'''DirectDraw Surface''' ('''DDS''') is an image file format developed by Microsoft. It is associated with DirectX and related APIs. Some video game graphics use this format. Images may be uncompressed, or use one of several compression algorithms.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
DDS files begin with ASCII characters &amp;quot;&amp;lt;code&amp;gt;DDS &amp;lt;/code&amp;gt;&amp;quot; (hex &amp;lt;code&amp;gt;44 44 53 20&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* Microsoft's [http://msdn.microsoft.com/en-us/library/windows/desktop/bb943992%28v=vs.85%29.aspx Reference for DDS]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[ImageMagick]] (read support starting with v6.3.9-2; write support starting with v6.8.6-10)&lt;br /&gt;
* [http://code.google.com/p/gimp-dds/ DDS Plugin for GIMP]&lt;br /&gt;
* [https://developer.nvidia.com/content/dds-utilities-83111271645 NVIDIA DDS Utilities]&lt;br /&gt;
* [http://www.getpaint.net/ Paint.NET]&lt;br /&gt;
* [[Tom's Viewer]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [http://code.google.com/p/tombexcavator/source/browse/#svn%2Ftrunk%2Fdata%2FDDS tombexcavator samples]&lt;br /&gt;
* {{DexvertSamples|image/dds}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:DirectDraw Surface|Wikipedia article]]&lt;br /&gt;
* [http://msdn.microsoft.com/en-us/library/windows/desktop/bb943990%28v=vs.85%29.aspx Microsoft's DDS page]&lt;br /&gt;
&lt;br /&gt;
[[Category:Microsoft]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Xar_(vector_graphics)</id>
		<title>Xar (vector graphics)</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Xar_(vector_graphics)"/>
				<updated>2023-12-28T05:15:27Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|xar}}, {{ext|web}}&lt;br /&gt;
|mimetypes={{mimetype|application/vnd.xara}}&lt;br /&gt;
|pronom={{PRONOM|fmt/922}}&lt;br /&gt;
|released=1997&lt;br /&gt;
}}&lt;br /&gt;
'''Xar''' is a vector graphics file format developed by Xara as an open standard, and used by some of their products such as ''Xara X'' (now named ''Xara Photo &amp;amp; Graphic Designer''). It was originally named '''Flare'''. It is also known by a number of other names containing the word '''Xara'''.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Files begin with bytes &amp;lt;code&amp;gt;'X' 'A' 'R' 'A' 0xA3 0xA3 0x0D 0x0A&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [http://site.xara.com/support/docs/webformat/spec/ Xara Specifications] → [http://site.xara.com/support/docs/webformat/spec/XARFormatDocument.pdf Xar Format Specification]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://site.xara.com/support/docs/webformat/spec/ Xara Specifications] → [http://site.xara.com/support/docs/webformat/spec/XarLib.zip XarLib]&lt;br /&gt;
* [[Scribus]]&lt;br /&gt;
* [[XnView]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|image/xara}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Xara Flare|Wikipedia: Xara Flare]]&lt;br /&gt;
* [[Wikipedia:Xara Photo &amp;amp; Graphic Designer|Wikipedia: Xara Photo &amp;amp; Graphic Designer]]&lt;br /&gt;
* [http://www.xara.com/us/ Xara website]&lt;br /&gt;
&lt;br /&gt;
[[Category:Corel]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Windows_Metafile</id>
		<title>Windows Metafile</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Windows_Metafile"/>
				<updated>2023-12-28T05:15:26Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|wmf}}, {{ext|wmz}}, {{ext|apm}}&lt;br /&gt;
|mimetypes={{mimetype|image/wmf}}&lt;br /&gt;
|pronom={{PRONOM|x-fmt/119}}&lt;br /&gt;
|kaitai struct=wmf&lt;br /&gt;
|released=1990&lt;br /&gt;
|wikidata={{wikidata|Q1072083}}&lt;br /&gt;
}}&lt;br /&gt;
:''Not to be confused with [[Windows Media Metafile]].''&lt;br /&gt;
:''For EMF, see [[Enhanced Metafile]].''&lt;br /&gt;
&lt;br /&gt;
'''Windows Metafile''' ('''WMF''') is a vector graphics format native to Microsoft Windows 3.x. It stores a list of commands which, when executed, generate an image.&lt;br /&gt;
&lt;br /&gt;
The term ''Windows Metafile'' usually refers specifically to WMF format, though it can also be an umbrella term that includes the successor format, [[Enhanced Metafile]] (EMF).&lt;br /&gt;
&lt;br /&gt;
The '''.wmz''' extension reportedly indicates a [[ZIP]]-compressed WMF file, but the only .wmz files we've seen are actually [[gzip]]-compressed.&lt;br /&gt;
&lt;br /&gt;
Most WMF files begin with a 22-byte &amp;quot;Aldus Placeable Metafile&amp;quot; header, which supplies suggested placement and scaling information. Some (mainly older) WMF files lack this header.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
WMF data (usually?) begins with the byte sequence {{magic|01 00 09 00}} or {{magic|02 00 09 00}}. This sequence may appear at the beginning of a WMF file, but it is usually at offset 22, and the file begins with the Aldus Placeable Metafile signature of {{magic|D7 CD C6 9A}}.&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [https://msdn.microsoft.com/en-us/library/cc250370.aspx &amp;amp;#x5b;MS-WMF&amp;amp;#x5d;: Windows Metafile Format] - Current version&lt;br /&gt;
* [https://www.loc.gov/preservation/digital/formats/digformatspecs/WindowsMetafileFormat(wmf)Specification.pdf Windows Metafile Format (wmf) Specification] - Unknown version, 2007&lt;br /&gt;
* [http://msdn.microsoft.com/en-us/library/dd145202%28v=VS.85%29.aspx Microsoft Docs: Windows-Format Metafiles]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://inkscape.org/ Inkscape]&lt;br /&gt;
* [[Scribus]]&lt;br /&gt;
* [[Konvertor]]&lt;br /&gt;
* [[XnView]]&lt;br /&gt;
* [[ImageMagick]]&lt;br /&gt;
* [https://sourceforge.net/projects/libuemf/ libUEMF]&lt;br /&gt;
* [http://wvware.sourceforge.net/libwmf.html libwmf]&lt;br /&gt;
* [https://sk1project.net/modules.php?name=Products&amp;amp;product=uniconvertor UniConvertor]&lt;br /&gt;
* [http://snisurset.net/code/abydos/ abydos]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* http://cd.textfiles.com/10000gp2/COLORWMF/&lt;br /&gt;
* http://cd.textfiles.com/cdreview/cdreview66/MULTIM/MEDI8OR/CLIPART/PICTURES/&lt;br /&gt;
* {{DexvertSamples|image/wmf}}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Enhanced Metafile]]&lt;br /&gt;
* [[Segmented Hypergraphics]]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Windows Metafile|Wikipedia article]]&lt;br /&gt;
* {{EGFF|wmf|Microsoft Windows Metafile File Format Summary}}, from the [[Encyclopedia of Graphics File Formats]].&lt;br /&gt;
* [http://support.microsoft.com/kb/66949 Microsoft support: Windows Metafile Functions &amp;amp;amp; Aldus Placeable Metafiles]&lt;br /&gt;
* [http://msdn.microsoft.com/en-us/library/windows/desktop/ms534075%28v=vs.85%29.aspx MSDN: WmfPlaceableFileHeader structure]&lt;br /&gt;
* http://wvware.sourceforge.net/caolan/ora-wmf.html&lt;br /&gt;
&lt;br /&gt;
[[Category:Microsoft]]&lt;br /&gt;
[[Category:Windows]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/PFM_(Portable_Float_Map)</id>
		<title>PFM (Portable Float Map)</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/PFM_(Portable_Float_Map)"/>
				<updated>2023-12-28T05:15:21Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|pfm}}&lt;br /&gt;
}}&lt;br /&gt;
:''&amp;quot;PFM&amp;quot; redirects here. For the font format, see [[Adobe Type 1]].''&lt;br /&gt;
&lt;br /&gt;
'''PFM''' ('''Portable FloatMap''') is the unofficial floating point [[Netpbm formats|Netpbm image format]].&lt;br /&gt;
&lt;br /&gt;
Such a format has been invented multiple times, in incompatible ways. The most standard version of it is probably the one supported by [[Netpbm]], which apparently came from the ''HDR Shop'' graphics software.&lt;br /&gt;
&lt;br /&gt;
See also [[Augmented PFM]].&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Files begin with ASCII characters &amp;quot;&amp;lt;code&amp;gt;PF&amp;lt;/code&amp;gt;&amp;quot; or &amp;quot;&amp;lt;code&amp;gt;Pf&amp;lt;/code&amp;gt;, followed by a whitespace character.&lt;br /&gt;
&lt;br /&gt;
See also [[Augmented PFM#Identification]].&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[Netpbm]]&lt;br /&gt;
* [[ImageMagick]]&lt;br /&gt;
* [[XnView]]&lt;br /&gt;
* [http://snisurset.net/code/abydos/ abydos]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|image/pfm}}&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
* [http://netpbm.sourceforge.net/doc/pfm.html Netpbm: PFM graphic image file format]&lt;br /&gt;
* [http://www.pauldebevec.com/Research/HDR/PFM/ PFM Portable FloatMap Image Format]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/FlashPix</id>
		<title>FlashPix</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/FlashPix"/>
				<updated>2023-12-28T05:15:16Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|fpx}}&lt;br /&gt;
|mimetypes={{mimetype|image/vnd.fpx}}&lt;br /&gt;
|pronom={{PRONOM|x-fmt/56}}&lt;br /&gt;
}}&lt;br /&gt;
'''Kodak FlashPix''' ('''FPX''') is a complex raster image file format intended for use with photographic images. It was developed by Eastman Kodak, in collaboration with Hewlett-Packard, Live Picture, and Microsoft. It is based on [[Microsoft Compound File]] format.&lt;br /&gt;
&lt;br /&gt;
A FlashPix file contains either a single image, or multiple representations of the same image at different resolutions.&lt;br /&gt;
&lt;br /&gt;
The format is tile-oriented. A tile may use [[JPEG]] compression, or be uncompressed. There is also a scheme to efficiently encode tiles whose pixels are all the same color.&lt;br /&gt;
&lt;br /&gt;
== Identifiers ==&lt;br /&gt;
* Macintosh file type: &amp;lt;code&amp;gt;FPix&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Related formats ==&lt;br /&gt;
* The [[Exif]] specification defines a way to store some of the data from a FlashPix file in an Exif-compliant [[JPEG]] file.&lt;br /&gt;
* [[Kodak]] KDC&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [http://graphcomp.com/info/specs/livepicture/fpx.pdf FlashPix Format Specification Version 1.0]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[ImageMagick]]&lt;br /&gt;
* Flashpix OpenSource Toolkit (libfpx): [http://www.imagemagick.org/download/delegates/ ImageMagick delegates] → libfpx-*&lt;br /&gt;
* [[Konvertor]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [https://github.com/ImageMagick/ImageMagick6/tree/master/PerlMagick/t/fpx PerlMagick test files]&lt;br /&gt;
* {{DexvertSamples|image/fpx}}&lt;br /&gt;
* [https://archive.org/details/Live_Pix_Special_Edition_-_Windows95 Live Pix Special Edition - Windows95+] → LIVEPIX.iso → .../*.FPX&lt;br /&gt;
* [https://archive.org/details/LooneyTunesPhotoFun Looney Tunes Photo Fun] → LooneyTunesPhotoFun.iso → Photos/.../*.FPX&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
* [[Wikipedia:FlashPix|Wikipedia article]]&lt;br /&gt;
* [https://exiftool.org/TagNames/FlashPix.html ExifTool FlashPix Tags]&lt;br /&gt;
&lt;br /&gt;
[[Category:Microsoft]]&lt;br /&gt;
[[Category:Hewlett-Packard]]&lt;br /&gt;
[[Category:Microsoft Compound File]]&lt;br /&gt;
[[Category:JPEG]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/KFX_(Atari_graphics_format)</id>
		<title>KFX (Atari graphics format)</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/KFX_(Atari_graphics_format)"/>
				<updated>2023-12-28T05:15:14Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|kfx}}&lt;br /&gt;
}}&lt;br /&gt;
'''KFX''' is a graphics format for the Atari line of computers with unknown origin.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[RECOIL]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|image/kfx}}&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Windows_Animated_Cursor</id>
		<title>Windows Animated Cursor</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Windows_Animated_Cursor"/>
				<updated>2023-12-28T05:15:13Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|ani}}&lt;br /&gt;
|mimetypes={{mimetype|application/x-navi-animation}}&amp;lt;ref&amp;gt;https://reposcope.com/mimetype/application/x-navi-animation&amp;lt;/ref&amp;gt;&lt;br /&gt;
|pronom={{PRONOM|fmt/386}}&lt;br /&gt;
}}&lt;br /&gt;
[[Windows Animated Cursor]] Format ('''ANI''') is an animated image format, mostly used for cursors (mouse pointer graphics) on Microsoft Windows.&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
ANI files use the [[RIFF]] container format. Individual frames can be encoded in [[ICO]] format, [[CUR]] format, or a &amp;quot;raw pixel data&amp;quot; format that does not seem to be fully documented.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Files begin with &amp;lt;code&amp;gt;'R' 'I' 'F' 'F' ?? ?? ?? ?? 'A' 'C' 'O' 'N'&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* {{Deark}}&lt;br /&gt;
* [[XnView]]&lt;br /&gt;
* [https://inkscape.org/ Inkscape]&lt;br /&gt;
* [http://www.irfanview.com/ IrfanView]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* http://cd.textfiles.com/desktopworks/CURSORS/&lt;br /&gt;
* http://www.anicursor.com/diercur.html&lt;br /&gt;
* http://www.angelfire.com/my/plinth/cursors.html&lt;br /&gt;
* {{DexvertSamples|image/ani}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [https://web.archive.org/web/20130530192915/http://oreilly.com/www/centers/gff/formats/micriff GFF Format Summary: Microsoft RIFF] (from archive.org)&lt;br /&gt;
* [[Wikipedia:ANI %28file format%29|Wikipedia article]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:RIFF based file formats]]&lt;br /&gt;
[[Category:Microsoft]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:Video]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Minolta_MRW</id>
		<title>Minolta MRW</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Minolta_MRW"/>
				<updated>2023-12-28T05:15:11Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Cameras and Digital Image Sensors&lt;br /&gt;
|extensions={{ext|mrw}}&lt;br /&gt;
|pronom={{PRONOM|fmt/669}}&lt;br /&gt;
}}&lt;br /&gt;
'''MRW''' ('''Minolta RAW''') is a raw image format used by Minolta (later Konica-Minolta) cameras. After the [[Sony]] purchase, Sony branded SLR use a different format: [[Sony ARW|ARW]].&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Files start with bytes &amp;lt;code&amp;gt;00 4d 52 4d&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Related formats ==&lt;br /&gt;
Though not based on [[TIFF]], MRW files do contain [[Exif]] and [[MakerNote]] data.&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [https://web.archive.org/web/20120724023127/http://www.dalibor.cz/minolta/raw_file_format.htm Dalibor Jelinek's documentation] (from archive.org)&lt;br /&gt;
* [https://web.archive.org/web/20060313201319/http://www.chauveau-central.net/mrw-format/mrw-format.txt Stephane Chauveau documentation] (from archive.org)&lt;br /&gt;
* [https://web.archive.org/web/20090214101740/http://crousseau.free.fr/imgfmt_raw.htm Cedric Rousseau documentation] from one of the developers of DxO (from archive.org)&lt;br /&gt;
* [https://exiftool.org/TagNames/Minolta.html ExifTool: Minolta Tags]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* See also [[Cameras and Digital Image Sensors#Software|Cameras and Digital Image Sensors: Software]]&lt;br /&gt;
* [http://www.focalplane.net/imagecooker/ ImageCooker]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [http://www.rawsamples.ch/index.php/en/minolta RAW-Samples: Minolta]&lt;br /&gt;
* http://digikam3rdparty.free.fr/TEST_IMAGES/ → [http://digikam3rdparty.free.fr/TEST_IMAGES/RAW/HORIZONTAL/ RAW/HORIZONTAL/], [http://digikam3rdparty.free.fr/TEST_IMAGES/RAW/VERTICAL/ RAW/VERTICAL/], [http://digikam3rdparty.free.fr/TEST_IMAGES/NOISE/ NOISE/], [http://digikam3rdparty.free.fr/TEST_IMAGES/METADATA/digiKam/ METADATA/digiKam/], [http://digikam3rdparty.free.fr/TEST_IMAGES/TestRotation/ TestRotation/]&lt;br /&gt;
* {{DexvertSamples|image/mrw}}&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/DUO</id>
		<title>DUO</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/DUO"/>
				<updated>2023-12-28T05:15:10Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|du1}} {{ext|du2}} {{ext|duo}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;quot;'''DUO'''&amp;quot; is a set of similar graphics formats for the Atari computers with unknown origin. The original name, if anything, is unknown.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Files are exactly 113600 bytes long.&lt;br /&gt;
&lt;br /&gt;
From [https://web.archive.org/web/20191221202304/http://www.atari-wiki.com/index.php/DUO_file_format the AtariForumWiki page]:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
DUO    *.DU1 *.DUO (low resolution)&lt;br /&gt;
       *.DU2       (medium resolution)&lt;br /&gt;
&lt;br /&gt;
Created by Anders Eriksson: http://ae.dhs.nu/&lt;br /&gt;
These are essentially 2 screens with over-scan interlaced together.&lt;br /&gt;
&lt;br /&gt;
Low resolution files are 416x273 pixels:&lt;br /&gt;
&lt;br /&gt;
16 words       palette&lt;br /&gt;
56784 bytes    screen 1&lt;br /&gt;
56784 bytes    screen 2&lt;br /&gt;
-----------&lt;br /&gt;
113600 bytes   total&lt;br /&gt;
&lt;br /&gt;
Medium resolution files are 832x273 pixels:&lt;br /&gt;
&lt;br /&gt;
4 words        palette&lt;br /&gt;
56784 bytes    screen 1&lt;br /&gt;
56784 bytes    screen 2&lt;br /&gt;
24 bytes       padding if present, otherwise total size is 113576 bytes&lt;br /&gt;
-----------&lt;br /&gt;
113600 bytes   total&lt;br /&gt;
&lt;br /&gt;
Both screens use the same palette, but when viewed the human eye merges the two &lt;br /&gt;
alternating images into one.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[RECOIL]]&lt;br /&gt;
* [http://snisurset.net/code/abydos/ abydos]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|image/duStar}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* https://web.archive.org/web/20191221202304/http://www.atari-wiki.com/index.php/DUO_file_format&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Enhanced_Metafile</id>
		<title>Enhanced Metafile</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Enhanced_Metafile"/>
				<updated>2023-12-28T05:15:09Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|emf}}, {{ext|emz}}&lt;br /&gt;
|mimetypes={{mimetype|image/emf}}&lt;br /&gt;
|pronom={{PRONOM|x-fmt/153}}, {{PRONOM|fmt/344}}, {{PRONOM|fmt/345}}&lt;br /&gt;
|released=1993&lt;br /&gt;
}}&lt;br /&gt;
'''Enhanced Metafile''' ('''EMF''') is a vector graphics format native to 32-bit versions of Microsoft Windows. It is the successor to [[Windows Metafile]] (WMF).&lt;br /&gt;
&lt;br /&gt;
There is an extension of the format, named '''Enhanced Metafile Format Plus Extensions''' ('''EMF+''').&lt;br /&gt;
&lt;br /&gt;
The '''.emz''' filename extension is reportedly used for [[gzip]]-compressed EMF files.&lt;br /&gt;
&lt;br /&gt;
== Format details ==&lt;br /&gt;
Though EMF is very similar in concept to [[Windows Metafile|WMF]], the format itself is quite different, and completely incompatible. It has a different record structure, and different command opcodes.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
EMF files begin with bytes {{magic|01 00 00 00}} (representing record type EMR_HEADER), and have ASCII &amp;quot;&amp;lt;code&amp;gt;&amp;amp;nbsp;EMF&amp;lt;/code&amp;gt;&amp;quot; (with the leading space) at file offset 40.&lt;br /&gt;
&lt;br /&gt;
EMF+ files are EMF files with the following characteristics. Let ''n'' be the 32-bit integer at offset 4. At offset ''n'' is the 32-bit integer 0x00000046 (representing record type EMR_COMMENT). At offset ''n''+12 is the ASCII string &amp;quot;{{magic|EMF+}}&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [http://msdn.microsoft.com/en-us/library/cc230514.aspx Enhanced Metafile Format]&lt;br /&gt;
* [http://msdn.microsoft.com/en-us/library/cc230724.aspx Enhanced Metafile Format Plus Extensions]&lt;br /&gt;
&lt;br /&gt;
== Metaformat files ==&lt;br /&gt;
* {{Synalysis|emf}}&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://inkscape.org/ Inkscape]&lt;br /&gt;
* [[Scribus]]&lt;br /&gt;
* [[Konvertor]]&lt;br /&gt;
* [[XnView]]&lt;br /&gt;
* [https://sourceforge.net/projects/libuemf/ libUEMF]&lt;br /&gt;
* [http://snisurset.net/code/abydos/ abydos]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|image/emf}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia: Windows Metafile#Variants]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Microsoft]]&lt;br /&gt;
[[Category:Windows]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/WebP</id>
		<title>WebP</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/WebP"/>
				<updated>2023-12-28T05:15:08Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|webp}}&lt;br /&gt;
|mimetypes={{mimetype|image/webp}} (unregistered)&lt;br /&gt;
|pronom={{PRONOM|fmt/566}}, {{PRONOM|fmt/567}}, {{PRONOM|fmt/568}}&lt;br /&gt;
|wikidata={{wikidata|Q62617958}}&lt;br /&gt;
|released=2010&lt;br /&gt;
}}&lt;br /&gt;
'''WebP''' is an image file format developed by Google, primarily intended for use on web pages.&lt;br /&gt;
&lt;br /&gt;
It can use either lossy or lossless compression. Its lossy compression is based on portions of the [[VP8]] video compression format.&lt;br /&gt;
&lt;br /&gt;
It uses the [[RIFF]] container format.&lt;br /&gt;
&lt;br /&gt;
See also [[WebP 2]].&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Files begin with bytes {{magic|'R' 'I' 'F' 'F' ?? ?? ?? ?? 'W' 'E' 'B' 'P'}}.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[Konvertor]]&lt;br /&gt;
* libwebp: [https://developers.google.com/speed/webp/download download] · [http://www.webmproject.org/code/#webp-repositories development]&lt;br /&gt;
* [https://www.google.com/chrome/ Google Chrome] can display WebP images&lt;br /&gt;
* [[ImageMagick]]&lt;br /&gt;
* [http://snisurset.net/code/abydos/ abydos]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|image/webp}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [https://developers.google.com/speed/webp/ Google's WebP page]&lt;br /&gt;
* [[Wikipedia:WebP|Wikipedia article]]&lt;br /&gt;
* [http://xooyoozoo.github.io/yolo-octo-bugfixes/ Online demonstrator] - shows quality differences between similarly-sized images in [[JPEG]], [[JP2]], [[WebP]] and [[BPG]] formats&lt;br /&gt;
* [https://medium.com/@duhroach/how-webp-works-lossly-mode-33bd2b1d0670 How WebP works (lossly mode)]&lt;br /&gt;
&lt;br /&gt;
[[Category:RIFF based file formats]]&lt;br /&gt;
[[Category:Google]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/SAM_Coup%C3%A9_Mode_4</id>
		<title>SAM Coupé Mode 4</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/SAM_Coup%C3%A9_Mode_4"/>
				<updated>2023-12-28T05:15:08Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|ss4}} {{ext|scs4}}&lt;br /&gt;
}}&lt;br /&gt;
'''SAM Coupé Mode 4''' is a graphics format for the SAM Coupé computer.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Files are exactly 24617 bytes long&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[RECOIL]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|image/samCoupeMode4}}&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Fractal_Image_Format</id>
		<title>Fractal Image Format</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Fractal_Image_Format"/>
				<updated>2023-12-28T05:15:04Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|fif}}&lt;br /&gt;
|pronom={{PRONOM|x-fmt/320}}&lt;br /&gt;
}}&lt;br /&gt;
'''FIF''' ('''Fractal Image Format''') is a raster image format that uses lossy [[fractal compression]]. It is apparently a proprietary format developed by Iterated Systems.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Some FIF files begin with bytes &amp;lt;code&amp;gt;'F' 'I' 'F' 0x01&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[http://cd.textfiles.com/wthreepack/wthreepack-1/COMPRESS/FIFDEMO.ZIP This demo] includes FIF files that begin with &amp;quot;{{magic|FTC}}&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[Wikipedia:Genuine Fractals|Genuine Fractals]] Photoshop plug-in&lt;br /&gt;
* Microsoft Encarta Encyclopedia licensed FIF for image compression.&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* http://users.senet.com.au/~mjbone/Fractals.html → [http://users.senet.com.au/~mjbone/River.fif River.fif]&lt;br /&gt;
* {{DexvertSamples|image/fractalImageFormat}}&lt;br /&gt;
* https://web.archive.org/web/19970722065650/http://www.altamira-group.com/gallweb.html&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Fractal compression|Wikipedia: Fractal compression]]&lt;br /&gt;
* [https://web.archive.org/web/19970403013947/http://www.altamira-group.com/faq4.html (AltaMira) Fractal Technology (archived)]&lt;br /&gt;
* [https://web.archive.org/web/19980626190724/http://www.iterated.com/products/fractalviewer.htm Archived web page about discontinued Fractal Imager and Fractal Viewer products]&lt;br /&gt;
* [https://www.bizjournals.com/atlanta/stories/1999/04/12/focus11.html Atlanta Journal Article about Iterated Systems] (1999-04-12)&lt;br /&gt;
* [https://web.archive.org/web/19971210205745/http://www.sigmaxi.org:80/amsci/issues/Sciobs96/Sciobs96-09image.html Fractal Image Compression, American Scientist] (1996 Sept-Oct issue)&lt;br /&gt;
* [https://web.archive.org/web/20160831070652/http://www.mathaware.org/mam/98/articles/theme.essay.html#Fractals Mathematics Awareness Week - April 1998] - High-level explanation of technology behind the format.&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/ICE_(Atari)</id>
		<title>ICE (Atari)</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/ICE_(Atari)"/>
				<updated>2023-12-28T05:15:00Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|icn}}, {{ext|imn}}, {{ext|ipc}}, {{ext|ip2}}&lt;br /&gt;
}}&lt;br /&gt;
'''ICE''' is a set of similar graphics formats for the Atari computers with unknown origin.&lt;br /&gt;
&lt;br /&gt;
Formats:&lt;br /&gt;
* ICE CIN (.ICN)&lt;br /&gt;
* ICE MIN (.IMN)&lt;br /&gt;
* ICE PCIN (.IPC)&lt;br /&gt;
* ICE PCIN+ (.IP2)&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[RECOIL]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|image/iceStar}}&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Paradox_(graphics)</id>
		<title>Paradox (graphics)</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Paradox_(graphics)"/>
				<updated>2023-12-28T05:14:59Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|name=Paradox&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|mcpp}}&lt;br /&gt;
|released=1996&lt;br /&gt;
}}&lt;br /&gt;
'''Paradox''' is a graphics program for the Atari line of computers.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
&amp;lt;code&amp;gt;.mcpp&amp;lt;/code&amp;gt; files are exactly 8008 bytes long.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [[RECOIL]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|image/mcpp}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [https://demozoo.org/productions/111562/ Paradox v0.92]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Crunch-Mania</id>
		<title>Crunch-Mania</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Crunch-Mania"/>
				<updated>2023-12-28T05:14:56Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: /* Sample files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Compression&lt;br /&gt;
}}&lt;br /&gt;
'''Crunch-Mania''' is a compressed file format produced by the Amiga packer program Crunch-Mania.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Files begin with &amp;quot;{{magic|CrM2}}&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* http://aminet.net/package/util/pack/decrunchmania-mos (Compiles and works fine on modern linux)&lt;br /&gt;
* [http://aminet.net/package/util/pack/CrMv191t Crunch-Mania Test Version 1.91]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|archive/crunchMania}}&lt;br /&gt;
[[Category:Amiga]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/TTCOMP</id>
		<title>TTCOMP</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/TTCOMP"/>
				<updated>2023-12-28T05:14:47Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Compression&lt;br /&gt;
|extensions={{ext|ttc}}, others&lt;br /&gt;
|released=≤1993&lt;br /&gt;
}}&lt;br /&gt;
'''TTCOMP''' is the informal name of a file compression utility developed by SWFTE International. Its compressed file format is just a raw blob of [[PKWARE DCL Implode]]-compressed data. The name &amp;quot;TTCOMP&amp;quot; has sometimes been used (misused?) for any file compressed in such a manner, even if it has nothing to do with the TTCOMP software.&lt;br /&gt;
&lt;br /&gt;
The software is included in SWFTE's ''Typecase'' product, and maybe some other SWFTE products, as files named &amp;quot;COMPR.EXE&amp;quot; and &amp;quot;DECOMPR.EXE&amp;quot;. It may also found by itself, as files named &amp;quot;TTCOMP.EXE&amp;quot; and &amp;quot;TTDECOMP.EXE&amp;quot;, though there's no evidence that this is an official distribution. The origin of the name &amp;quot;TTCOMP&amp;quot; is unknown; Typecase does not appear to use it. Someone may have derived it from the '''.TTC''' filename extension that Typecase uses for compressed [[TrueType]] fonts.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Refer to [[PKWARE DCL Implode#Identification]] for how to identify PKWARE DCL Implode format in general.&lt;br /&gt;
&lt;br /&gt;
TTCOMP.EXE/COMPR.EXE appears to only ever use binary compression, and a 4K dictionary. But TTDECOMP.EXE/DECOMPR.EXE can decompress all six modes. So you could decide that ''true'' TTCOMP files always start with bytes {{magic|0x00 0x06}}, or you could account for the other modes as well.&lt;br /&gt;
&lt;br /&gt;
Also be aware of [[ZAR (Zip-Archiv)]] format, which can be mistaken for TTCOMP.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [{{SACFTPURL|pack|ttcomp.zip}} ttcomp.zip] → TTCOMP.EXE, TTDECOMP.EXE (DOS software)&lt;br /&gt;
* [http://www.exelana.com/techie/c/ttdecomp.html TTDecomp]&lt;br /&gt;
* [https://vetusware.com/download/Typecase%202.60/?id=7021 Typecase v2.60 (at Vetusware)] (Windows 3.x software; compression utilities are for DOS)&lt;br /&gt;
* {{Deark}}&lt;br /&gt;
&lt;br /&gt;
See also [[PKWARE DCL Implode#Software]].&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [https://archive.org/details/TYPECASE_ZIP Typecase Demo] → *.TTC&lt;br /&gt;
* [https://archive.org/details/UniversalDialUPModemDriverCD Universal Dial UP Modem Driver CD] → SOFTWARE/BITWARE/.../*.??$&lt;br /&gt;
* {{DexvertSamples|archive/ttcomp}}&lt;br /&gt;
&lt;br /&gt;
[[Category:PKWARE]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Gzip</id>
		<title>Gzip</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Gzip"/>
				<updated>2023-12-28T05:14:46Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|name=gzip&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Compression&lt;br /&gt;
|extensions={{ext|gz}}&lt;br /&gt;
|mimetypes={{mimetype|application/x-gzip}}&lt;br /&gt;
|pronom={{PRONOM|x-fmt/266}}&lt;br /&gt;
|wikidata={{wikidata|Q10287816}}&lt;br /&gt;
}}&lt;br /&gt;
'''gzip''' is a compressed file format and command line utility used primarily on Unix-style operating systems, but available cross-platform. It uses [[DEFLATE]] compression.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
gzip files begin with two signature bytes: {{magic|0x1F 0x8B}}. The third byte indicates the compression method, and is normally &amp;lt;code&amp;gt;0x08&amp;lt;/code&amp;gt; (meaning DEFLATE).&lt;br /&gt;
&lt;br /&gt;
gzip 0.5 apparently used [[Freeze/Melt]] 1.x format, with signature bytes {{magic|0x1F 0x9E}}.&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* RFC 1952&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|archive/gz}}&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.gzip.org Original gzip]&lt;br /&gt;
* [https://www.gnu.org/software/gzip/ GNU gzip]&lt;br /&gt;
* [[7-Zip]]&lt;br /&gt;
* [https://zlib.net zlib]&lt;br /&gt;
* [https://github.com/google/zopfli zopfli] (Gzip-compatible, better compression, but very slow compression)&lt;br /&gt;
* [http://pastebin.com/kYKpfUjd Tiny gzip decompressor without using zlib] (C++)&lt;br /&gt;
* {{Deark}}&lt;br /&gt;
&lt;br /&gt;
See also [[DEFLATE#Software]].&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:gzip|Wikipedia article]]&lt;br /&gt;
* [http://www.infinitepartitions.com/cgi-bin/showarticle.cgi?article=art001 Dissecting the GZIP format]&lt;br /&gt;
* [https://twitter.com/angealbertini/status/534817626342436864/photo/1 Chart of format]&lt;br /&gt;
* [https://stackoverflow.com/questions/20762094/how-are-zlib-gzip-and-zip-related-what-do-they-have-in-common-and-how-are-they/20765054#20765054 How are zlib, gzip and Zip related? What do they have in common and how are they different?] - Response to StackOverflow question by zlib/gzip co-creator Mark Adler&lt;br /&gt;
* [[GZSteg]] - hiding a file within a gzip&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Pro-Pack</id>
		<title>Pro-Pack</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Pro-Pack"/>
				<updated>2023-12-28T05:14:44Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Compression&lt;br /&gt;
|extensions={{ext|rnc}}, others&lt;br /&gt;
|wikidata={{wikidata|Q105860435}}, {{wikidata|Q105860831}}, {{wikidata|Q105855066}}&lt;br /&gt;
|released=1991&lt;br /&gt;
}}&lt;br /&gt;
'''PROPACK''' (spelled '''PRO-PACK''' in some versions, and also known as '''RNC''' compression) is multi-function data compression utility that was used by several commercial games. It was developed by Rob Northen (frequently misspelled &amp;quot;Northern&amp;quot;), who also produced the Rob Northen copylock ([[wikipedia:Rob Northen copylock|Wikipedia article]]) copy protection scheme.&lt;br /&gt;
&lt;br /&gt;
Binary versions of the software were available for at least Amiga and IBM PC (DOS). Decompression routines written in assembly language were provided for 680x0 processors (Amiga, Atari ST, Megadrive), 80x86 (IBM PC), 65c816 (SNES) and 65C02 (Atari Lynx).&lt;br /&gt;
&lt;br /&gt;
Its native formats include a compressed file format, a compressed archive format (at least in v2.14+), and various executable compression formats. Supported executable formats include [[Amiga Hunk]], [[MS-DOS EXE|DOS EXE]] (compressed to EXE), [[DOS executable (.com)|DOS COM]] (compressed to COM), Atari ST [[Atari ST executable|TOS]], MC68000, and Atari Lynx executables.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
ProPack data files begin with ASCII &amp;quot;{{magic|RNC}}&amp;quot;, followed by an &amp;lt;code&amp;gt;0x01&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;0x02&amp;lt;/code&amp;gt; byte to indicate the compression method used.&lt;br /&gt;
&lt;br /&gt;
ProPack archive files begin with ASCII &amp;quot;{{magic|RNCA}}&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Compressed executable formats: ''(TODO)''.&lt;br /&gt;
&lt;br /&gt;
== Format documentation ==&lt;br /&gt;
* [https://www.segaretro.org/Rob_Northen_compression Reverse-engineered data format from Sega Retro]&lt;br /&gt;
* [https://wiki.multimedia.cx/index.php/RNC_ProPack MultimediaWiki article]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://aminet.net/package/util/pack/RNC_ProPack RNC_ProPack.lha] - includes the original compressor for IBM PC and Amiga, all the decompression routines mentioned above, plus a MIPS R4300 version for the Nintendo 64 and a Z80 version for the GameBoy&lt;br /&gt;
* {{OldskoolDOSEXE}} → DOSEXE Executable Tools Pack → packers/propack.* (has 2.08, 2.14, 2.19)&lt;br /&gt;
* [http://old-dos.ru/index.php?page=files&amp;amp;mode=files&amp;amp;do=show&amp;amp;id=5325 Various versions, at old-dos.ru]&lt;br /&gt;
* [https://github.com/lab313ru/rnc_propack_source Pro-Pack compressor and decompressor written in C]&lt;br /&gt;
* [https://github.com/temisu/ancient Ancient]&lt;br /&gt;
&lt;br /&gt;
''Ed. note: The command-line utility's syntax is challenging to figure out, unforgiving, and different in different versions.''&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|archive/rnc}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Executable compression]]&lt;br /&gt;
[[Category:Archiving]]&lt;br /&gt;
[[Category:Amiga]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/MSA_(Magic_Shadow_Archiver)</id>
		<title>MSA (Magic Shadow Archiver)</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/MSA_(Magic_Shadow_Archiver)"/>
				<updated>2023-12-28T05:14:43Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Disk Image Formats&lt;br /&gt;
|extensions={{ext|msa}}&lt;br /&gt;
|wikidata={{wikidata|Q28771271}}&lt;br /&gt;
}}&lt;br /&gt;
'''MSA''' is a floppy disk image format for Atari computers. It originated with the ''Magic Shadow Archiver'' software. It's used for archiving floppy disks, and is supported by some emulators.&lt;br /&gt;
&lt;br /&gt;
For general information about Atari ST disk images, see [[ST disk image]].&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
MSA files begin with bytes {{magic|0x0E 0x0F}}.&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [http://info-coach.fr/atari/documents/_mydoc/FD_Image_File_Format.pdf Atari Image File Formats], by DrCoolZic&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://msaconverter.free.fr/ MSA Converter] (Windows application)&lt;br /&gt;
* [http://cd.textfiles.com/crawlycrypt2/utility/archiver/msa_2_3/ Magic Shadow Archiver]&lt;br /&gt;
* [https://web.archive.org/web/20060507110406/https://www.uni-ulm.de/~s_thuth/ix/msa-0.1.0.tar.gz msa-to-st]&lt;br /&gt;
* {{Deark}}&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* [http://no-fragments.atari.org/browser/index.php?dir=no_fragments_01%2FMSA%2F No Fragments 1]&lt;br /&gt;
* Some files on [http://cd.textfiles.com/crawlycrypt2/demos/ The Crawly Crypt Collection CD 2], for example [http://cd.textfiles.com/crawlycrypt2/demos/adrenaln/adr_1.msa adr_1.msa]&lt;br /&gt;
* {{DexvertSamples|archive/msa}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Atari computers]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Windows_Imaging_Format</id>
		<title>Windows Imaging Format</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Windows_Imaging_Format"/>
				<updated>2023-12-28T05:14:42Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|subcat=Archiving&lt;br /&gt;
|extensions={{ext|wim}}, {{ext|swm}}, {{ext|esd}}, {{ext|wim2}}, {{ext|ppkg}}&lt;br /&gt;
|mimetypes={{mimetype|application/x-ms-wim}}&amp;lt;ref&amp;gt;https://reposcope.com/mimetype/application/x-ms-wim&amp;lt;/ref&amp;gt;&lt;br /&gt;
|pronom={{PRONOM|fmt/614}}&lt;br /&gt;
}}&lt;br /&gt;
The '''Windows Imaging Format''' is a file-based disk image format (as opposed to a [[Disk Image Formats|sector-based one]]) used to preserve and distribute a complete copy of a set of files with all its MS-Windows filesystem structure and metadata. It is created with the ImageX command line tool, part of the free Windows Automated Installation Kit (WAIK).&lt;br /&gt;
The file name extension &amp;lt;code&amp;gt;swm&amp;lt;/code&amp;gt; is used for images splited into multiple parts.&lt;br /&gt;
The variant with the file name extension &amp;lt;code&amp;gt;esd&amp;lt;/code&amp;gt; use &amp;lt;code&amp;gt;LZMS&amp;lt;/code&amp;gt; compression.&amp;lt;!-- do not know if this is always true--&amp;gt;&lt;br /&gt;
Reconstruct.WIM2 is generated as second disk image by Microsoft's recovery drive creating tool &amp;lt;code&amp;gt;RecoveryDrive.exe&amp;lt;/code&amp;gt;,&lt;br /&gt;
when the option to back up system files to the recovery drive is chosen.&lt;br /&gt;
&amp;lt;ref&amp;gt;https://www.tenforums.com/tutorials/4200-create-recovery-drive-windows-10-a.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
The &amp;lt;code&amp;gt;PPKG&amp;lt;/code&amp;gt; file extension is used for Microsoft Windows provisioning packages.&lt;br /&gt;
&amp;lt;ref&amp;gt;https://deploymentresearch.com/beyond-basic-windows-10-provisioning-packages/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
WIM images  begin with {{magic|MSWIM\0\0\0}} or {{magic|WLPWM\0\0\0}} for the wimlib pipable variant.&amp;lt;ref&amp;gt;https://wimlib.net/man1/wimcapture.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* ImageX&lt;br /&gt;
* DISM part of the Windows Assessment and Deployment Kit&lt;br /&gt;
* [https://wimlib.net/ wimlib]&lt;br /&gt;
* [[7-Zip]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|archive/wim}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Windows Imaging Format|Wikipedia article]]&lt;br /&gt;
* [http://technet.microsoft.com/en-us/library/dd799284%28v=ws.10%29.aspx Tech docs in Microsoft site]&lt;br /&gt;
* [http://www.microsoft.com/en-us/download/details.aspx?id=13096 White paper]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Microsoft]]&lt;br /&gt;
[[Category:Windows]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Compress_(Unix)</id>
		<title>Compress (Unix)</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Compress_(Unix)"/>
				<updated>2023-12-28T05:14:40Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|name=compress (Unix)&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Compression&lt;br /&gt;
|extensions={{ext|Z}}&lt;br /&gt;
|mimetypes={{mimetype|application/x-compress}}&lt;br /&gt;
|wikidata={{wikidata|Q29209269}}&lt;br /&gt;
|released=~1984&lt;br /&gt;
}}&lt;br /&gt;
:''This article is about a specific file format. For compression in general, see [[Compression]].''&lt;br /&gt;
&lt;br /&gt;
'''compress''' is a Unix command line utility, and a general-purpose compressed file format. Its compression algorithm is based on [[LZW]].&lt;br /&gt;
&lt;br /&gt;
== Identifiers ==&lt;br /&gt;
The conventional filename extension is a capitalized '''.Z'''.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Files begin with bytes {{magic|1f 9d}}.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[SCO compress LZH]] - variant&lt;br /&gt;
* [[Quasijarus Strong Compression]] - variant&lt;br /&gt;
* [[pack (Unix)]] - predecessor&lt;br /&gt;
* [[compact (Unix)]] - predecessor&lt;br /&gt;
* [[Squash (RISC OS)]]&lt;br /&gt;
* [[compact (Gene Olson)]]&lt;br /&gt;
&lt;br /&gt;
Formats that could be considered to be the successors of ''compress'' include [[Freeze/Melt]], and (especially) [[Gzip]].&lt;br /&gt;
&lt;br /&gt;
== The 0x1f compression family ==&lt;br /&gt;
There are several compressed file formats, with similar features, that begin with byte value {{magic|0x1f}} (octal 037; decimal 31). We arbitrarily choose ''compress'' as the representative example, and list the formats here.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Signature (hex) !! Format&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;1f 1e&amp;lt;/code&amp;gt; || [[pack (Unix)]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;1f 1f&amp;lt;/code&amp;gt; || [[pack (Unix)]] - old format&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;1f 8b&amp;lt;/code&amp;gt; || [[gzip]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;1f 9d&amp;lt;/code&amp;gt; || compress&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;1f 9e&amp;lt;/code&amp;gt; || [[Freeze/Melt]] - old format&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;1f 9f&amp;lt;/code&amp;gt; || [[Freeze/Melt]] - new format&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;1f a0&amp;lt;/code&amp;gt; || [[SCO compress LZH]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;1f a1&amp;lt;/code&amp;gt; || [[Quasijarus Strong Compression]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;1f ff&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;ff 1f&amp;lt;/code&amp;gt; || [[compact (Unix)]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [https://vapier.github.io/ncompress/ ncompress]&lt;br /&gt;
* [https://www.gnu.org/software/gzip/ Gzip]&lt;br /&gt;
* [[7-Zip]]&lt;br /&gt;
* [https://github.com/vapier/liblzw liblzw]&lt;br /&gt;
* [http://web.archive.org/web/20130702195528/http://www.willus.com/archive/unixcmds.zip Windows port of Compress utility]&lt;br /&gt;
* {{Deark}}&lt;br /&gt;
* [https://github.com/temisu/ancient Ancient]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|archive/compress}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [[Wikipedia:Compress (software)|Wikipedia article]]&lt;br /&gt;
&lt;br /&gt;
[[Category:File formats with extension .z]]&lt;br /&gt;
[[Category:File formats with case sensitive extensions]]&lt;br /&gt;
{{DISPLAYTITLE:compress (Unix)}}&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Print_Artist</id>
		<title>Print Artist</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Print_Artist"/>
				<updated>2023-12-28T05:14:39Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Graphics&lt;br /&gt;
|extensions={{ext|gfx}}, others&lt;br /&gt;
|released=1992&lt;br /&gt;
}}&lt;br /&gt;
'''Print Artist''' (originally named '''Instant Artist''') is a line of graphics/productivity software. This article is partly about its native '''.gfx''' format, and partly about the software, and its other formats.&lt;br /&gt;
&lt;br /&gt;
== Formats ==&lt;br /&gt;
GFX is apparently a (vector based?) clip art library format, though it might have other uses.&lt;br /&gt;
&lt;br /&gt;
Many other file extensions have reportedly been used by Print Artist, including:&lt;br /&gt;
* '''.ban''' - banner&lt;br /&gt;
* '''.bc''' - business card&lt;br /&gt;
* '''.cal''' - calendar&lt;br /&gt;
* '''.cer''' - certificate&lt;br /&gt;
* '''.crf''' - craft&lt;br /&gt;
* '''.env''' - envelope&lt;br /&gt;
* '''.gc''' - greeting card&lt;br /&gt;
* '''.lbl''' - labels&lt;br /&gt;
* '''.lth''' - letterhead&lt;br /&gt;
* '''.pc''' - postcard&lt;br /&gt;
* '''.qot''' - quote&lt;br /&gt;
* '''.sgn''' - sign&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
Instant Artist was developed by The Pixellite Group, and published by Autodesk around 1992. It was soon acquired by Maxis, and renamed Print Artist. In 1995, it was acquired by Sierra On-Line. As of 2019, it is maintained by Nova Development.&lt;br /&gt;
&lt;br /&gt;
There were also educational offshoots, ca. 1998, named Print Artist Junior and Print Artist Craft Factory. The latter was apparently developed in partnership with Knowledge Adventure. These versions apparently use quite different file formats, based on [[Microsoft Compound File]] format, including a different '''.gfx''' format, '''.pa''', '''.lyx''', '''jpx'''.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
The GFX files we've examined all begin with bytes {{magic|f0 0d 03 00}} (not counting the ones based on [[Microsoft Compound File]]).&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://trusted22.blogspot.com/2011/04/welcome-to-instant-artist_01.html Some downloads of disk images of Instant Artist]&lt;br /&gt;
* [https://archive.org/details/Print_Artist_CD_Edition_The_Pixellite_Group_0040-031-0601A_1994 Print Artist CD Edition] (1995)&lt;br /&gt;
* [https://archive.org/details/printartist3classic Print Artist Classic 3.0] (1997)&lt;br /&gt;
* [https://archive.org/details/PrintArtist4 Print Artist 4 for Windows] (1999)&lt;br /&gt;
* [https://archive.org/details/PrintArtist12.0SpecialEdition2000 Print Artist 12.0 Special Edition] (2000)&lt;br /&gt;
* [https://archive.org/details/PrintArtistCraftFactory Print Artist Craft Factory]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|archive/printArtist}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia: Sierra Print Artist]]&lt;br /&gt;
* [https://winworldpc.com/product/instant-artist-print Some info on Instant Artist]&lt;br /&gt;
* [http://sierrachest.com/index.php?a=games&amp;amp;id=413&amp;amp;title=print-artist-4&amp;amp;fld=general The Sierra Chest:  Print Artist 4] → [http://sierrachest.com/index.php?a=games&amp;amp;id=413&amp;amp;title=print-artist-4&amp;amp;fld=walkthrough Walkthrough]&lt;br /&gt;
* https://www.printartist.com/&lt;br /&gt;
&lt;br /&gt;
[[Category:Autodesk]]&lt;br /&gt;
[[Category:Sierra On-Line]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Bzip2</id>
		<title>Bzip2</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Bzip2"/>
				<updated>2023-12-28T05:14:38Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|name=bzip2&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Compression&lt;br /&gt;
|extensions={{ext|bz2}}&lt;br /&gt;
|mimetypes={{mimetype|application/x-bzip2}}&lt;br /&gt;
|pronom={{PRONOM|x-fmt/268}}&lt;br /&gt;
|wikidata={{wikidata|Q27866052}}&lt;br /&gt;
|released=1997&lt;br /&gt;
}}&lt;br /&gt;
'''bzip2''' is a data compression algorithm and compressed file format. It was developed by Julian Seward.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
A bzip2 file starts with the byte pattern {{magic|42 5a 68 ?? 31 41 59 26 53 59}}.&lt;br /&gt;
&lt;br /&gt;
The first three bytes are ASCII &amp;quot;{{magic|BZh}}&amp;quot;. (For signature &amp;quot;{{magic|BZ0}}&amp;quot;, refer to the original [[bzip]] format.) The &amp;quot;&amp;lt;code&amp;gt;h&amp;lt;/code&amp;gt;&amp;quot; has been said to stand for &amp;quot;Huffman coding&amp;quot;, but confirmation is needed.&lt;br /&gt;
&lt;br /&gt;
The byte at offset 3 is a code for the block size. Its possible values range from &amp;lt;code&amp;gt;0x31&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;0x39&amp;lt;/code&amp;gt; (ASCII &amp;quot;&amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt;&amp;quot; to &amp;quot;&amp;lt;code&amp;gt;9&amp;lt;/code&amp;gt;&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
The bytes at offset 4-9 are derived from the digits of the mathematical constant π ([[Binary-coded decimal|BCD]]-encoded).&lt;br /&gt;
&lt;br /&gt;
The end-of-file marker uses magic number (hex) {{magic|17 72 45 38 50 90}}, derived from the square root of π. However, it is not byte-aligned. The result is that one of the following byte sequences appears beginning 10 bytes from the end of the file:&lt;br /&gt;
&lt;br /&gt;
 b9 22 9c 28 48&lt;br /&gt;
 dc 91 4e 14 24&lt;br /&gt;
 ee 48 a7 0a 12&lt;br /&gt;
 77 24 53 85 09&lt;br /&gt;
 bb 92 29 c2 84&lt;br /&gt;
 5d c9 14 e1 42&lt;br /&gt;
 2e e4 8a 70 a1&lt;br /&gt;
 17 72 45 38 50&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* [https://github.com/dsnet/compress/blob/master/doc/bzip2-format.pdf Unofficial specification by Joe Tsai]&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [https://sourceware.org/bzip2/ bzip2 and libbzip2]&lt;br /&gt;
* [[7-Zip]]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|archive/bz2}}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Burrows–Wheeler transform]]&lt;br /&gt;
* [[bzip]] (predecessor)&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Bzip2|Wikipedia article]]&lt;br /&gt;
* [https://sourceware.org/bzip2/ bzip2 and libbzip2 website]&lt;br /&gt;
* [https://github.com/corkami/pics/blob/master/binary/BZ2.png Chart of format details]&lt;br /&gt;
* [https://lwn.net/Articles/762264/ bzip.org changes hands] (LWN article from August 9, 2018)&lt;br /&gt;
* [{{ForensicsWikiURL|bzip2}} ForensicsWiki entry] (also includes more details on the headers)&lt;br /&gt;
* [http://www.bzip.org/ bzip.org]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Crunch-Mania</id>
		<title>Crunch-Mania</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Crunch-Mania"/>
				<updated>2023-12-28T05:14:35Z</updated>
		
		<summary type="html">&lt;p&gt;Dexvertbot: Change telparia.com samples link to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Compression&lt;br /&gt;
}}&lt;br /&gt;
'''Crunch-Mania''' is a compressed file format produced by the Amiga packer program Crunch-Mania.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
Files begin with &amp;quot;{{magic|CrM2}}&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* http://aminet.net/package/util/pack/decrunchmania-mos (Compiles and works fine on modern linux)&lt;br /&gt;
* [http://aminet.net/package/util/pack/CrMv191t Crunch-Mania Test Version 1.91]&lt;br /&gt;
&lt;br /&gt;
== Sample files ==&lt;br /&gt;
* {{DexvertSamples|archive/crunchMania}}13.bmp.crm2&lt;br /&gt;
&lt;br /&gt;
[[Category:Amiga]]&lt;/div&gt;</summary>
		<author><name>Dexvertbot</name></author>	</entry>

	</feed>