New Post: CR2 to TIFF Conversion without Color Change
Photoshop Outputhttp://speedy.sh/9Nw27/IMG-8042384AdobeRGB.tif
View ArticleNew Post: CR2 to TIFF Conversion without Color Change
I cannot figure out how to get the same colors as the image from photoshop. Maybe you could ask your question on the ImageMagick forum: http://www.imagemagick.org/discourse-server/index.php. And once...
View ArticleNew Post: Aspect Ratio
When converting an image from one type to another, is aspect ratio maintained by default? or must I tell it to?
View ArticleNew Post: Lead Tools conversion
I'm in the process of investigating switching from the LeadTool's imaging conversion stuff to Magick.Net. LeadTools allows me to read the profile from one image and write it to another, i.e. var...
View ArticleNew Post: Aspect Ratio
The default is to maintain the aspect ratio. You can find some good info about the different options here: http://www.imagemagick.org/Usage/resize/#resize. It explains the properties of the...
View ArticleNew Post: Lead Tools conversion
Magick.NET does offer something similar. I am not sure how the technique from above works but Magick.NET has to read the whole image for this to work. There is an option in Magick.NET that will skip...
View ArticleNew Post: problems using group4 compression
Hi, In command line I found two ways to convert jpg to pdf with group4 compression: First ( with two commands ): $ convert desktop.jpg desktop.pbm $ convert -monochrome -compress group4 desktop.pbm...
View ArticleNew Post: problems using group4 compression
You are not doing anything wrong. You are actually doing something right :). You just found a bug in ImageMagick. I will look into it directly!
View ArticleNew Post: Use fuzz on image (Usar fuzz en imagen)
Hello I would like to know how I can perform this command console magick.net. Example:convert gradientBlue.png -fuzz 50% -fill '#ff0000' -opaque '#0000ff' output.png Source:...
View ArticleNew Post: Use fuzz on image (Usar fuzz en imagen)
You should do the following with the latest version of Magick.NET:using (MagickImage gradient = new MagickImage("gradientBlue.png")) { gradient.ColorFuzz = 50; gradient.Opaque(new...
View ArticleNew Post: problems using group4 compression
Thanks dlemstra. If I can help you in our side tell me, I can provide you the file I'm using for testing and the expected results on each conversion process.
View ArticleNew Post: problems using group4 compression
The new release has been published this weekend. Can you download Magick.NET 6.8.8.901 and test if this has resolved your problem?
View ArticleNew Post: Layers with distort perspective
Hi, I'm trying to place one image over anther image with a perceptive to the second image. I've tried 100 different things, but I'm facing 2 problems. First problem is that the canvas of the overlay...
View ArticleNew Post: Possible issue writing to stream
Using the following file as my source(.eps):https://www.dropbox.com/s/b4pn07h4w4mnp65/PreviewforEPS.eps This conversion works fine going from .eps to .jpg: using (MagickImage image2 = new...
View ArticleNew Post: Possible issue writing to stream
Your second example is writing an eps file. When you write to a stream the Format of the input stream is used. If you want to write to a different format you will have to set the Format property of...
View ArticleNew Post: Layers with distort perspective
I got really close with the code below. You only have to fine-tune the distortion values and the position. I used the following example: http://www.imagemagick.org/Usage/distorts/#affine_examples//...
View ArticleNew Post: Layers with distort perspective
wow! This is really nice! These numbers: 186,93, 185,270, 298,220, 293,133, are actually x-y for each point of the image. Do you know if its possible to set only x-y for each corner of the image,...
View ArticleNew Post: Layers with distort perspective
I am not sure if that is possible but that would make it much easier for you. I will have to look into this when I get home from work.
View ArticleNew Post: Layers with distort perspective
Thank you so much! It could be really really nice if you could help out with this.
View ArticleNew Post: Padding out Thumbnails
Original Image: 600px wide by 1000px tall (PNG format) Let's say I want to resize the above image down to 108px by 108px. Obviously looking at my original image, the image would be distorted if I had...
View Article