#!/bin/bash

wkhtmltopdf --page-size B5 --print-media-type --margin-top 0 --margin-bottom 0 --margin-left 0 --margin-right 0 index.html --enable-local-file-access output.pdf

convert -density 300 -trim -resize 1200x -quality 86 output.pdf pdf-to-image_tmp_%03d.jpg
zip -r -9 output.cbz pdf-to-image_tmp_*.jpg
rm pdf-to-image_tmp_*.jpg
