New Post: Best approach to create PDF -> PNG thumbnails on an Azure Web Site?
Awesome! I'll give it a try. Thanks.
View ArticleNew Post: Performance Issues - taking to much time to convert images
It is not that strange that it is using 100% of your CPU. The resize actions are CPU intensive and Magick.NET uses as much processor power as it can get. The next version of Magick.NET will include...
View ArticleNew Post: Convert PDF httpPostedFile to JPG Base64 AND save JPG on disk
On the same page, I need to convert the PDF to Base64 JPG AND save the JPG to diskCode to convert to Base64 which works fine.Using image As New MagickImage(file.InputStream) Using ms As New...
View ArticleNew Post: Performance Issues - taking to much time to convert images
Oks! So I think a solution will be to add more CPU to our photoconverter server. Thanks, you very much. I will be waiting anxious the new version with OpenCL. :D
View ArticleNew Post: Convert PDF httpPostedFile to JPG Base64 AND save JPG on disk
I cannot explain why your second example is not working. I made a fix in ImageMagick to print a better error message. You should try again after the next release that will be published this week. You...
View ArticleNew Post: CMYK to RGB for JPEG
I have looked at several threads here regarding CMYK to RGB conversion. I've also modeled my code after the samples. Neither of these routines places an icc profile in the jpeg file. I'm using version...
View ArticleNew Post: CMYK to RGB for JPEG
Do you want to perform a CMYK to RGB conversion or do you want to add your profile to the output image? Does your source image contain a color profile? Can you add a link to your input image?
View ArticleNew Post: CMYK to RGB for JPEG
I want to convert CMYK to RGB and embed an icc profile so the colors match. I don't believe my source image has a color profile. Here's the direct link...
View ArticleNew Post: CMYK to RGB for JPEG
There will be no color conversion if the original image does not contain an image profile. I have updated the documentation to explain this better. You should do the following:using (MagickImage image...
View ArticleNew Post: Convert a pdf page to image
Yes, you can find source code on this post. Good luck.http://stackoverflow.com/questions/4809314/issues-on-imagemagick-for-converting-pdf-to-image
View ArticleNew Post: CMYK to RGB for JPEG
Thanks Dirk. I will try that to see if it works. It's just a bit confusing because ImageMagick/GraphicsMagick doesn't require an image to have a profile to correct the color using the convert command....
View ArticleNew Post: CMYK to RGB for JPEG
The colors are closer but they do not match the original. I assume that's because it's mapping USWebCoatedSWOP to SRGB. I'm not sure what convert.exe is doing it but it is working perfectly. Is it...
View ArticleNew Post: CMYK to RGB for JPEG
Can you also add a link to the result you are getting from convert? I am not getting the correct result on the command line when I don't specify the CMYK profile.
View ArticleNew Post: CMYK to RGB for JPEG
Input File https://www.dropbox.com/s/96ek76b1nafv7as/00000003.jpg Output File https://www.dropbox.com/s/ykn0uc0qmh0n2bk/i.jpg sRGB.icc used https://www.dropbox.com/s/sfem5bqehu8l2ic/sRGB.icc sRGB v4...
View ArticleNew Post: Convert PDF httpPostedFile to JPG Base64 AND save JPG on disk
I'll try today.... Thanks you your help.
View ArticleNew Post: CMYK to RGB for JPEG
ImageMagick and GraphicsMagick produce different results so you should really use convert instead of gm. Your output image is still CMYK and the colors are negated in Windows photo...
View ArticleNew Post: CMYK to RGB for JPEG
My mistake. GM converts it properly, IM does not as you have shown however the colors are fine when opened with a program that respects the color profile such as Windows Paint in Windows 8.1. I guess...
View ArticleNew Post: How to resize PDF converted to JPEG
I need to resize an PDF converted to a JPEG which is converted to a Base64 using the method ToBase64() I tried the following but didn't workDim settings As New MagickReadSettings() settings.Density =...
View ArticleNew Post: How to resize PDF converted to JPEG
Specifying the size of the image in MagickReadSettings does not automatically resize it. It is a setting for images that don't have predefined dimensions. You will have to call the Resize method....
View ArticleNew Post: CMYK to RGB for JPEG
Can you add a link to your GM output image? It is strange that identify does not report an embedded icc profile.
View Article