Search found 10 matches

by artofsoundmusic
2013-01-27T20:36:15-07:00
Forum: Users
Topic: White background lost when upgraded imagemagick
Replies: 18
Views: 15336

Re: White background lost when upgraded imagemagick

Thank you! I'll pass this along to the hosting company and see if they have some different settings.
by artofsoundmusic
2013-01-27T16:16:27-07:00
Forum: Users
Topic: White background lost when upgraded imagemagick
Replies: 18
Views: 15336

Re: White background lost when upgraded imagemagick

And for ghostscript as well please. ;)
by artofsoundmusic
2013-01-27T16:12:58-07:00
Forum: Users
Topic: White background lost when upgraded imagemagick
Replies: 18
Views: 15336

Re: White background lost when upgraded imagemagick

snibgo,

can you post your imagemagick program settings? I think they can be obtained similar to the following

$ cd ImageMagick-6.8.2-0
$ ./configure
by artofsoundmusic
2013-01-27T12:39:03-07:00
Forum: Users
Topic: White background lost when upgraded imagemagick
Replies: 18
Views: 15336

Re: White background lost when upgraded imagemagick

I was able to get in a white background during the composite step. Quality seems to be improved but not as good as the left side of the imgur link. I have the hosting company trying to tackle the original problem I posted, we'll see where that goes.
by artofsoundmusic
2013-01-27T12:00:40-07:00
Forum: Users
Topic: White background lost when upgraded imagemagick
Replies: 18
Views: 15336

Re: White background lost when upgraded imagemagick

There may be another way to solve this. I already do a composite step later on, dissolving in a watermark $cmd = '/usr/bin/composite -dissolve '.$watermark_darkness.' '. $wmtype .' scaled_watermark.jpg ' . $file. ' '. $file; Is there a way I can put a white background behind all of this? I tried ...
by artofsoundmusic
2013-01-27T06:34:42-07:00
Forum: Users
Topic: White background lost when upgraded imagemagick
Replies: 18
Views: 15336

Re: White background lost when upgraded imagemagick

Yes I have. No luck.

I think I am going to install a local im/gs copy on my windows PC to see what happens. I think there is a problem with their (Linux) server.

My other choice is to try to bypass im and work directly with gs to create the pngs.
by artofsoundmusic
2013-01-27T06:07:45-07:00
Forum: Users
Topic: White background lost when upgraded imagemagick
Replies: 18
Views: 15336

Re: White background lost when upgraded imagemagick

I had the hosting company change delegates.xml and this caused the png creation to fail altogether. I then asked them set im and gs to the prior versions I had before their server crashed. The pngs generate again, but still the part o fthe page that is supposed to be white is transparent. I need to ...
by artofsoundmusic
2013-01-26T15:21:08-07:00
Forum: Users
Topic: White background lost when upgraded imagemagick
Replies: 18
Views: 15336

Re: White background lost when upgraded imagemagick

Thanks for the the responses. I tried the flatten suggestion, ..... $cmd = '/usr/bin/convert upload/foo.pdf -density 1200 -background White -flatten -resize '.$width.'x'.$height.' rename/foo.png '; this made the background white, but since the actual PDF is multipage (my sample was just 1) each page ...
by artofsoundmusic
2013-01-26T12:36:05-07:00
Forum: Users
Topic: White background lost when upgraded imagemagick
Replies: 18
Views: 15336

Re: White background lost when upgraded imagemagick

I was thinking about compositing and will do this if there isn't a slight easier fix.

The pdf can be gotten here

http://www.atlasbrass.com/scratch.pdf

Let me know what you think.
by artofsoundmusic
2013-01-26T09:54:37-07:00
Forum: Users
Topic: White background lost when upgraded imagemagick
Replies: 18
Views: 15336

White background lost when upgraded imagemagick

I'm converting PDFs to PNGs using ImageMagick and Ghostscript. For the attached link, the image on the left was created used ImageMagick 6.7.5 and Ghostscript 9.05. The command was $cmd = '/usr/bin/convert upload/foo.pdf -density 1200x1200 -quality 100 -resize '.$width.'x'.$height.' rename/foo.png ...