New Post: Overwrite iptc profile
That commit is not there, it is in the repository of ImageMagick. I did not rebuild Magick.NET yet with the new source code of ImageMagick. If this is really urgent for you (next release will be...
View ArticleNew Post: Not converting to PDF properly
Using this image: https://www.dropbox.com/s/vfli58sxzmywcy3/22525_008_0030_CC.tif In the following code, on the last line, the format of the image(magickImageNew ) is .png when it should be .pdf: var...
View ArticleNew Post: Not converting to PDF properly
You have found a bug in ImageMagick. Thank you for reporting this. I just submitted a patch to the ImageMagick repository. This will be fixed in the next release of Magick.NET.
View ArticleNew Post: Resize cause an "Attempted to read or write protected memory"
Can you please reply to the e-mail I send you through Codeplex? We need a bit more information.
View ArticleNew Post: Not converting to PDF properly
You may not know this currently, but any idea if this bug is constrained only to converting to .pdf's, or might it involve more conversion types?
View ArticleNew Post: Change DPI (resolution) but keep same size
HiThank you for the reply, this is really helpful.I have one more question, sorry for my poor knowledge, but how can i convert image to "GreyScale" using Magick.Net?I tried a couple approach but was...
View ArticleNew Post: Not converting to PDF properly
It is limited to a small set of image types that cannot read directly from a memory blob. It this case it is happening because Magick.NET uses Ghostscript to convert the PDF. The following is...
View ArticleNew Post: ImageMagick reads/converts TrueColor TIF as Grayscale?
Hi, I have an uncompressed 24bit Tif image and I want it to stay TrueColor however:using (MagickImage image = new MagickImage(@"F:\wireframe.tif")) { ColorType ct = image.ColorType;...
View ArticleNew Post: Change DPI (resolution) but keep same size
You should set the ColorSpace of the image: image.ColorSpace = ColorSpace.GRAY;
View ArticleNew Post: ImageMagick reads/converts TrueColor TIF as Grayscale?
Magick.NET does not use ImageMagick 7 yet so there could be some differences between Magick.NET and the command line. Feel free to post your questions that are related to ImageMagick here. I am also...
View ArticleNew Post: ImageMagick reads/converts TrueColor TIF as Grayscale?
Can I send it to you as an email attachment?
View ArticleNew Post: ImageMagick reads/converts TrueColor TIF as Grayscale?
Thank for your e-mail. I will look into it.
View ArticleNew Post: ERROR: Type 'ImageMagick.MagickImage' is not defined.
Good morning, I installed ImageMagick.Net with NuGet (Install-Package Magick.NET-Q8-x86) and it works correctly locally. However, when I compile and upload the files to the server, it gives the...
View ArticleNew Post: ERROR: Type 'ImageMagick.MagickImage' is not defined.
That is a strange error message. maybe the dll cannot be loaded? Did you install Visual C++ Redistributable for Visual Studio 2012 (http://www.microsoft.com/en-us/download/details.aspx?id=30679) on...
View ArticleNew Post: ERROR: Type 'ImageMagick.MagickImage' is not defined.
Surely that is the problem ... in any case it is a server hosting and I have no way of checking if Visual C++ is installed or not, and I can't install it ... it's a shame. Thanks for your reply.
View ArticleNew Post: ImageMagick reads/converts TrueColor TIF as Grayscale?
It turns out that this change in colorspace is by design. ImageMagick detects the image can be changed to Grayscale. This will save space when the image is saved. If you want to get the original...
View ArticleNew Post: Change DPI (resolution) but keep same size
Thank you so much.Appreciate your help. Thank you, HITESH. PPlease consider the environment before printing this e-mail, thank you.
View ArticleNew Post: Combining two multi-page TIFF images
Hello, I am trying to get Magick.NET to merge two multi-page tiff files into one multi-page tiff file. I am creating a MagickImageCollection variable for both of the tiff files I want to merge. Then, I...
View ArticleNew Post: Combining two multi-page TIFF images
Hi I have to do the same thing so here is how I solved this:public static void stackImages(string firstImagePath, string secondImagePath, string multiPagedImagePath) { using (MagickImageCollection...
View ArticleNew Post: Combining two multi-page TIFF images
No problem at all, I appreciate your reply anyway.
View Article