New Post: Using async/await to prevent MagickCacheErrorException
Thanks! I implemented it and it works great. It does not seem much slower with 2 threads in comparison to having all available threads working on it, but at least I am sure that 20 threads will not try...
View ArticleNew Post: Magick Script & Composite
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Layers with distort perspective
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Writing to an already open stream?
I have a possible issue when writing to an open stream. My code works like this:Open a file stream called destinationStream:create MagickImage objectcall object.Write(destinationStream) which works...
View ArticleNew Post: Writing to an already open stream?
Aren't you missing a step in the example above? Step 5 calls Merge of object2 but MagickImage does not contain a Merge method. You probably created a MagickImageCollection at some point. The reason you...
View ArticleNew Post: Writing to an already open stream?
I apologize for my pseudo code not being 100% accurate. I am in fact creating an MagickImageCollection and calling Merge on that guy, so we're good there. The second thing is that my code looks almost...
View ArticleNew Post: Using montage command with Magick.NET
Hi, I could not find a way to reproduce result of montage in Magick.NET. Can you help? Best, Kerem
View ArticleNew Post: Writing to an already open stream?
I think you should read my reply again. Each write action creates one image. When you write two MagickImages to the same stream they don't automatically get merged. And it also does not mean that...
View ArticleNew Post: Using montage command with Magick.NET
Montage is not supported at the moment. I will create a work item to add this in the future.
View ArticleNew Post: Using montage command with Magick.NET
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Using montage command with Magick.NET
Thank you. I read a comment on previous discussion. "Everything that is possible with MagickScript is possible with the classes of Magick.NET." Can't we use command-line string to use imagemagick api...
View ArticleNew Post: Using montage command with Magick.NET
I think you are mixing something up. MagickScript is an xml 'language' for executing methods in the Magick.NET classes it is not included in ImageMagick. And the everything should probably be almost...
View ArticleNew Post: Using montage command with Magick.NET
Got it. I'll try figure out some other way.
View ArticleNew Post: Converting 2 pages TIF Files to jpg
Hi dlemstra, Thanks for the new release. I'm gonna try it now. Thanks again.
View ArticleNew Post: Converting 2 pages TIF Files to jpg
workstation22 wrote: Hi dlemstra, Thanks for the new release. I'm gonna try it now. Thanks again. It worked! Thank you so much dlmenstra!
View ArticleNew Post: Performance Issues - taking to much time to convert images
Hi All, We are using a Window Service to read messages from a Message Queue Server, then we use Magick.NET to convert the photos into 3 different size: 320x240 640x480 1280x720 The size og the images...
View ArticleNew Post: Performance Issues - taking to much time to convert images
Are you converting multiple images at the same time? If you convert too much images at the same time you can run out of memory and Magick.NET will switch to disk cache which is terribly slow. Have you...
View ArticleNew Post: Performance Issues - taking to much time to convert images
Hi dlemsta, Thank you for you fast answer. -Are you converting multiple images at the same time? No we are converting one a time. -Have you measured which part of your action is slow? Well the think it...
View ArticleNew Post: Best approach to create PDF -> PNG thumbnails on an Azure Web Site?
I was thinking about using Magick.NET to create PNG thumbnails of PDFs that are uploaded to a website. However, the website is hosted on Azure Web Sites and therefore I cannot install Ghostscript on...
View ArticleNew Post: Best approach to create PDF -> PNG thumbnails on an Azure Web Site?
It should be possible to use Ghostscript without installing it. You should first download and install Ghostscript on your own machine. If you want to use the x64 version of Magick.NET you should...
View Article