所以就想要在 kindle 上面看漫畫或是圖片
Amazon 可以接受夾檔的方式傳送到 kindle 上面,
但是如果夾檔是 jpeg 檔案, 一張圖片就會是一本書. 相當的不方便.
所以就會想要合併 jpg 檔案變成一個檔案
在網際網路上面搜尋 大部分都是 for windows 的軟體, 且有的要收費
但是如果針對大量的圖片該如何呢?
在 linux 底下可以使用 ImageMagick 這個軟體
可以使用 rpm 指令查詢是否有安裝
# rpm -qa | grep -i ImageMagick
ImageMagick-6.5.4.8-3.7.i586
如果沒有可以使用 zypper 指令安裝
# zypper in ImageMagick
但是預設應該都有安裝 ImageMagick
轉換的方式為
假如 jpg 圖片都在 /tmp/images
#convert /tmp/images/*.jpg /tmp/images/output.pdf
大功告成 ^^
**************************************************************
with English version
How to use convert command to merge jpeg file to pdf ?
I want to watch pictures or comics on my new kindle.
Amazon kindle accept send personal document to your own kindle.
You can mail to your kindle by attachments. ( It can accept zip file to attachments)
But the question is ............. one jpeg file for one book !!
If you want to merge jpeg files to pdf -- use search engine
Most of them are windows program and charge.
In linux, you can simply use ImageMagick packages to do this.
First, check your ImageMagick package.
You can use rpm command to check " you are install or not install ImageMagick"
# rpm -qa | grep -i ImageMagick
ImageMagick-6.5.4.8-3.7.i586
If you are not yet install ImageMagick packages ( Most case, It already install it ^^)
You can use yast or zypper command to install
for example:
# zypper in ImageMagick
If your jpeg files save in /tmp/images folder
you can use convert command to merge jpg to pdf
for example
#convert /tmp/images/*.jpg /tmp/images/output.pdf
enjoy it ^^
沒有留言:
張貼留言