New Post: Include all files in the dll
I am at the moment using another .net wrapper of ImageMagic, but the version is outdated and only available in x86. Therefore, I was happy to see your wrapper, but the old wrapper I am using has...
View ArticleNew Post: Include all files in the dll
Which wrapper are you using? If there is a way to include all dll's into the C# dll I would also like to do that. I just haven't figured out a way to do that.
View ArticleNew Post: Include all files in the dll
That sounds great. I am using this one http://midimick.com/magicknet/magickDoc.html there are both a compled version and a solution with the source.
View ArticleNew Post: Include all files in the dll
Thanks for the information, I can see how it is being done. I will create a workitem from this topic and see if I can get it to work. I will work on this after I finish MagickScript.
View ArticleNew Post: Include all files in the dll
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Convert gray PNG to black and white TIF produces garbage output.
Thanks for the reply. That made the outputted file 4 times larger, which looks more like the expected size, but I still can not open it with anything.
View ArticleNew Post: Convert gray PNG to black and white TIF produces garbage output.
Would you mind sharing one of your images so i can try to reproduce your problem.
View ArticleNew Post: Convert gray PNG to black and white TIF produces garbage output.
No problem, how do I get it to you? Also, I have been hacking at this and I found that if I save the output as a PNG it works fine, something about the tiff conversion is messing it up. I have also...
View ArticleNew Post: Convert gray PNG to black and white TIF produces garbage output.
Have you tried loading the image after saving it? You will get some information about the image with MagickImage.ToString(). Can you share the image with some public service like 'http://imgur.com/' or...
View ArticleNew Post: Convert gray PNG to black and white TIF produces garbage output.
I uploaded it to http://imgur.com/S2RrhOA
View ArticleNew Post: Convert gray PNG to black and white TIF produces garbage output.
I tried your code and I seem to get the correct result: http://imgur.com/v216mYg
View ArticleNew Post: Convert gray PNG to black and white TIF produces garbage output.
Now that makes this harder. Any idea what else could be wrong? Would it be helpful for me to email you the bad output I get for the same image and see if you can make heads or tails of what it is?...
View ArticleNew Post: Need the CMYK Values from a pixel...
Hi all, need a little Help... img = New MagickImage(filePath) i need the cmyk values from this img.. img.TotalColors in my solution there are 5 colors.. Where can i read the values from it... another...
View ArticleNew Post: Convert gray PNG to black and white TIF produces garbage output.
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Convert gray PNG to black and white TIF produces garbage output.
The problem was the tiff compression that is being used. I created an issue to add the property that can be used to set the CompressionType.
View ArticleNew Post: Resizing image without keeping aspet ratio
Hi, First of all thanks for this library. I implemented Magick.net 6.8.5.4 in order to resize image on the fly on my website. All was working perfectly but i just figure that some images were not at...
View ArticleNew Post: Resizing image without keeping aspet ratio
Do you want all images to have the same width? Or do you want your image to fit within (272x349)?
View ArticleNew Post: Need the CMYK Values from a pixel...
Are you using the method MagickImage.GetReadOnlyPixels? When you get one of the Pixel instances you can access the individual channels. Your image has 5 channels which means you have a CMYKA image...
View ArticleNew Post: Resizing image without keeping aspet ratio
I would like to have the same width. In fact, height is determined by a ratio compute from the original image, the real obligation is to obtain an image with a width of 272 px. I have the feeling that...
View ArticleNew Post: Resizing image without keeping aspet ratio
You don't need to compute it yourself. When you specify 0 for the height, it will be calculated by Magick.NET.
View Article