mirror of
https://github.com/venera-app/venera.git
synced 2025-09-27 07:47:24 +00:00
62 lines
1.5 KiB
Markdown
62 lines
1.5 KiB
Markdown
# Import Comic
|
|
|
|
## Introduction
|
|
|
|
Venera supports importing comics from local files.
|
|
However, the comic files must be in a specific format.
|
|
|
|
## Comic Directory
|
|
|
|
A directory considered as a comic directory only if it follows one of the following two types of structure:
|
|
|
|
**Without Chapter**
|
|
|
|
```
|
|
comic_directory
|
|
├── cover.[ext]
|
|
├── img1.[ext]
|
|
├── img2.[ext]
|
|
├── img3.[ext]
|
|
├── ...
|
|
```
|
|
|
|
**With Chapter**
|
|
|
|
```
|
|
comic_directory
|
|
├── cover.[ext]
|
|
├── chapter1
|
|
│ ├── img1.[ext]
|
|
│ ├── img2.[ext]
|
|
│ ├── img3.[ext]
|
|
│ ├── ...
|
|
├── chapter2
|
|
│ ├── img1.[ext]
|
|
│ ├── img2.[ext]
|
|
│ ├── img3.[ext]
|
|
│ ├── ...
|
|
├── ...
|
|
```
|
|
|
|
The file name can be anything, but the extension must be a valid image extension.
|
|
|
|
The page order is determined by the file name. App will sort the files by name and display them in that order.
|
|
|
|
Cover image is optional.
|
|
If there is a file named `cover.[ext]` in the directory, it will be considered as the cover image.
|
|
Otherwise, the first image will be considered as the cover image.
|
|
|
|
The name of directory will be used as comic title. And the name of chapter directory will be used as chapter title.
|
|
|
|
## Archive
|
|
|
|
Venera supports importing comics from archive files.
|
|
|
|
The archive file must follow [Comic Book Archive](https://en.wikipedia.org/wiki/Comic_book_archive_file) format.
|
|
|
|
Currently, Venera supports the following archive formats:
|
|
- `.cbz`
|
|
- `.cb7`
|
|
- `.zip`
|
|
- `.7z`
|