New Post: Having trouble trying to replicate a ImageMagic montage command
Brilliant! And yes, images.AppendVertically() does do exactly what I want - you are a star! Mat
View ArticleNew Post: Having trouble trying to replicate a ImageMagic montage command
It turns out you cannot set the Geometry to null and that is why you are receiving that error message. I will still add the constructors for MontageSettings even though AppendHorizontally works for you.
View ArticleNew Post: Issue with MagickImage.Negate()
I have published the new release but I was unable to pin point the performance issue at this moment. We are still investigating it but I would suggest you disable OpenCL for now when you use the Negate...
View ArticleNew Post: Issue with MagickImage.Negate()
dlemstra wrote: I have published the new release but I was unable to pin point the performance issue at this moment. We are still investigating it but I would suggest you disable OpenCL for now when...
View ArticleNew Post: Issue with MagickImage.Negate()
Can you contact me through CodePlex? You disabled the 'contact' option in your profile. I would like to talk about your specific situation a bit more. And if we use the board it is going to be a bit...
View ArticleNew Post: Issue with MagickImage.Negate()
dlemstra wrote: Can you contact me through CodePlex? You disabled the 'contact' option in your profile. I would like to talk about your specific situation a bit more. And if we use the board it is...
View ArticleNew Post: Remove Background
Has this been made available in the release you made yesterday? As I need to handle background removing as well and just tried your exact code as posted in here and it didn't work
View ArticleNew Post: Open raw images
My previous post was incorrect. It seems the -0 option was added only in the build for ImageMagick and that is why it is not working for you. You will have to use the build of dcraw.exe that was...
View ArticleNew Post: Open raw images
Could you please provide the correct url on which the dcraw.exe (both 32 bit and 64 bit) could be downloaded, which is compliant to ImageMagick? Thanks in advance. Advice: Include the correct dcraw.exe...
View ArticleNew Post: Open raw images
I won't include the dcraw.exe executable in my zip file because it is licensed under GPL. You can find the link here:...
View ArticleNew Post: Remove Background
This works in the current release. I have e-mailed kratuna a working example.
View ArticleNew Post: Preferred method to make a polygon Transparent?
Hey all. I need to make a polygon within an image have a border, but other than that be completely transparent. I've figured out a way to do this, but am not sure if there is an easier way:// assume a...
View ArticleNew Post: Preferred method to make a polygon Transparent?
I don't really understand why you don't make it transparent right away? If you didn't need the border and always have the same polygon you could use a clip mask. But I think this is the correct...
View ArticleNew Post: offset values not working for MagickGeometry
Hello, I'm passing offset (x, y) values like image.Extend(new MagickGeometry(x, y, width, height)) but it does not apply offset to the image. Neither - or + values. Am I missing something? Best, Kerem
View ArticleNew Post: offset values not working for MagickGeometry
I can reproduce the issue. You should specify a negative value but Magick++ always make this positive. I will have to fix this in ImageMagick. I don't really understand why it needs to be negative so I...
View ArticleNew Post: offset values not working for MagickGeometry
Thank you, hope to see the fix soon. By this time do you have a recommendation for applying offset to images?
View ArticleNew Post: offset values not working for MagickGeometry
You could do the following as a temporary workaround:using (MagickImage image = new MagickImage(@"logo:")) { using (MagickImage background = new MagickImage(new MagickColor("yellow"), 800, 800)) {...
View ArticleNew Post: Preferred method to make a polygon Transparent?
Well, I was hoping to spare the details of where this exists in my process and isolate it as a single problem to solve ... what I am really doing is creating a series of polygons on top of a base map...
View ArticleNew Post: modifying either width or height?
This is probably a very basic question. I have a situation where I just want to modify one side of an image when doing a conversion, and have the aspect ration maintain. So if I want to make the width...
View Article