Search found 6 matches

by merv
2015-10-15T06:14:51-07:00
Forum: Bugs
Topic: PHP ImageMagick, WTF Inconsistency using convert and PNG transparency
Replies: 7
Views: 6098

Re: PHP ImageMagick, WTF Inconsistency using convert and PNG transparency

How can I upgrade this? This was the package available on PHP
by merv
2015-10-14T17:26:22-07:00
Forum: Bugs
Topic: PHP ImageMagick, WTF Inconsistency using convert and PNG transparency
Replies: 7
Views: 6098

Re: PHP ImageMagick, WTF Inconsistency using convert and PNG transparency


$ convert --version
Version: ImageMagick 6.6.9-7 2014-03-06 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2011 ImageMagick Studio LLC
Features: OpenMP


From PHP Info:

imagick
imagick module enabled
imagick module version 3.1.0RC1
imagick classes Imagick, ImagickDraw ...
by merv
2015-10-14T17:14:00-07:00
Forum: Bugs
Topic: PHP ImageMagick, WTF Inconsistency using convert and PNG transparency
Replies: 7
Views: 6098

PHP ImageMagick, WTF Inconsistency using convert and PNG transparency

From inside a bash script:

convert /tmp/temp.png -alpha activate -channel RGBA -background "rgba(0,0,0,0.0)" -flop /tmp/temp2.png

I'm no expert but it seems to me that this is WAY TOO MUCH to just flop a transparent PNG without scrooing the transparency pooch.

I've tried a bunch of variants ...
by merv
2013-05-05T10:54:14-07:00
Forum: Users
Topic: noob needs a gui for imagemagick
Replies: 12
Views: 30283

Re: noob needs a gui for imagemagick

The GIMP Batch Process can be used for most things
by merv
2013-05-05T10:52:57-07:00
Forum: Users
Topic: Is there a gui for ImageMagick
Replies: 3
Views: 21121

Re: Is there a gui for ImageMagick

The GIMP Batch Process can be used for most things
by merv
2013-04-12T09:47:52-07:00
Forum: Users
Topic: Magick++.h and Code::Blocks ++ gcc (mingw)
Replies: 0
Views: 6146

Magick++.h and Code::Blocks ++ gcc (mingw)

Even though Magick++.h is found and CORE* has been added to libs dir:

M:\DEV\Empire - Codeblocks\Empire In The Sky\ImageLoaders.cpp|14|error: request for member 'read' in 'magick', which is of non-class type 'Magick::Image()'|

Code:


#include <Magick++.h>

bool LoadPNG( string filename, Indexed ...