Member
- Joined
- Jan 18, 2018
- Messages
- 619
Some chapters take an awful lot to load, because each page is an enormous png file, so the entire chapter easily reaches 70~100 mb.
If you use imagemagick from any shell, you can launch this command to drastically reduce filesize without any perceptible quality loss:
for i in *png; do convert $i ${i%.*}.jpg && rm $i; done
(note that `&& rm $i` deletes the original file)
If you use imagemagick from any shell, you can launch this command to drastically reduce filesize without any perceptible quality loss:
for i in *png; do convert $i ${i%.*}.jpg && rm $i; done
(note that `&& rm $i` deletes the original file)