Thanks for your suggestions
Search found 6 matches
- 2012-12-19T09:33:02-07:00
- Forum: MagickWand
- Topic: MagickWand equivalent of -channel RGBA
- Replies: 6
- Views: 28601
Re: MagickWand equivalent of -channel RGBA
No, that doesn't work either.
Thanks for your suggestions
Thanks for your suggestions
- 2012-12-19T09:08:36-07:00
- Forum: MagickWand
- Topic: MagickWand equivalent of -channel RGBA
- Replies: 6
- Views: 28601
Re: MagickWand equivalent of -channel RGBA
Got it!
Code: Select all
MagickNewImage(coloredBG, width, height, color);
MagickBlurImageChannel(image, ChannelType.AllChannels, 0, 8);
MagickCompositeImage(coloredBG, image, CompositeOperator.CopyOpacityCompositeOp, 0, 0);
- 2012-12-19T07:08:13-07:00
- Forum: MagickWand
- Topic: MagickWand equivalent of -channel RGBA
- Replies: 6
- Views: 28601
Re: MagickWand equivalent of -channel RGBA
I tried to find a workaround but always get stuck. Maybe some of you can help me out with this?!
(I use c# + P/Invoke and my test image is a yellow square on a transparent background)
1.
IntPtr newWand = MagickMergeImageLayers(image, ImageLayerMethod.FlattenLayer);
MagickBlurImage(newWand, 0.0 ...
(I use c# + P/Invoke and my test image is a yellow square on a transparent background)
1.
IntPtr newWand = MagickMergeImageLayers(image, ImageLayerMethod.FlattenLayer);
MagickBlurImage(newWand, 0.0 ...
- 2012-12-19T06:05:01-07:00
- Forum: MagickWand
- Topic: MagickWand equivalent of -channel RGBA
- Replies: 6
- Views: 28601
Re: MagickWand equivalent of -channel RGBA
Thanks Pete for your reply.
I call this right before MagickBlurImage() but it doesn't work as my test image still has the creeping black pixels.
I call this right before MagickBlurImage() but it doesn't work as my test image still has the creeping black pixels.
- 2012-12-18T06:41:56-07:00
- Forum: MagickWand
- Topic: MagickWand equivalent of -channel RGBA
- Replies: 6
- Views: 28601
MagickWand equivalent of -channel RGBA
Hi guys,
i'm looking for the equivalent of the -channel RGBA command line option.
The reason is that i like to blur a image with transparency information. I get the same result as described here with the yellow circle with the black creeping pixels at the outline.
So how i can apply the -channel ...
i'm looking for the equivalent of the -channel RGBA command line option.
The reason is that i like to blur a image with transparency information. I get the same result as described here with the yellow circle with the black creeping pixels at the outline.
So how i can apply the -channel ...
- 2012-12-12T05:41:07-07:00
- Forum: MagickWand
- Topic: Apply a MagickWand to a DrawingWand
- Replies: 0
- Views: 16070
Apply a MagickWand to a DrawingWand
Hi folks,
is there a way to apply a MagickWand into a DrawingWand i may overlooked? I only found "MagickDrawImage(x)" where i can apply a DrawingWand into a MagickWand.
The reason is that i have a bitmap font where i like to apply a stroke. Therefore i load the bitmap font texture into a ...
is there a way to apply a MagickWand into a DrawingWand i may overlooked? I only found "MagickDrawImage(x)" where i can apply a DrawingWand into a MagickWand.
The reason is that i have a bitmap font where i like to apply a stroke. Therefore i load the bitmap font texture into a ...