debian: บันทึก imagemagick - convert
Submitted by wd on Sun, 2006-12-24 17:20
Topic:
# mkdir temp
# for i in *jpg; do convert $i -interlace line temp/$i ; done
จะได้ไฟล์ jpg ชุดใหม่เข้าไปอยู่ในไดเรกทอรี่ temp
# convert -adjoin `ls *.tif` newfile.pdf
เอามาจาก jmetrix : Viewing multiple page tif on Linux
$ convert x1.tif x2.tif x3.tif -adjoin newfile.tif
$ convert x.tif x%d.tif
จะได้ออกมาเป็น x1.tif x2.tif x3.tif
เอามาจาก [magick-users] how to split multi-page tiff into single pages
$ convert x.tif /tmp/x.gif
$ convert /tmp/x.gif -depth 4 x.tif
$ convert x.tif /tmp/x.jpg
$ convert /tmp/x.jpg x.tif
$ convert x.tif -quality 100 /tmp/x%d.jpg
หลังจากแก้ไขด้วย gimp เสร็จแล้ว ก็ใช้คำสั่ง
$ convert /tmp/*jpg -geometry 1654 -density 200 -compress lzw -depth 4 -adjoin x.tif
ที่มา : My MCP: ImageMagick convert -geometry weirdness
$ convert infile.jpg -level 40%,85%,0.5 -type bilevel -monochrome -compress group4 outfile.tif
ตัวเลข level black,white,gamma ปรับเอาเองตามสภาพหนังสือที่สแกน
ถ้าเป็นหน้าสี ใช้
$ convert infile.jpg -compress lzw -colors 8 outfile.tif
แล้วแปลงเป็น pdf ด้วย
tiff2pdf
และรวมด้วย pdfjam
ที่มา : http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=6448
หมายเหตุ
ต้องลงแพกเกจ imagemagick ก่อน
# aptitude install imagemagick
- Printer-friendly version
- Log in or register to post comments
- 11097 reads
Recent comments