New Post: ImageMagick Performance on Very High Resolution Images
You have mention the image quality for jpeg in some different terms here Can you please mention the quality and its value for jpg, tiff, bmp and jpg?
View ArticleNew Post: ImageMagick Performance on Very High Resolution Images
The link I was referring to in my previous post was just for PNG. For JPG it is just 'higher is better'. For TIFF it is used to determine the compression rate ('higher is better') or the jpeg quality...
View ArticleNew Post: ImageMagick Performance on Very High Resolution Images
What is the maximum value of quality for JPEG and TIFF?
View ArticleNew Post: ImageMagick Performance on Very High Resolution Images
It is a percentage and the maximum is 100%.
View ArticleNew Post: Make white background transparent on existing PNG
That example is about making an image larger and setting the new pixels to transparent. Do you want to change every white pixel to transparent or do you want ImageMagick to detect the background and...
View ArticleNew Post: CMYK to RGB for JPEG
It looks odd in all the programs I use to view it. Can you show me how it looks in Photoshop?
View ArticleNew Post: CMYK to RGB for JPEG
Sure. Here's a link to a screenshot with the image loaded in Photoshop.https://app.box.com/s/dafje10zsw7iiv8rmiui It may also work in gimp but i haven't tried it yet.
View ArticleNew Post: Make white background transparent on existing PNG
Thanks for your reply. I am interested in turning every white pixel transparent. That seems simpler than detecting a background.
View ArticleNew Post: Converting EPS to TIF and preserve Transparency
I'm trying to convert an EPS file to TIF. I need to preserve transparency and CMYK coloring. I am able to do this fine if I use RGB coloring and PNG as a format, but not when I switch to CMYK, or CMYK...
View ArticleNew Post: Make white background transparent on existing PNG
I'm very much interested in doing this as well.
View ArticleNew Post: Convert a MemoryStream of a SVG string to a PNG image
I'm confused on how the memorystream interacts with the Magic.NET library. I'm not sure if this library supports reading a string and converting it to an image so I decided to create my SVG string into...
View ArticleNew Post: Make white background transparent on existing PNG
You can change all the white pixels with the following method:using (MagickImage image = new MagickImage(@"C:\input.png")) { image.Opaque(new MagickColor("white"), MagickColor.Transparent);...
View ArticleNew Post: Make white background transparent on existing PNG
Thanks for the code example. I will give it a spin and report back.
View ArticleNew Post: Confusion when resizing .eps file
I have this file located here:https://www.dropbox.com/s/4aa0pkptw1yfpsz/cartoon_network_logo_r.eps?dl=0 What I am trying to do is take an .eps, convert it to .png and resize it where the width =3000....
View ArticleNew Post: Converting EPS to TIF and preserve Transparency
Magick.NET / ImageMagick does not support reading CMYKA EPS files. I will try to see if it is possible to add support for this later this year.
View ArticleNew Post: Confusion when resizing .eps file
The image dimensions after reading the file are 297x80. If you resize 297 to 3000 it will look fuzzy. You might need to read the image at a higher density.
View ArticleNew Post: Convert a MemoryStream of a SVG string to a PNG image
It does support reading it but you need to tell Magick.NET the type of image you are reading. Here is an example of how you could do that:byte[] bytes = Encoding.UTF8.GetBytes(svgStr);...
View ArticleNew Post: CMYK to RGB for JPEG
I am not sure if I can fix this since other viewers also show the image 'greenish' but I will try to take a look at it this weekend.
View ArticleNew Post: Is Magick.NET just a wrapper or uses it native code?
I have some requirements in terms of speed when using the Magick.NET-library. I was wondering whats going under the hood in Magick.NET. Is the code completely written in C# (therefore entirely...
View Article