New Post: Converting MagicImageCollection to Base64 in parallel
I am using v4.0.30319 of GraphicsMagick.NET.AnyCPU The code is very simple - I have a byte array containing a multipage tiff. From there the applicable code isMagickImageCollection returnImage = null;...
View ArticleNew Post: Converting MagicImageCollection to Base64 in parallel
I can reproduce the issue. Not sure what is causing this yet but I am working on a fix. I will get back to you when this issue has been fixed.
View ArticleNew Post: Create PDF very slow.
Hello. First, congratulations on the great work. I have an application that transforms several images to a pdf file. These images are scanned at 300 dpi and compressed Tiff Group 4. The final size of...
View ArticleNew Post: Converting MagicImageCollection to Base64 in parallel
Thank you for all your help!
View ArticleNew Post: Magick.NET - Problem with x64-dll
That can't be true how much time I wasted on this problem. This could be helpful for everyone: By default IIS Express is launched in 32-bit mode in Visual Studio 2013 Express Web. You can verify this...
View ArticleNew Post: Converting MagicImageCollection to Base64 in parallel
The bug has been found and will be fixed in GraphicsMagick.NET 1.3.20.2 that will be released soon.
View ArticleNew Post: Resize is not working properly
Sorry, I have been out of town the last couple of days. When I open 'after2.tif' in Photoshop, this is what I see? I only see about 1/4 of it, and I am unable to move view any more of...
View ArticleNew Post: Create PDF very slow.
Magick.NET will create those temporary files when it cannot allocate enough memory to store the image. The size of the file is not related to the amount of memory that is required to store an image....
View ArticleNew Post: Gif frame rate
When creating an animated gif from multiple image files, how can you set how many frames it should show per second?
View ArticleNew Post: Gif frame rate
You can change the frame rate by setting the AnimationDelay property of each image.
View ArticleNew Post: Gif frame rate
Thank you for your reply. If I want to show 25 fps... .AnimationDelay = 1000 / 25; Is that correct?
View ArticleNew Post: Adding installed Image Color Profiles (.icm) into an image in C#
In one of my C# project (.net framework 4.0), I need to add the installed color profiles in windows, into images if it already have no color profiles in it. I Google and found nothing in .net for the...
View ArticleNew Post: Resize is not working properly
Hello. Did you have any ideas on this? My user is upset that I don't have any answers on this yet.
View ArticleNew Post: Adding installed Image Color Profiles (.icm) into an image in C#
Thank you for posting your message here also, I was wondering what you are trying to attempt. Do you want to apply a color profile to your image or do you want to embed a color profile in your image?...
View ArticleNew Post: Gif frame rate
It should be 100/25 = 4. The default ticks are 1/100 of a second. You can find a good explanation here: http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=14739.
View ArticleNew Post: Adding installed Image Color Profiles (.icm) into an image in C#
Thank you for the reply. I did the same but when I load the image in another test application using the same code and tried to get the profile it returned null. Following is the code of the test...
View ArticleNew Post: Adding installed Image Color Profiles (.icm) into an image in C#
If I apply a color profile from available profiles in ColorProfile class like SRGB then the image.GetColorProfile(); did return a profile in the ColorProfile object in the test application
View ArticleNew Post: Adding installed Image Color Profiles (.icm) into an image in C#
Is it possible that your test if (prof.Name.Equals(comboBoxRGBProfile.SelectedItem)) is not correct? And image.AddProfile(new ImageMagick.ColorProfile (prof.FilePath)); never gets called?
View ArticleNew Post: Adding installed Image Color Profiles (.icm) into an image in C#
Its absolutely not the case. I just test it out and took a screen shot of ProfileNames property which shows the profile added in it. What I believe that the profile get embedded in the image but there...
View ArticleNew Post: Adding installed Image Color Profiles (.icm) into an image in C#
Are you testing with JPEG or PNG? The PNG reader applies the profile when it reads the image and removes it.
View Article