Search found 5 matches
- 2015-11-22T13:35:17-07:00
- Forum: Users
- Topic: Help trying to merge PDFs
- Replies: 7
- Views: 3351
Re: Help trying to merge PDFs
That gets me to a place to work with it and does set it in the correct position. Thanks!
- 2015-11-21T18:53:06-07:00
- Forum: Users
- Topic: Help trying to merge PDFs
- Replies: 7
- Views: 3351
Re: Help trying to merge PDFs
it's version 6.8.9-9, it was explained some up top and pretty much exactly like you had it, except I guess I only want half of the page from the overlaying PDF. I got it to 'work' with PNG but not as elegant as your code and had to deal with transparency which screwed up parts of the image. Tried ...
- 2015-11-21T18:30:52-07:00
- Forum: Users
- Topic: Help trying to merge PDFs
- Replies: 7
- Views: 3351
Re: Help trying to merge PDFs
Thanks for the reply. I am using Ubuntu 15.10. That overlay worked, thanks! Then now just one more issue. Each image only takes up half a page but leaves the rest of the page blank, which then acts as whitespace and overlaps what is underneath :( This is what I mean http://i.imgur.com/HsQnEBs.png ...
- 2015-11-21T17:50:50-07:00
- Forum: Users
- Topic: Help trying to merge PDFs
- Replies: 7
- Views: 3351
Re: Help trying to merge PDFs
Well, I kind of half assedly got what I want, but it's unusable. Found a script to merge 2 images. #!/bin/bash if [ -z "$3" ] then echo "usage: $0 background.png foreground.png output.png" exit 1 fi bg_size=`identify -format '%wx%h' "$1"` convert -size $bg_size -composite "$1" "$2" -geometry $bg ...
- 2015-11-21T16:50:02-07:00
- Forum: Users
- Topic: Help trying to merge PDFs
- Replies: 7
- Views: 3351
Help trying to merge PDFs
Using Ubuntu 15.10 Basically what I normally have to do for printing out ebay slips without murdering trees, is print the address label take the paper out turn upside down then print on that same sheet, the packing slip. So I am looking to Imagemagick. All I could find is: montage -geometry +0+0 ...