New Post: MagickImage.Write throws MagickCoderWarningException
I am reading two PNGs into two MagickImage instances, calling Merge on a MagickImageCollection of them, and then calling Write on the merged image. Usually this works fine, but with one pair of images,...
View ArticleNew Post: MagickImage.Write throws MagickCoderWarningException
I made some changes a while ago to make sure Warnings are no longer thrown and raised as an event (MagickImage.Warning). It seems I missed the Write operation. This will be fixed in the next release of...
View ArticleNew Post: Overwrite iptc profile
Im trying to overwrite the IPTC profile on an image but it seems to not apply the changes. For example a simple test: using (fs = fnfFotoMedia.Open(FileMode.Open, FileAccess.ReadWrite)) { using...
View ArticleNew Post: Overwrite iptc profile
I can reproduce the issue. It looks like a bug in Imagemagick. I will have to investigate this for you.
View ArticleNew Post: CMYK to RGB for JPEG
gm convert 00000003.jpg -profile sRGB.icc 3convert.jpghttps://www.dropbox.com/s/3lpj939zkuntxrq/3convert.jpg gm convert 00000003.jpg -profile sRGB.icc -colorspace RGB...
View ArticleNew Post: CMYK to RGB for JPEG
I checked the source code of GraphicsMagick and they also only convert the colors when there is a source profile. Your 3convert.jpg image is still CMYK and 3convertRGB.jpg only had its colorspace...
View ArticleNew Post: Convert pdf to png in 64bit
Hi! I’m new to Magick.net and I need to convert a pdf to png. I am having an issue when I try to run the application in a 64bit server. The project is done with Visual Studio 2010, I have referenced...
View ArticleNew Post: Convert pdf to png in 64bit
It seems your program is not running in 64-bit mode. The AnyCPU version of ImageMagick detects if you are running the program in 32 or 64 bit and loads the library for that architecture. And from your...
View ArticleNew Post: Overwrite iptc profile
Yes I tried, but got the same results it seems not be writing with the current image profile. Even if I get the image.GetByteArray() and write a new file with those bytes it wont work. The bytes stays...
View ArticleNew Post: Overwrite iptc profile
I figured out why this is not working. The iptc profile is actually stored inside the 8bim profile. And the changes in the IPTC profiles are not stored in the 8bim profile. I will have to add this...
View ArticleNew Post: Custom font from file.
Can I load a font off the file system to write over an image? Or better yet from a byte array so I can do some caching and what not?
View ArticleNew Post: Custom font from file.
It might be possible to load custom fonts from disk but I will have to look into this for you. Can you post a code sample of how you are writing the text on top of the image and the font file? This...
View ArticleNew Post: Resize cause an "Attempted to read or write protected memory"
Hi .. I have a simple test for generate a thumbnail (i went verify the performance versus GDI+). I am using this code: public Image ResizeImage(string imageoriginal , int newWidth, int newHeight) {...
View ArticleNew Post: Convert PDF to a set of PJPEG files
The way to remove the background is to use the Alpha method, which allows you to passing a settings enum value. Adding the following to a batch process I was running did the trick: img.BackgroundColor...
View ArticleNew Post: Resize cause an "Attempted to read or write protected memory"
Does this happen for every image? Or do you have a specific image that fails?
View ArticleNew Post: Resize cause an "Attempted to read or write protected memory"
I tried with different jpg.I attached two. 2014-04-17 15:19 GMT-04:00 dlemstra <[email removed]>:From: dlemstraDoes this happen for every image? Or do you have a specific image that fails?Read...
View ArticleNew Post: Resize cause an "Attempted to read or write protected memory"
It seems that your reply to an e-mail about a message I posted is automatically posted here. Contact me through Codeplex to send me your example images or use something like dropbox to share them.
View ArticleNew Post: Resize cause an "Attempted to read or write protected memory"
Sorry... The link for dropbox:https://www.dropbox.com/sh/ad8wq437m4g5vpz/LJu91OmmUc/00000002.jpghttps://www.dropbox.com/sh/ad8wq437m4g5vpz/cJdWhsUdfS/00000003.jpg Thanks
View ArticleNew Post: Custom font from file.
This is a generic example of what I'm trying to accomplish:http://www.hetemeel.com/einsteinform.phphttp://www.hetemeel.com/einsteinshow.php?text=Magick.net+Component To accomplish this I used the image...
View Article