Search found 6 matches

by David Bethel
2015-02-24T12:19:52-07:00
Forum: Users
Topic: Centering a JPG image to 8.5 x 11 PDF conversion
Replies: 4
Views: 2664

Re: Centering a JPG image to 8.5 x 11 PDF conversion

Wow ! That's a bit complex ! Thanks~! -David
by David Bethel
2015-02-24T12:06:39-07:00
Forum: Users
Topic: Centering a JPG image to 8.5 x 11 PDF conversion
Replies: 4
Views: 2664

Re: Centering a JPG image to 8.5 x 11 PDF conversion

Prefect ! I had tried -gravity center but not in that order.

Code: Select all

@echo on
C:\IM\convert m:\acad\ar-*.jpg  -resize 765x612  -gravity center  -background white  -extent 792x612  m:\acad\ar-.pdf 
pause
Thanks! -David
by David Bethel
2015-02-24T11:57:06-07:00
Forum: Users
Topic: Centering a JPG image to 8.5 x 11 PDF conversion
Replies: 4
Views: 2664

Centering a JPG image to 8.5 x 11 PDF conversion

Greetings, I'm converting multiple 2,000 x 1,600 jpg images to a multi-page PDF ( 11x8.5 paper) 72 DPI I can get the paper size correct but haven't found he correct parameter to center the image on the page. The image is currently offset to the left side of the page. @echo on convert m:\acad\ar ...
by David Bethel
2014-01-19T12:50:05-07:00
Forum: Users
Topic: File size increase With resize parameter
Replies: 4
Views: 1372

Re: File size increase With resize parameter

As my images are cartoonish, I used the colortable.gif from the link that you provided. I will flood fill the black dot with pure black #000000 just to be sure. Thanks! -David You should perhaps create a colortable from your input images. Perhaps average all your input images (or many of them over ...
by David Bethel
2014-01-19T05:06:07-07:00
Forum: Users
Topic: File size increase With resize parameter
Replies: 4
Views: 1372

Re: File size increase With resize parameter

Thank you ! The +map and +remap reduced the size to 1MB. The remap to colortable.gif reduced it to 500KB. The brightness parameter became unacceptable, but that is not a big deal ( black turned into hunter green ) I will reread the links that you a few time as the terms and details are quite new to ...
by David Bethel
2014-01-18T07:18:37-07:00
Forum: Users
Topic: File size increase With resize parameter
Replies: 4
Views: 1372

File size increase With resize parameter

Greetings, 6.8.8-Q16 I'm a newbie to ImageMagick, so I have some really basic needs I can successfully create an animated gif using the following : ( 100 bmp frames @ 1024x768 ) onvert.exe -resize 512x384 -delay 33 -brightness-contrast 15 -type optimize -dispose none c:/bmp/*.bmp -loop 0 c:/acad ...