IordanRujinov

Linux Practical Task 2 edit1

Jan 20th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.37 KB | None | 0 0
  1. #!/bin/bash
  2. # convert *PNG -clone 2
  3. # mogrify -resize 90% -brightness-contrast 30 input_images*.PNG
  4.  
  5. # montage *PNG -tile 2x2 -geometry 2000 output.pdf
  6. # convert output.pdf -page A4 output.pdf
  7.  
  8. # mogrify -resize 10% -brightness-contrast 100 *.PNG
  9.  
  10.  
  11. #Finally
  12. montage -tile 2x1 -geometry 1000 input_images/*PNG output.pdf
  13.  
  14. mogrify -brightness-contrast 30 output.pdf
Advertisement
Add Comment
Please, Sign In to add comment