New Post: ARW format
I found this trick on the discussion board of ImageMagick: http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13681. The forum is quite useful to find tricks for ImageMagick. p.s....
View ArticleNew Post: ARW format
You are welcome! :-) and thx a lot for your great work Von meinem iPhone gesendet Am 12.12.2013 um 22:23 schrieb "dlemstra" <[email removed]>:From: dlemstraI found this trick on the discussion...
View ArticleNew Post: ARW format
Is there a way to determine the MagickReadSettings (before I read the image) I have to use?
View ArticleNew Post: ARW format
You only need it in specific situations. For example when you try to read your AWR image.
View ArticleNew Post: ARW format
Ok, thank you. I hope, every ARW or CR2 has this behavior... Thx a lot!
View ArticleNew Post: ARW format
With the statement 'settings.Format = MagickFormat.Crw' you are forcing ImageMagick to use the internal crw decoder.
View ArticleNew Post: Overlaying two images with opacity
Hi What would be the easiest way of combining two images if you want to set the transparancy of the upper one to say 50%. I'm working in C#. I've been looking into using composite and changing the...
View ArticleNew Post: Overlaying two images with opacity
I think you are looking for the QuantumOperator method. The following example should make your image 50% transparent.using (MagickImage image = new MagickImage("input.png")) {...
View ArticleNew Post: Overlaying two images with opacity
Thank you! It works great now. I'm currently overlaying the images by simply merging them, but mainly out of curiosity, if I wanted to use a CompositeOperator, what's the correct syntax for the input...
View ArticleNew Post: Overlaying two images with opacity
You don't always need the input arguments. You can find the syntax for the operators that need an argument here: http://www.imagemagick.org/script/compose.php.
View ArticleNew Post: Image Comparison
Is there an API to do an Image comparison. Something similar to the command prompt option as given below compare bag_frame1.gif bag_frame2.gif compare.gif
View ArticleNew Post: Image Comparison
You can do this with the compare method:using (MagickImage bagFrame1 = new MagickImage("bag_frame1.gif")) { MagickImage compare = new MagickImage(); MagickImage bagFrame2 = new...
View ArticleNew Post: Memory versus Disk space usage
I'm trying to get 200 page TIFs of quite high quality converted into single page PNGs of a lower quality. The problem I'm having is that my C# app is using shed loads of disk space but hardly any...
View ArticleNew Post: Memory versus Disk space usage
With MagickNET.SetCacheThreshold you should be able to change the memory limit. You could also try reading your image page by page with the FrameIndex property of MagickReadSettings or input.tif[index].
View ArticleNew Post: Image Comparison
Thank you! I had issues with jpg files but png works great. I shall experiment with different Metric values as you have suggested. Thanks again :)
View ArticleNew Post: Drawing text
Hi, I'm trying to draw text onto a transparent image and then crop the image to the text's bounding box. I have the following code (please see below) but (a) I'm specifying the image size which I'd...
View ArticleNew Post: Converting EMF to PNG
Hello, Could anyone please help me to achieve below conversion using magic.net convert -density 288 image.emf -flatten -quality 00 -colorspace RGB -resize 50% -colorspace sRGB image.png I am a newbie...
View ArticleNew Post: Drawing text
You can determine the size of your text with the FontTypeMetrics method. But you should also consider using Pango (http://www.imagemagick.org/Usage/text/#pango_markup), this can make it easier for you.
View ArticleNew Post: Drawing text
Hi, Thanks. Using the FontTypeMetric I can create an image in proportion to the text I need to draw. I'm still not sure how to crop the image correctly though. If I don't crop my image and just write...
View Article