Search found 4 matches
- 2018-12-20T02:37:14-07:00
- Forum: Users
- Topic: Extract a subresolution of a JPEG2000 file to a new file
- Replies: 1
- Views: 2972
Extract a subresolution of a JPEG2000 file to a new file
Hello, I have a JPEG2000 (encoded with kakadu) image of which I want to extract every existing level. Can ImageMagick help me in this task? If so, which option will do the magic? If I ask for a resampling of my 2048x2048 image to a 1024x1024 image, will it automatically use the subresolutions? Many ...
- 2016-06-27T06:45:34-07:00
- Forum: Users
- Topic: Converting several .jpg into a multipage .pdf - with external margins
- Replies: 4
- Views: 3804
Re: Converting several .jpg into a multipage .pdf - with external margins
I did try the -border option, but it added a border to each of my .jpg files, and thus created wide borders within the pages, rather than on their borders.
- 2016-06-25T05:36:13-07:00
- Forum: Users
- Topic: Converting several .jpg into a multipage .pdf - with external margins
- Replies: 4
- Views: 3804
Re: Converting several .jpg into a multipage .pdf - with external margins
It seems I found a way.
Relaunch a montage on the output.pdf file :
montage -geometry +50+50 -mode concatenate -tile 1x1 output.pdf outputEdges.pdf
this sort of does what I want.
Relaunch a montage on the output.pdf file :
montage -geometry +50+50 -mode concatenate -tile 1x1 output.pdf outputEdges.pdf
this sort of does what I want.
- 2016-06-25T03:31:07-07:00
- Forum: Users
- Topic: Converting several .jpg into a multipage .pdf - with external margins
- Replies: 4
- Views: 3804
Converting several .jpg into a multipage .pdf - with external margins
Hello, Here is my situation : I have several .jpg files that have roughly the same size (360*510) that I would like to concatenate into a .pdf file so that I can print only one file and reduce the amount of non-printed pagespace. In order to achieve this, I used montage : montage -geometry 360x510+2 ...