Go Back!

wcweaver

[Source Code] [Download]

Static webcomic reader generator.

wcweaver ("wee-zee-weaver") is not an all-in-one solution. It's merely a simple tool to generate a comic reader for your site.

The workflow goes like this:

Make your comic site however you please. Code it by hand, use a template, use a generator, whatever.

my_comic_website/
├── index.html
└── style.css

Paste all the comic pages inside a directory.

my_comic_website/
├── index.html
├── style.css
└── chapter_1/
    ├── img0.jpeg
    ├── img1.jpeg
    ├── {...}
    └── img84.jpeg

Open wcweaver, choose that directory and generate a reader.

my_comic_website/
├── index.html
├── style.css
└── chapter_1/
    ├── img0.jpeg
    ├── 0.html
    ├── img1.jpeg
    ├── 1.html
    ├── {...}
    ├── img83.jpeg
    └── 83.html

Alternatively, you can enable JavaScript for a tidier solution:

my_comic_website/
├── index.html
├── style.css
└── chapter_1/
    ├── reader.html (contains script)
    ├── img0.jpeg
    ├── img1.jpeg
    ├── {...}
    └── img83.jpeg

You can also load a custom HTML template, in case you want to change something.

Image files will be sorted by their file name, so name your images accordingly. We use natural sort order, so no need to worry about zero-padding your page number.

Click the right side to move to the next page. Click the left side to move to the previous page.

Placeholders

You can make your own HTML template. Some of the available placeholders are:

$CURRENT_PAGE
$TOTAL_PAGES
$TITLE -> directory name
$IMAGE
$NEXT
$PREVIOUS