About filesize from some scanlators :rejected:

Status
Not open for further replies.
Joined
Jan 18, 2018
Messages
619
This is not a suggestion to the site itself, but to scanlators. I noticed 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)
 
Posting this in the Groups or Tutorials forum might help you reach more of the concerned persons.
 
Moving to rejected and locking because I don't believe that this is in the correct place either.
 
Status
Not open for further replies.

Users who are viewing this thread

Back
Top