New Post: Issue with MagickImage.Negate()
In addition wanted to say that the Negate filter actually works really slow.. I am trying it on 300x50 image and there's notable lag..
View ArticleNew Post: Issue with MagickImage.Negate()
dlemstra wrote: Can you also try Composite? Composite seems to work fine
View ArticleNew Post: Issue with MagickImage.Negate()
Okay thanks, I will investigate this tonight / this weekend.
View ArticleNew Post: Contrast Stretch Availability
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: resize image gravity center +repage
hi, how to do the following conversion? Convert.exe -resize 240x320^ -gravity center +repage Source.gif Output.gif Above command basically resize the image (may lose in aspect ratio) crops its from...
View ArticleNew Post: resize image gravity center +repage
The -gravity center option is ignored by the -resize option. Your command translates to this:using (MagickImageCollection images = new MagickImageCollection("Source.gif")) { foreach (MagickImage image...
View ArticleNew Post: Issue with MagickImage.Negate()
The OpenCL bug has been fixed. I am still investigating the performance issue.
View ArticleNew Post: resize image gravity center +repage
thank you for the reply. will try the same and come back.
View ArticleNew Post: Issue with MagickImage.Negate()
Great! Thank You for taking your time into fixing this! Best of luck with the performance issue as well
View ArticleNew Post: How to combine multiple images (with different sizes) into one?
Hi, Can you please tell me, how to combine multiple images with different sizes into one image? I tried code from documentation and experimented with it for almost one day and I can't figure it out :-/...
View ArticleNew Post: How to combine multiple images (with different sizes) into one?
There is no build in functionality in montage that does a 'best fit' (http://www.imagemagick.org/Usage/montage/#null, read the remarks). You probably need an algorithm like this...
View ArticleNew Post: How to combine multiple images (with different sizes) into one?
Thank you for quick response :) . I was afraid there is no way how to do it "simple" but thank you for advice how to start. I started with some simple implementation of basic algorithm with GDI+. When...
View ArticleNew Post: Having trouble trying to replicate a ImageMagic montage command
Hi, Im trying to move some batch code image generation over to Magick.net to run it on an ASP.NET webpage. All of my image generation code is working but having trouble trying to get the below to work....
View ArticleNew Post: Having trouble trying to replicate a ImageMagic montage command
The -mode concatenate option sets a set of default values that are not set by the MontageSettings constructor. The MontageSettings constructor also sets a set of default options. I will add a...
View ArticleNew Post: Having trouble trying to replicate a ImageMagic montage command
Thanks for the quick reply. However I get a crash if I set montage_settings.Geometry to null Any rough ETA for when the constructor would be there? Just so I can make the call to go ahead and manually...
View ArticleNew Post: Open raw images
Problem stills occurs on August 1st 2014. When the following command is executed from the dos-prompt, dcraw fails as well: dcraw.exe -6 -w -O output.ppm input.cr2 However, if the parameter -O is...
View ArticleNew Post: Open raw images
This looks like a different problem and not that simple to fix. I think I have to see If I can integrate the code from dcraw into ImageMagick. For now you need to recompile dcraw yourself or load a...
View ArticleNew Post: Having trouble trying to replicate a ImageMagic montage command
I was planning to publish a new release tonight but I will delay it a couple of days so I can add the constructor and fix the Geometry bug. I just realized that for your situation...
View Article