New Post: create valid barcode image
-colors is the Quantize method of MagickImage. And you should set Colors value of QuantizeSettings to 2. I will look into the add anti alias issue at a later moment.
View ArticleNew Post: create valid barcode image
Unfortunately this doesn't work either...the file has bit depth of 32 and grey bars next to black ones: look here quantizeSettings = new ImageMagick.QuantizeSettings(); quantizeSettings.set_Colors(2);...
View ArticleNew Post: create valid barcode image
What happens when you set the ColorSpace of the quantizeSettings to gray?
View ArticleNew Post: create valid barcode image
same thing. maybe I try too many combinations and I don't have the right one... now I have readSettings = new ImageMagick.MagickReadSettings();...
View ArticleNew Post: Detect compression method with MagickImageInfo
I have replied to your e-mail that you send through CodePlex. Did you get this message?
View ArticleNew Post: Detect compression method with MagickImageInfo
Hello. I was finally able to modify the "fixing" code and test it out. You were correct on all fronts and it now converts Sgi images back to JPEG before storage. I should have checked the Format with...
View ArticleNew Post: Detect compression method with MagickImageInfo
The compression of your JPEG image will always be set CompressionMethod.JPEG but it does make sense to have the compression available in the MagickImageInfo class. I just pushed a patch to add this...
View ArticleNew Post: create valid barcode image
I've added image.get_Depth(); before image.Write(@"c:\test.bmp"); and returns 1 although the generated file has bit depth 32 according to windows see here and 8 according to identifyidentify...
View ArticleNew Post: create valid barcode image
What is the value of image.get_TotalColors() for both examples?
View ArticleNew Post: create valid barcode image
You need to reduce the number of colors to two after you have read the image to be able to save the image at 1 bit depth. I have also figured out why setting anti-alias is ignored. But to fix this I...
View ArticleNew Post: Invalid IHDR data
I think I have tracked down the issue. It takes a long time to test it with your images so I was unable to do that this weekend. I will test it with the development build tonight. You could also want...
View ArticleNew Post: create valid barcode image
unfortunetley I can not get image.draw() to work. ... barcodetxt = '6625020060338943108201500001061102'; MyBarCode.string(true,barcodetxt); MyBarCode.encode(); barcodetxt=MyBarCode.barcodeStr();...
View ArticleNew Post: create valid barcode image
I am suspecting that MorpX does not understand params. You could try and put your 'drawables' in a list and call the overload that accepts an IEnumerable.
View ArticleNew Post: create valid barcode image
I tried to define the list as:System.Collections.ArrayList ClrObject list = new ClrObject("System.Collections.Generic.List`1[System.String]"); but I have the same error when I compile the code. I'll...
View ArticleNew Post: create valid barcode image
it doesn't work:AsEnumerable is not a member of List`1 even if I don't put list.AsEnumerable() , my code does not compile at image.Draw(list); I have to find a way to define a list that draw() will...
View ArticleNew Post: Invalid IHDR data
I took a lot of waiting last night but your issue will be resolved in the next release of Magick.NET. I am still unable to open your image with the default viewers on Windows but the size of the file...
View ArticleNew Post: Invalid IHDR data
Great thanks. Now it looks like normal image. And what about black images? Did you find that issue?
View ArticleNew Post: Invalid IHDR data
I am not a 100% sure but it suspect it was the same issue. The png that was created was always that small size because it contained only black pixels. I am planning to publish a new release later this...
View Article