Search found 2 matches

by Falcon
2007-06-14T23:56:37-07:00
Forum: MagickWand
Topic: remove alpha channel from TIFF
Replies: 4
Views: 36268

Re: remove alpha channel from TIFF

anthony wrote:Generally by telling IM to turn off the "Matte" channel.
I don't find functions in MagickWand for manipulation with channels.
How implement turning off "Matte" channel in code.
by Falcon
2007-06-14T04:49:17-07:00
Forum: MagickWand
Topic: remove alpha channel from TIFF
Replies: 4
Views: 36268

remove alpha channel from TIFF

Hi!
I am using MagickWand in PHP.

I create image and save in TIFF, but ImageMagick generate TIFF file with alpha channel.


$mgck_wnd = NewMagickWand();
MagickNewImage( $mgck_wnd, WIDTH, HEIGHT );

// Draw
....

MagickSetImageColorspace( $mgck_wnd, MW_CMYKColorspace );
MagickSetImageType( $mgck ...