Search found 2 matches

by jeje35
2014-08-06T06:12:14-07:00
Forum: Users
Topic: MagickSeparateImageChannel
Replies: 0
Views: 3235

MagickSeparateImageChannel

Hi, I'm trying to convert a simple command line SR.png -channel RGBA -separate SR_%d.png to a MagickWand program.



mw_logo = NewMagickWand();
status = MagickReadImage(mw_logo, argv[2]); // read logo
if (status == MagickFalse)
ThrowWandException(mw_logo);

mw_r = CloneMagickWand(mw_logo);
mw ...
by jeje35
2014-08-06T03:02:52-07:00
Forum: MagickWand
Topic: MagickSeparateImageChannel
Replies: 0
Views: 10982

MagickSeparateImageChannel

Hi, I'm trying to convert a simple command line SR.png -channel RGBA -separate SR_%d.png to a MagickWand program.

Here's my code:

mw_logo = NewMagickWand();
status = MagickReadImage(mw_logo, argv[2]); // read logo
if (status == MagickFalse)
ThrowWandException(mw_logo);

mw_r ...