New Post: CR2 to JPG error
I googled and found the latest compiled version of dcraw.exe here:http://axelriet.blogspot.com/2009/01/ready-made-dcrawexe-8901417-20090121.htmlI placed both copies, dcraw.exe, and dcraw64.exe in my...
View ArticleNew Post: .Resize is not working, not sure why
Thank you. I will look into that. What I am doing is saving first the Master, then resizing it and saving, then adding watermark and saving, and then resizing into thumbnail size. I don't think that...
View ArticleNew Post: .Resize is not working, not sure why
What is the best practice in your opinion? Save 4 versions, Master, 600x600 to buy, 600x600 with watermark to view, and thumbnail for initial display. or Save just the master picture and then generate...
View ArticleNew Post: CR2 to JPG error
You will need to download the InageMagick version of dcraw as described here: https://magick.codeplex.com/wikipage?title=Read%20raw%20image%20from%20camera&referringTitle=Documentation. Other...
View ArticleNew Post: .Resize is not working, not sure why
The best practice depends on your situation/application. My first thought would be on demand with the Magick.NET module but that might not work in your situation. Might be easier to just always create...
View ArticleNew Post: CR2 to JPG error
There is no .zip file called ImageMagick-7.X.X-X-Q16-x86-windows.zip at the location you mention. There are a ton of downloads. The only windows zips are: ImageMagick-7.0.5-4-portable-Q16-x86.zip...
View ArticleNew Post: CR2 to JPG error
Ok, I found dcraw.exe in both of the above .zip files. The operative word is "portable", I guess. Maybe the link should be changed in Documentation. If my system is 64-bit Windows 7, and I have...
View ArticleNew Post: CR2 to JPG error
I installed the X64 first and then replace with x86 and am receiving this error which is the same. An exception of type 'ImageMagick.MagickBlobErrorException' occurred in Magick.NET-Q8-AnyCPU.dll but...
View ArticleNew Post: CR2 to JPG error
I should add this to the documentation. If you want to use dcraw together with the AnyCPU version of Magick.NET you should set the directory where the x86/x64 versions are extracted. You can use...
View ArticleNew Post: Converting from PDF to PNG image quality loss.
I tried that method before the one I've shown above, both out putted a blurred PNG image.
View ArticleNew Post: Converting from PDF to PNG image quality loss.
Can you share a link to your input file? I can test it at the end of this week.
View ArticleNew Post: Converting from PDF to PNG image quality loss.
Not easily, we're reading in the image as a byte array returned from a third party API.
View ArticleNew Post: Converting from PDF to PNG image quality loss.
You could do a File.WriteAllBytes so save the bytes as a file and put that on something like dropbox?
View ArticleNew Post: Converting from PDF to PNG image quality loss.
Excellent Idea, here is the PDF file. We're attempting to convert it to an PNG that is 4inchs in width and 6inches in length with the clearest quality possible....
View ArticleNew Post: PDF CMYK Embedded
Hi, my PDF is losing the ColorSpace, is this normal? When I open in Photoshop I got a alert that the file don't have an embedded CMYK profile. If export JPG only, the profile is embedded. My code to...
View ArticleNew Post: PDF CMYK Embedded
I read the docs again and realized that Ghostscript is needed to convert, but I cannot install it. Magick.NET still generates the PDF without Ghostscript, so I believe in my case is not needed?
View ArticleNew Post: Converting from PDF to PNG image quality loss.
You should use two separate density settings: MagickReadSettings settings = new MagickReadSettings() { Density = new Density(600) }; using (MagickImage image = new...
View ArticleNew Post: Converting from PDF to PNG image quality loss.
Should I expect the same result when passing in a byte[] into the constructor on MagickImage? I've taken the code you provided above and replaced the local pdf path with a byte[] but the image is huge,...
View ArticleNew Post: Converting from PDF to PNG image quality loss.
I'm expecting to the outputed PNG to be 4inchs in width and 6inchs in height. .ToGeometry(4, 6); should achieve this, correct?
View ArticleNew Post: Converting from PDF to PNG image quality loss.
Changing the code to do the following; Density desiredDensity = new Density(94); Specifying 94 instead of 400 gives me a label the size I expected but the quality is awful, so I can only assume this is...
View Article