Create Comic Book
Comic book archive or reader files are simple archives containing a sequence of image files with a special naming convention. Standard archive formats like
tar, zip, 7z, rar, ACE are used with a special file suffix to indicate the type of archive used. Readers are able to unarchive and display the contents of these files.Supported formats
- rar - Archives created using
rarcompression codec. The desired images are added to a standard rar file using therarextension. Once generated, the file is renamed to have thecbrextension which helps readers identify the codec asrar. - zip - Archives created using
zipcompression codec. The desired images are added to a standard zip file using thezipextension. Once generated, the file is renamed to have thecbzextension which helps readers identify the codec aszip. - tar - Archives created using
tararchive format. The desired images are added to a standard tar file using thetarextension. Once generated, the file is renamed to have thecbtextension which helps readers identify the codec astar. - 7z - Archives created using
7zarchive format. The desired images are added to a standard 7z file using the7zextension. Once generated, the file is renamed to have thecb7extension which helps readers identify the codec as7z.
Note
The output file is renamed to have the standard
cbr, cbz, cbt, cb7 extension. If a target file with the same extension already exists, it will be replaced by the new file being generated.Credits
The archive is created using libarchive. We also use the QArchive Qt library as the wrapper around
libarchive.
