New Post: Determine color mode
I am also still learning every day but it does not make sense that a tiff with a gray colorspace has an RGB profile. I will contact one of the ImageMagick users who knows a bit more about this before I...
View ArticleNew Post: temporary magick files left behind
I've noticed that after converting numerous files in batch that I lost a lot of space on my machine. Apparently there are a ton of temporary image files that are left behind sometimes when converting...
View ArticleNew Post: temporary magick files left behind
The temporary files should be removed automatically. This might be a bug in the code of ImageMagick. Can you e-mail me one of those files so I can see the content? It might help me figure out why it is...
View ArticleNew Post: temporary magick files left behind
Using this image: https://www.dropbox.com/s/rvlobf0ygxz89kp/AT_SPACE4C01_CS_CIROS.eps and this code: var destinationStream = new FileStream(@"C:\test.jpg", FileMode.Create); //this is the image in...
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
Hi again dlemstra! I have tried the code in a console application. Precisely, I have created two console application, in one I work with the variable "Hoja_trabajo_1.pdf", and in the other I work with...
View ArticleNew Post: temporary magick files left behind
Here's a temp file that has data in it.https://www.dropbox.com/s/xjhyniheuyr1gnv/magick-1444_fCEmoBB7yp2 Unfortunately, I do not know what image file is associated with that. So this tmp file may not...
View ArticleNew Post: New version will not open file
OK I was hoping to avoid that, but that was the issue.. The new version didn't solve my transparent background issue though. They always come out white. I see a convert command referenced in several...
View ArticleNew Post: New version will not open file
Here is what I have now based on this thread. https://magick.codeplex.com/discussions/528909I'm still getting white backgrounds though. MagickReadSettings settings = new MagickReadSettings();...
View ArticleNew Post: New version will not open file
Not trying to yell.. Not sure why it made that big.
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
I think Ghostscript will not work when the library is shared between application pool. Can you reproduce the problem if you convert a .jpg file to a .png file? I think it is better to not share the...
View ArticleNew Post: New version will not open file
Can you try this:using (MagickImage img = new MagickImage()) { img.BackgroundColor = MagickColor.Transparent; img.Read(fileName, settings); }And if this does not work, can you share your EPS file so I...
View ArticleNew Post: temporary magick files left behind
I was able to reproduce the 0kb file problem and I fixed this in ImageMagick. This will be fixed in the next release of Magick.NET. The other temporary file looks like pixel data. Is it possible that...
View ArticleNew Post: New version will not open file
I just replied to you.. Thank you for your assistance!
View ArticleNew Post: temporary magick files left behind
Sweet. Thanks. Also, I'm not exactly sure if the other temporary file was from a crash or not. I tend to run these conversions in batches. I'm of the mind that it might have been because of a crash...
View ArticleNew Post: 1000+ Single Page JPEG encoded TIFF takes lot of memory and throws...
Hello, We are having an issue with 1000+ Jpeg Encoded Single Page TIFF images. Basically we are creating an MagickImage Collection object for each Jpeg Encoded Single Page TIFF in for loop. After...
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
I am getting below error on server while converting PDF to Image. Could not load file or assembly 'Magick.NET-Q16-x86.dll' or one of its dependencies. The specified module could not be found. My server...
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
You don't need to install VS 2012 on your server. You probably only installed the x64 version of the Visual C++ Redistributable 2012. You should install the x86 version of the redistributable if you...
View ArticleNew Post: 1000+ Single Page JPEG encoded TIFF takes lot of memory and throws...
What do you mean by 'After importing couple of 200+ pages'? Your code suggest you only perform a single action for each image. And the code from your example cannot raise the error you are writing....
View ArticleNew Post: 1000+ Single Page JPEG encoded TIFF takes lot of memory and throws...
I am trying to import 1000+ Single page JPEG Encoded Tiff and save it to another location. So i will take each jpeg tiff, create MagickImageCollection Object and get the bitmap and based on the...
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
Thanks for your reply. I have already install all things as you mentioned. So still I am getting below error: Could not load file or assembly 'Magick.NET-Q16-x86.dll' or one of its dependencies. The...
View Article