New Post: Composite Image
Thanks for getting the library fixed. The sample code was just a test of concept before it was implemented.
View ArticleNew Post: Embedded ICC profile issue
I don't have or use Photoshop so I cannot run some tests myself. Is it possible that Photoshop is complaining about an Adobe RGB color profile in a GrayScale image?
View ArticleNew Post: Embedded ICC profile issue
I suppose it's possible. But Photoshop is able to open up the original just fine. And within Photoshop, if I save that as a jpg, that's fine as well. I'm not sure where to look next.
View ArticleNew Post: Embedded ICC profile issue
Can you e-mail me the jpeg you saved from Photoshop so I can compare it with the image created by Magick.NET?
View ArticleNew Post: Embedded ICC profile issue
Jumping in here. With Adobe Photoshop CS4 Extended I get an error with the image."The embedded ICC profile cannot be used because the ICC profile is invalid. Ignoring the profile." [Continue] [Cancel]...
View ArticleNew Post: Embedded ICC profile issue
Are you talking about the original image or the image created with the code in this post?
View ArticleNew Post: Block Processing For Large Images
Is there some type of block processing in IM so I can handle very large images? See link for details http://www.mathworks.com/help/images/examples/block-processing-large-images.html I'm trying to Canny...
View ArticleNew Post: Embedded ICC profile issue
dlemstra wrote: Are you talking about the original image or the image created with the code in this post? Sorry. I was talking about the original TIFF linked in the first thread of this discussion.
View ArticleNew Post: Embedded ICC profile issue
Hmmm. I guess I used a different version when I ran my test. Sorry about that guys. And thanks
View ArticleNew Post: Converting a PDF to JPG and then scaling turns the image black
My code to convert a PDF file to JPG works great, but if I try to use images[0].Scale(50.0,50.0); where images is an ImageCollection and images[0] is an Image that appears fine when written; it will...
View ArticleNew Post: Converting a PDF to JPG and then scaling turns the image black
Can you post a link to your pdf file so I can reproduce your issue?
View ArticleNew Post: Merging Images Together
I've asked this question once before, but the original solution no longer works after I recently upgraded to the newer Magick.NET. I am trying to put an image on a white background. My 'output' must be...
View ArticleNew Post: Converting a PDF to JPG and then scaling turns the image black
This happens with every PDF I try. Here's an example:http://msiatlanta.com/kb/index.php?View=file&EntryID=3 MagickReadSettings settings = new MagickReadSettings(); settings.Density = new...
View ArticleNew Post: Converting a PDF to JPG and then scaling turns the image black
This is happening because the background of your PDF is transparent. When you save it as JPEG this will turn black for your PDF's. You should change the transparent pixels to a color with the...
View ArticleNew Post: Block Processing For Large Images
I used image.GetReadOnlyPixels to 'Clone' parts of the image but I am unable to reproduce the code from the posted example. I think you will have to do some trials for yourself to see if you can get it...
View ArticleNew Post: Merging Images Together
I think you can do this much easier with the Extent method of MagickImage. MagickImage image = new MagickImage(strTempFile); image.Extent(width, height, Gravity.Center, new MagickColor("#fff"));
View ArticleNew Post: Color Profile is null. I might be missing something
Using the following image, the color profile at the end(cp1) is null when reading after a conversion.https://www.dropbox.com/s/hntk98bk2qp4gan/8632_168.jpg The code is: var destinationStream = new...
View ArticleNew Post: Merging Images Together
That worked. Is this documented anywhere? It would have saved a ton of time to know about the 'Extent' command.
View ArticleNew Post: Merging Images Together
You could have found it by going to the following page 'Cutting and Bordering' (http://www.imagemagick.org/Usage/crop/) from this page: http://www.imagemagick.org/Usage/. This link is also on the...
View ArticleNew Post: Embedded ICC profile issue
Here's the version I should have posted originally.https://www.dropbox.com/s/p4dpnkofgezfzwk/23792_004_0676_R_V1.tif This is the real original.
View Article