New Post: Multipage PDF to ONE MULTIPAGE (!!!) Tiff
You are very close actually. You should use the write method of MagickImageCollection when you want to write multiple pages instead of a single page: MagickReadSettings settings = new...
View ArticleNew Post: System.TypeInitializationException: The type initializer for ''...
This doesn't look like a Magick.NET issue. It has to do with the user that is used in IIS. With a quick search on Google I found out that an IISRESET might fix your issue. Have you tried that?
View ArticleNew Post: System.TypeInitializationException: The type initializer for ''...
Thanks, but i tried iisreset many times.
View ArticleNew Post: System.TypeInitializationException: The type initializer for ''...
What is the .NET version of your application pool? Maybe you are behind on Windows updates? This could be a .NET bug.
View ArticleNew Post: System.TypeInitializationException: The type initializer for ''...
I don't really know how I can assist you further with this issue. If you manage to solve it please let us know by a reply to this topic.
View ArticleNew Post: Changing the temp file location
Hi, I've tried to alter this by changing the many environment variables listed online. But to no avail. Is there a particular baked-in path in Magick.Net? or can I configure that? Thanks Simon
View ArticleNew Post: Changing the temp file location
Have you tried calling MagickNET.SetTempDirectory? I have updated the documentation to include an example of that.
View ArticleNew Post: Changing the temp file location
dlemstra wrote: Have you tried calling MagickNET.SetTempDirectory? I have updated the documentation to include an example of that. No I was not aware of that, I will give that a go, thank you :)
View ArticleNew Post: Changing the temp file location
I added it to the documentation when you asked the question :) I realized that this wasn't documented.
View ArticleNew Post: Conversion of 12 x 36 inch 300 dpi 100 images performance
Hi. Thanks for providing us support here. We are using vb.net to do the following:Take 100 images of size 12in x 36in and 300dpi and we want to do some color adjustments.Check and resize all images to...
View ArticleNew Post: Conversion of 12 x 36 inch 300 dpi 100 images performance
You are working with pixels in Magick.NET. What are the dimensions of your input images? Are they really 13392x40622? Are some of the input images bigger then that size or will you make your source...
View ArticleNew Post: Conversion of 12 x 36 inch 300 dpi 100 images performance
Images are to print on Digital and Offset machines. So final output has to be 300dpi PDF. Images resolution = 12 * 300 X 36 * 300. That means 3600 X 10800 pixels. This will be maximum size restricted....
View ArticleNew Post: Conversion of 12 x 36 inch 300 dpi 100 images performance
You are right, my dimensions calculation is wrong. But that means you will be working with really big images and that will take a lot of time. I would also advise you to use mgkImage.Evalute to set the...
View ArticleNew Post: Conversion of 12 x 36 inch 300 dpi 100 images performance
I need to speed up the process of setting channel values. Kindly give me an example of using Parallel For for my array of images, and also i was unable to use Evaluate to reduce red values. Say I have...
View ArticleNew Post: Force Ghostscript to load all fonts
Thanks for the info. I followed these steps successfully but some of the embedded fonts within my PDF still aren't rendering correctly. I'm sure it's an issue with Ghostscript and I'm working directly...
View ArticleNew Post: Force Ghostscript to load all fonts
Thank you for coming back to this thread. If you manage to resolve this with the Ghostscript team then please reply to this topic with the solution.
View ArticleNew Post: Conversion of 12 x 36 inch 300 dpi 100 images performance
You can reduce the value of the red channel like this: mgkImage.Evaluate(Channels.Red, EvaluateOperator.Subtract, 10);The 10 is probably not correct because I don't know what '10 points' means. And you...
View ArticleNew Post: Commandline -function polynomial
I need to do some calculations on an image but can't use the fx-operator because it is very slow for my time consuming operations. The fx-Operator is already integrated in the great Magick.NET. In the...
View ArticleNew Post: Commandline -function polynomial
You are unable to find the function because it is not yet available. I just submitted a patch to the GIT repository of ImageMagick to add an overload for evaluate so '-function' is available in...
View Article