New Post: Need some help about crashes..
jordi_lodgify wrote: We are encountering the same issue. However, some of the files can reach 20Gb of size and end up filling up the drive. Any idea what this could be or how we could debug this issue?...
View ArticleNew Post: Resample doesn't seem to work as expected
Looking at the imagemagick documentation, it looks like resample should resample an image to the target double value for Pixels Per Inch or Pixels Per Cm. In Magick.Net however, it seems to take a...
View ArticleNew Post: How to limit number of CPU cores used by magick.net ?
Hi, While trying to batch resize a lot of images, the CPU is at 95%, witch is great, but not on a system shared with a IIS web server... So, is there a way to limit the number of CPU cores used ? I...
View ArticleNew Post: Change GhostScript reference
Goodmorning, I know that ImageMagick works with the Ghostscript and I would like to know if I can use ImageMagick just with the gsdll32.dll. I'd like to use my software even if Ghostscript is not...
View ArticleNew Post: Losing transparency with CMYK
Not a rush in any way, but do you have an possible ETA as to when you might be able to take a look at this particular issue.
View ArticleNew Post: How to limit number of CPU cores used by magick.net ?
This is something I will need pretty soon as well Subscribing in for a reply when dlemstra comes back..
View ArticleNew Post: Bicubic interpolation
You can already do that in Magick.NET, you should set the Interpolate property of a MagickImage to Catrom.
View ArticleNew Post: ps to pdf conversion
Magick.NET/ImageMagick will rasterize an input file and that will increase the file size. You might want to look for another tool to do this, maybe Ghostscript.NET is an option?
View ArticleNew Post: Need some help about crashes..
Jordi, can you contact me through CodePlex so we can resolve this issue together? We might get a bit more information if you can enable debugging...
View ArticleNew Post: Resample doesn't seem to work as expected
The Resample method should change the DPI. If you want to change it from 72 to 200 you should call it with 200,200. It does not use doubles because Magick++ also not do that. This seems like something...
View ArticleNew Post: Resample doesn't seem to work as expected
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Change GhostScript reference
You can specify an alternative ghostscript location with MagickNET.SetGhostscriptDirectory. I think you only need the dll but I am not sure so you have to try it yourself
View ArticleNew Post: Losing transparency with CMYK
I will take a look at this again when I am back home next week.
View ArticleNew Post: How to limit number of CPU cores used by magick.net ?
Setting ResourceLimits.Thread to 2 will limit the number of threads for a single http request to 2 threads. But even setting this to 1 will not help you. IIS will still use multiple threads/cores to...
View ArticleNew Post: CompositeOperator enum
This might be a bug in ImageMagick I will take a look at it when I am back next week,
View ArticleNew Post: Resample doesn't seem to work as expected
Thanks Dirk, I'll try it again, but when I was doing MagickImage.Resample(200, 200) previously, the image's ResolutionX and ResolutionY where not updating.
View ArticleNew Post: How to limit number of CPU cores used by magick.net ?
There's only one thread running the batch process, so after your answer, I tried but failed to reproduce the issue in a test project. But by investigating, I found the folowing exception in my logs :...
View ArticleNew Post: How to limit number of CPU cores used by magick.net ?
It looks like you are unable to load the embeded 32/64 bit assembly from the AnyCPU version of Magick.NET. Can you try setting MagickAnyCPU.CacheDirectory to a directory you have write access to and...
View ArticleNew Post: Few images loading as blank
Hey man, welcome back! I have 3 different images that when loaded up through Magick.net go completely blank At the one the Magick.net causes exception with error containing: Corrupt image `' @...
View ArticleNew Post: Converting only a certain portion of PDF to image.
I've been trying to figure this out and can't seem to determine the proper method. I am creating an image from PDF and only need to use a certain area of it. For now, I'm resorting to cropping using a...
View Article