how to convert multiple images to cbr?

5,907

after reading the wiki page , it turns out that cbr is rar file format. so, the solution is very simple :

sudo apt-get install rar       # install rar
rar a <comic_name>.cbr *.jpg   # compress it and add to cbr

very simple. hopefully, this will be helpful to someone. thx to anyone who has read this article.

Share:
5,907

Related videos on Youtube

whale_steward
Author by

whale_steward

I have 8 years or so experience in programming. Have tried various language; java, c, c++, c#, python, javascript, html, and more. As right now the language that I love is python, other languages not so much, except javascript out of necessity. Sometimes I code for fun and out of curiosity. After everything that I have learned, I am still wondering how to make machine think ? is statistic is enough? willing to learn and dive into the subject.

Updated on September 18, 2022

Comments

  • whale_steward
    whale_steward over 1 year

    this might be a newbies question, i have a lot of image files with different extension (*.jpg, *.png) and i want to convert it to cbr file format.

    Is there a way to achieve this or are there command to do this ? (preferably using terminal)