Search found 17 matches

by boromb
2012-05-18T02:07:23-07:00
Forum: Users
Topic: Manually set delegate path to gs on windows
Replies: 4
Views: 8995

Re: Manually set delegate path to gs on windows

Under windows, a properly installed GS, has a registry setting the defines its location. That is all I know - I myself am not a windows user. OK, That my be the problem. Maybe a simple user don't have rights to read the registry? Same command works for a admin user. So when imagemagick is run by ad...
by boromb
2012-05-15T08:04:02-07:00
Forum: Users
Topic: Manually set delegate path to gs on windows
Replies: 4
Views: 8995

Manually set delegate path to gs on windows

Hello, I have a problem on my windows server where ImageMagick-6.7.6-Q8 and gs9.05 is installed when I try to convert a .pdf file to a .png one. When I run the command logged in as administrator everything works but a simple user can't run the same command. The output I get when I run as simple user...
by boromb
2010-09-27T01:51:56-07:00
Forum: Users
Topic: Crop image, clip out bottom of image
Replies: 5
Views: 28464

Re: Crop image, clip out bottom of image

Your command should work without "-50". But maybe some of your PNG files already have an offset. If you don't need these offsets anymore, then also add "+repage" at the start of your command: convert image.png +repage -gravity South -crop 700x200+0+0 +repage bottom.png Works gre...
by boromb
2010-09-27T00:29:14-07:00
Forum: Users
Topic: Crop image, clip out bottom of image
Replies: 5
Views: 28464

Re: Crop image, clip out bottom of image

x y starts at the top left of the images so 842 should be 842-200= 642 If you are bulk processing different size of images then you have loop through the image sizes to minus 200 from the height for the start position of the crop. -------- Following syntax works much better. Is this right? :) conve...
by boromb
2010-09-26T23:59:50-07:00
Forum: Users
Topic: Crop image, clip out bottom of image
Replies: 5
Views: 28464

Crop image, clip out bottom of image

Hello, I'm trying to extract bottom of a image to a new file. The image is about 700width and 842 height. I want to clip out 200 in height from bottom up. convert.exe image.png -crop 700x200+0+842 +repage bottom.png I get a new image but I don't feel that I'm doing this right because I get different...
by boromb
2009-10-05T05:36:26-07:00
Forum: Users
Topic: jpg->pdf works but image
Replies: 2
Views: 6336

Re: jpg->pdf works but image

Solved :)

When converting tiff to jpg I put -density 72 as parameter and it results in a
great PDF :)

Regards!
by boromb
2009-10-05T05:15:49-07:00
Forum: Users
Topic: jpg->pdf works but image
Replies: 2
Views: 6336

Re: jpg->pdf works but image

Converting "original" jpg to PDF works perfectly but converting
tiff to jpg and then convert those jpg to PDF creates
pdf pages containing images smaller than the page.

Hope for help!
by boromb
2009-10-05T04:54:41-07:00
Forum: Users
Topic: jpg->pdf works but image
Replies: 2
Views: 6336

jpg->pdf works but image

Hello! I'm converting tiff images to jpg but if the tiff image is of multipage type then I create pdf of those pages. Works good but the images added to pdf file are small for some reason. PDF page is much bigger than the image and I don't know why. Is there something to do to make Image fill out th...
by boromb
2009-09-22T06:50:50-07:00
Forum: Users
Topic: Removing edges of a document with shave
Replies: 1
Views: 8646

Re: Removing edges of a document with shave

I have solved my problem. I'm working with documents that have been scanned in and I wanted to remove all unnecessary "white" space before showing. The -trim function doesn't work very well in this situations. Everything explained on following page http://www.imagemagick.org/Usage/crop/#tr...
by boromb
2009-09-22T02:46:49-07:00
Forum: Users
Topic: Removing edges of a document with shave
Replies: 1
Views: 8646

Removing edges of a document with shave

Hello! I wonder if someone can help me remove amount of edges of a image. I have for example Jpg image that I want to "shave" and remove for example 10px from left and 15px from right. 10px from top and 25pc from bottom? I have found the syntax but for "shave" but I can't find ex...
by boromb
2009-03-30T06:10:19-07:00
Forum: Users
Topic: From JPG->JPG->PDF Help :)
Replies: 0
Views: 3370

From JPG->JPG->PDF Help :)

Hello! I need some help. I'm creating an application that first converts A4PDF->JPG or A4JPG->JPG. After that an user can do something with the picture (add more light). After that I would like to create an printable A4 pdf. In case of A4JPG-JPG I do following -scale 800 -quality 100 -trim. I'm scal...
by boromb
2009-02-04T00:31:14-07:00
Forum: Users
Topic: Rotattion makes text blurry
Replies: 5
Views: 11816

Re: Rotattion makes text blurry

Thank you very much for your help Anthony! My task is this: 1. Make all incoming PDF files showable in the application dialog. I need to convert PDF to some image files so they can be shown. 2. Fast and use as little hard drive as possible. 3. Do it with so good quality as possible My test shows tha...
by boromb
2009-02-03T07:47:31-07:00
Forum: Users
Topic: Rotattion makes text blurry
Replies: 5
Views: 11816

Re: Rotattion makes text blurry

Try this command to lessen the blurriness of your image: convert -density 400 text.pdf -resize 25% -quality 100 image.jpg Hello magick! I'm almost doing that. This is the command I run to convert PDF to jpg convert -density 300 text.pdf -scale 900 -quality 100 text.jpg Having quality 100 the rotati...
by boromb
2009-02-03T06:32:11-07:00
Forum: Users
Topic: Rotattion makes text blurry
Replies: 5
Views: 11816

Re: Rotattion makes text blurry

Hello!

Blurriness is less if I don't change the quality.
-quality 90 gives blurriness
-quality 100 seems to work fine
by boromb
2009-02-03T05:26:25-07:00
Forum: Users
Topic: Rotattion makes text blurry
Replies: 5
Views: 11816

Rotattion makes text blurry

Hello! I have tried to find a solution for my problem but I couldn't. I first convert a PDF file to JPG and then if user wants to, rotate the image but rotation makes text little blurry. The image is an invoice. White background and black text. But after rotation the text get some gray background. I...