Brad Robinson
Brad Robinson
Thanks Rene.. Unfortunately I've had to put my project on hold for the moment due to other commitments but this will be useful when I get back to it.
Sounds good, I look forward to it.
Not sure how feasible this is, and I realize this is adding to the original requirement, but the ideal for me would be something like this: ```cs IMagickImage CloneCropAndResize(IMagickGeometry? crop,...
Ah ok, I see what you mean. Perhaps `NewMethod()` could be `CloneThen()`. ```cs var newImage = image.CloneThen().Resize(100, 100); ``` I guess the downside to this is it might be tempting...
How about: ``` public MagickImage(PixelChannel[] channels, int width, int height) ```
Hrm, not sure then. Perhaps: ``` public void AddChannel(PixelChannel channel); public void RemoveChannel(PixelChannel channel); ```
Yes, that would probably cover it - I only ever deal with one meta channel and I just need to be able to add it/remove it.
Thanks for your work on this. I haven't had a chance to test this myself yet, but appreciate the effort.
Hi @charlenni Does @handerss-tibco answer help? Off hand, I'm not 100% sure what's going on here. Get back to me if you still can't get it to work and I'll...
I'm not opposed to this, but busy on another project right now and don't have time to do it myself. If you'd like to do the work and send a...