Search found 2 matches
- 2014-08-06T06:12:14-07:00
- Forum: Users
- Topic: MagickSeparateImageChannel
- Replies: 0
- Views: 2759
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_g ...
- 2014-08-06T03:02:52-07:00
- Forum: MagickWand
- Topic: MagickSeparateImageChannel
- Replies: 0
- Views: 9183
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 = CloneMagickWand(mw_logo ...