New Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
No, I don't use the collection after it has been disposed. In fact, I put 'images.Dispose()' when occurs the first error in case it could be a memory problem. Actually, I run the application without...
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
Can you add a link to your PDF or contact me through CodePlex (on my profile page) so I can see if I can reproduce the problem.
View ArticleNew Post: Open raw images
This 33808 changeset I still have an error trying to load cr2any cpu dll errorx86 dll error
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
Hi! I send you a message in CodePlex.
View ArticleNew Post: Open raw images
Did you download the latest release or are you building from source? And did you copy the dcraw.exe file inside your bin directory?
View ArticleNew Post: Open raw images
I can't find out what I'm doing wrong. Does ReadRawImageFromCameraSamples.ConvertCR2ToJPG() from Magick.NET.Samples run correctly on your side?
View ArticleNew Post: Open raw images
Yes, I made sure it worked before I published the new release. Are you trying to do this in an application or in a website? Placing it inside the 'Bin' directory of my console application works for me....
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
I tried to read your PDF and I can create a PNG with the following code in a console application:staticvoid Main(string[] args) { MagickReadSettings settings = new MagickReadSettings();...
View ArticleNew Post: New version will not open file
I'm having problems getting any version after 6.8.6.601 to open an eps. The latest version (6.8.9.101) is saying ImageMagick.MagickDelegateErrorException: Magick: FailedToExecuteCommand...
View ArticleNew Post: New version will not open file
Did you install Ghostscript? Your error message suggest that you did not do that. You can download Ghostscript here: http://www.ghostscript.com/download/gsdnld.html.
View ArticleNew Post: Determine color mode
I can't seem to retrieve the actual color mode of an image. Each of the following two images has a different color mode:https://www.dropbox.com/s/p4dpnkofgezfzwk/23792_004_0676_R_V1.tif ExifTool shows...
View ArticleNew Post: MultiPage Tiff takes a lot of memory by MagickImageCollection
I have downloaded the latest normal build "Magick.NET-6.8.9.101-Q16-AnyCPU-net40-client.zip" from the download sections. With new build i have tried to test the multipage Tiff file with 50 pages in it...
View ArticleNew Post: Determine color mode
Exif tool reports information from the exif profile. When I run ImageMagick with a debugger in Visual Studio I can see the tiff photometric is 'Grayscale or bi-level, black is 0'...
View ArticleNew Post: MultiPage Tiff takes a lot of memory by MagickImageCollection
In a previous post I explained why Magick.NET will use more memory. When you create a Bitmap it will lock the file on disk. I think the .NET bitmap only stores the active frame in memory or it will use...
View ArticleNew Post: Determine color mode
The reason I'm asking is because when I convert each .tif to a .jpg, I get an"Embedded IOC invalid profile" error when opening up the resulting image in Photoshop. I can avoid this issue by forcing the...
View ArticleNew Post: MultiPage Tiff takes a lot of memory by MagickImageCollection
Thanks for your quick reply and explanation. Here, i have also created bitmap from file on the disk using MagickImage. Is there any way we can achieve the performance using MagickImage or stores the...
View ArticleNew Post: Determine color mode
You are making an incorrect assumption. The problem is not the image, your problem is the profile inthe image. The profile attached to the image is an RGB profile but the tiff is stored with the...
View ArticleNew Post: MultiPage Tiff takes a lot of memory by MagickImageCollection
The architecture of Magick.NET is different from the .NET Bitmap, and this cannot be changed. You could limit the memory with the ResourceLimits class but that will create a new file on disk that...
View ArticleNew Post: Determine color mode
Ah. That is great information and is extremely helpful. So does that mean that an image that has 'tiff:photometric' = 'min-is-black' should never have an RGB profile? My knowledge of images/color...
View Article