New Post: Converting PDFs to Thumbnails creates Blur
The problem has been found and will be resolved in the next version of Magick.NET (7.0.0.0022)
View ArticleNew Post: Compressing pdf files
Hello, I was wondering if there is a way to compress existing pdf files with this library. I've played wit it a bit and been able to extract pages to other image format but can't figure out if there is...
View ArticleNew Post: Compressing pdf files
You don't want to use Magick.NET if you want to compress PDF files. Magick.NET will convert the vector data to raster data and that will increase the size when you write the images back to a PDF file....
View ArticleNew Post: JPEG Progressive Format Option
Could you please help me with one simple thing understanding ? Can I detect JPEG image Format Option using Magick.NET? I mean, am I able to figure out if a JPEG image is saved with Format Option -...
View ArticleNew Post: JPEG Progressive Format Option
If you want to check if a JPEG image is progressive you should check if the Interlace property of the MagickImage is set to Jpeg. And if you want to change it to baseline you should set the Interlace...
View ArticleNew Post: JPEG Progressive Format Option
Thank you very much for quick answer! Are you sure this feature works as expected? I'm setting Interlace property to NoInterlace, saving my Image and everything is fine. When I open this image again, I...
View ArticleNew Post: JPEG Progressive Format Option
Is it possible that Photoshop is not showing you the current value of the image?
View ArticleNew Post: JPEG Progressive Format Option
Yes, I thought about this, but when I'm trying to resave in Photoshop an image with "Baseline (Standard)" Format Option - I see the that appropriate radio button is selected. Also could you please tell...
View ArticleNew Post: JPEG Progressive Format Option
I don't think you can get the difference between Baseline (Standard)" and "Baseline Optimized" with Magick.NET. Maybe it does lossless compression? You can do that with Magick.NET with the following...
View ArticleNew Post: JPEG Progressive Format Option
The main reason why I need to figure out image Format Option is that some API integrated into my system works only with JPEG in "Baseline (Standard)" format. That's why I really need to check this...
View ArticleNew Post: JPEG Progressive Format Option
I found the following post that describes the difference: http://digitalscrapperclasses.com/forums/showthread.php?6546-Selecting-Baseline-Standard-vs-Baseline-Optimized. I really wonder if there is...
View ArticleNew Post: Bad Nuget package 7.0.0.0021, 7.0.0.0020
7.0.0.0014 and prior work for me. 21 and 20 fail saying they can't find a Wrapper DLL? Tried uninstalling and reinstalling the most recent packages several times, definitely dead.
View ArticleNew Post: Difference between MagickFormat.Jpeg and MagickFormat.Jpg
I actually think this is a good idea. We don't need to change every single format, just modify the comments for the Jpeg format to state this is the format .jpg files will show by default, not Jpg....
View ArticleNew Post: Bad Nuget package 7.0.0.0021, 7.0.0.0020
Did you install the Visual C++ Redistributable for Visual Studio 2015? This is required since version 7.0.0.0020.
View ArticleNew Post: Difference between MagickFormat.Jpeg and MagickFormat.Jpg
That's actually a good idea. I will just change the comment for .jpg :)
View ArticleNew Post: Create a grayscale png image from a byte buffer
Hello everyone, I would like to create a grayscale png image from a byte buffer containing the 8bits gray values. The following code show how i do until now. This is clearly not the best way so what is...
View ArticleNew Post: Create a grayscale png image from a byte buffer
here is a way to do it a bit better: //convert raw buffer to grayscale 8 bits png image static void SaveGrayscale8bitsPngImage(byte[] pixels, string path) { MagickReadSettings settings = new...
View ArticleNew Post: Create a grayscale png image from a byte buffer
Can you share a file that contains pixel data? Feel free to contact me through CodePlex when you don't want to share it publicly. I am really surprised that you need to call...
View ArticleNew Post: Create a grayscale png image from a byte buffer
In fact my input is a pixel array (byte[] pixels), I get this array from the camera API i'm using. I just don't know how to transform this array into a MagickImage. How do I tell to Magick.net library...
View Article