Search found 73 matches

by troyd1
2011-05-26T06:20:23-07:00
Forum: Users
Topic: Resize problem running a bat vs command window
Replies: 3
Views: 7113

Resize problem running a bat vs command window

I have 6.6.9-7. q16 dynamic - window xp If I do: "convert -size 1650x1275 xc:"#ffffcc" -resize 50% test2.png" it work perfectly. I get an image that is 825x638. It I create a .bat file withthe same command, it ignores the % sign and create an image that is 50x39. I tried adding a...
by troyd1
2011-05-20T09:04:44-07:00
Forum: Users
Topic: Creating a label with text and rounded corners
Replies: 4
Views: 9898

Re: Creating a label with text and rounded corners

Thanks, Great stuff!
by troyd1
2011-05-20T07:41:12-07:00
Forum: Users
Topic: Trimming whitespace
Replies: 2
Views: 6286

Trimming whitespace

I have 6.6.9-7. q16 dynamic - window 2003 server I am using the caption command on a charactor and then centering it on another image. It moves vertically depending on the font and the character. I am guessing that it is because the font is adding whitespace either above or below the actual characte...
by troyd1
2011-05-13T15:25:13-07:00
Forum: Users
Topic: Creating a label with text and rounded corners
Replies: 4
Views: 9898

Creating a label with text and rounded corners

I have 6.6.9-7. q16 dynamic - window 2003 server I want to put text on an existing image with a white background. I used label, but that creates a box. I would like rounded corners. I could use the draw roundrectangle and then put the text inside, but I want it to have it size itself to fit the text...
by troyd1
2011-05-11T19:32:18-07:00
Forum: Users
Topic: Converting a grayscale image to a colored image
Replies: 5
Views: 11109

Re: Converting a grayscale image to a colored image

Thanks for the reply. The first option will work. I am confused though. I thought that the way image magic worked was like a stack so that convert -size 1650x1275 xc:"#ffff99" was the first "layer" and BG_SC1_Design_03.png would be the second layer so that +level-colors blue,whit...
by troyd1
2011-05-11T15:43:26-07:00
Forum: Users
Topic: Converting a grayscale image to a colored image
Replies: 5
Views: 11109

Re: Converting a grayscale image to a colored image

Sorry, 6.6.9-7. q16 dynamic - window 2003 server I tried some itteration using +level-color with promising results. Here is my command: convert -size 1650x1275 -density 300 xc:#ffff99 "c:\PCSHARE\PCGRAPHICS\ITWEB\REXFILES\BG_SC1_Design_03.png" +level-colors blue,white -composite -resize 20...
by troyd1
2011-05-11T13:18:47-07:00
Forum: Users
Topic: Converting a grayscale image to a colored image
Replies: 5
Views: 11109

Converting a grayscale image to a colored image

I have a grayscale image. I would like to convert it to another color, say blue. I would now want the black to be blue and the others to be shades of blue. How would I do that?
by troyd1
2011-05-03T09:18:41-07:00
Forum: Users
Topic: Getting system errors after upgrading
Replies: 2
Views: 5297

Re: Getting system errors after upgrading

Sorry, but are you saying I should install this?
by troyd1
2011-05-03T07:31:52-07:00
Forum: Users
Topic: Getting system errors after upgrading
Replies: 2
Views: 5297

Getting system errors after upgrading

I upgraded to imagemagick 6.6.9-7 16 bit dynamic and ghostscript 9.01 this morning on windows server. On bootup, I am now getting a window that keeps popping up the says convert.exe encountered a problem and need to stop. When I close the window, it pops up again. After about 10 times, it finally st...
by troyd1
2011-01-22T06:40:40-07:00
Forum: Developers
Topic: creating large pdf or postscript files
Replies: 7
Views: 15193

Re: creating large pdf or postscript files

can you use a 64 bit version on a 32 bit os?
by troyd1
2011-01-21T15:13:11-07:00
Forum: Developers
Topic: creating large pdf or postscript files
Replies: 7
Views: 15193

Re: creating large pdf or postscript files

Thanks for your help anyway. I have found that I can do convert -limit memory 500 -limit map 500 *.png *.pdf and it does not run out of memory. I have 8 gig of memory and it still crashes at 2 gig if I don't do the -limit. Is there a reason for this and is there a way to use all 8 gig's? I was think...
by troyd1
2011-01-21T08:07:08-07:00
Forum: Users
Topic: Which version to use static vs dll
Replies: 1
Views: 7109

Which version to use static vs dll

There are 4 exe versions for windows. q8 dll, q16 static, q8 dll and q8 static. I have been using the q16 and want to go to the q8 version. What is the difference between the dll version and the static version and what are the performance related specifics with it? I am trying to process huge amount...
by troyd1
2011-01-20T16:02:55-07:00
Forum: Developers
Topic: creating large pdf or postscript files
Replies: 7
Views: 15193

Re: creating large pdf or postscript files

Thanks. I have the q16 version, and don;t think the q8 version will make a difference. I saw this which is a way to limit memory: env MAGICK_TMPDIR=/data nice -5 \ convert -limit memory 32 -limit map 32 \ huge_9Gb_file.psd -scene 1 +adjoin layer_%d.png I tried a simple: convert -limit area 1000mb *....
by troyd1
2011-01-20T14:16:23-07:00
Forum: Developers
Topic: creating large pdf or postscript files
Replies: 7
Views: 15193

creating large pdf or postscript files

I want to create a 60,000 image multipage postscript or pdf file from png graphics. To test, I put 1,000 of them into a directory and then did "convert *.png multi.pdf or ps" both use up 2 gigs of memory and then abort. Is there a way to handle this. What I am trying to accomplish is to cr...
by troyd1
2011-01-18T15:32:57-07:00
Forum: Users
Topic: Creating a pdf or postcript file from variable data
Replies: 0
Views: 3920

Creating a pdf or postcript file from variable data

I am looking to take a number of records, create a convert command based on the data and create an image. I then want to create a multipage pdf or a postscript file to send to a printer. Say I end up with 1.jpg, 2.jpg, 3.jpg, 4.jpg. How would I make these graphics into a 4 page pdf? I found this: co...