New Post: vs2010 error
You don't need to install ImageMagick, all the ImagMagick code is included in the .NET library.
View ArticleNew Post: possible .eps to .png bug
The first image looks 'fine' because you are resizing an image that is 1593x927 to 3000x1746. The second image looks terrible because you are resizing an image that is 297x80 to 3000x808. You should...
View ArticleNew Post: Is it possible to create tiled GIF images with Magick.NET?
So, is it possible to create tiled GIFs? This image might help to understand what i want:http://upload.wikimedia.org/wikipedia/commons/a/aa/SmallFullColourGIF.gif Essentialy you can make multiple...
View ArticleNew Post: Command in Magick.net
Hi I would like to setup PageSize using Magick.net I need equalent method for this -define pdf:use-cropbox=true or -define pdf:use-trimbox=true I have tried few things but nothing worked. Could you any...
View ArticleNew Post: System.AccessViolationException when comparing two images
I fixed the issue in ImageMagick. This problem will be fixed in the next release of Magick.NET and you can then remove the safe guard.
View ArticleNew Post: .ai being treated as .pdf
The next version of Magick.NET will report the format as AI instead of PDF. The following unit test will make sure this is tested every release: https://magick.codeplex.com/SourceControl/changeset/37762.
View ArticleNew Post: System.AccessViolationException when comparing two images
Thanks for looking into this and resolving the issue dlemstra.
View ArticleNew Post: Is it possible to create tiled GIF images with Magick.NET?
You should scroll down a bit more. The mosaic example is not the example for an animated gif. You should use the one that says 'Create animated gif.'. For your case this means that you have to add an...
View ArticleNew Post: ASP.NET and thumbnail creation
We have an ASP.NET / Web API site that accepts uploads and creates thumbnails from them. I have pieced-together various optimization ideas from here and in your Documentation. Some of those include...
View ArticleNew Post: possible .eps to .png bug
Great. Setting the density fixed my issue. You had actually told me that in a previous question I posted but forgot to set the density in my current code. Thanks.
View ArticleNew Post: Command in Magick.net
I am working on some new classes to make this easier. The one for PDF will be available in the next release of Magick.NET. You can then use the following code:// You will be able to do this in the next...
View ArticleNew Post: ASP.NET and thumbnail creation
If it is reporting true it is most likely using OpenCL on your processor. But this is only used for a limited set of operations. You might want to consider to use the Q8 version of Magick.NET to lower...
View ArticleNew Post: Is it possible to create tiled GIF images with Magick.NET?
Yes i did use the 'Create animated gif.' example, but didnt come up with a solution, how exactly do i add multiple images to a single frame? What i have for now are 4 of these images and i want to add...
View ArticleNew Post: Command in Magick.net
Thank you for your reply. This is very useful. Is the below code works If I want to set use-cropbox true in MagicReadSettings? MagickReadSettings settings = new MagickReadSettings() { Density = new...
View ArticleNew Post: Command in Magick.net
The below code behaves same and works as expected :) :) MagickReadSettings settings = new MagickReadSettings() { Density = new MagickGeometry(300, 300) }; newSettings.SetDefine(MagickFormat.Pdf,...
View ArticleNew Post: Command in Magick.net
You are correct, the example above does the same. I am planning a new release this weekend so you could change your code to use the PdfReadDefines class then.
View ArticleNew Post: Crop/Trim White space around an image
Hi, I would like to crop the white space around an image. Below is the code I'm using. But it doesn't works. Am I missing anything?using (MagickImage image = new MagickImage(@"D:\image\input.jpg")) {...
View ArticleNew Post: Crop/Trim White space around an image
The problem is that you are reading a jpeg files as your input. Jpg is lossy so your 'white' pixels are not fully white. You can fix this by setting a ColorFuzz percentage. You might have to tweak the...
View ArticleNew Post: Write Blob error on .ai to .png conversion
Using this file:https://www.dropbox.com/s/k38poj21mcazaza/CN%20Studios%20Logo.ai?dl=0 and this code: string sourceFilePath = <file>; using (MagickImage file = new MagickImage(sourceFilePath)) {...
View Article