New Post: multi-page tiff - get page count
Greetings, Please provide ssample on how to read multi-page tiff file, get total number of page and convert each page to each png file. Thank you, Orlando
View ArticleNew Post: multi-page tiff - get page count
You should be able to figure that out with the following examples:...
View ArticleNew Post: CMYK Images with more than 4 color planes
I have no clue how your library is written but the source code for the MagickViewer is also open source. Feel free to borrow code from my MagickViewer and use that in your application.
View ArticleNew Post: CMYK Images with more than 4 color planes
Ok. Let me clarify my Problem: My code is VB.net. I use pictureboxes to show tif-images. That works fine with tif in CMYK (four Color channels). But if i want to load a tif with more than four...
View ArticleNew Post: CMYK Images with more than 4 color planes
I have no idea how you get the image into your pricturebox. Maybe you could use the ToBitmapSource method?
View ArticleNew Post: ImageMagick cannot be found .NET x64
Did you forget to add a reference to the Magick.NET library?
View ArticleNew Post: Resizing & Padding
How exactly does the Resize() Method work? Is it Width x Height in pixels? Whenever I try to do something like... image.Resize(800,800) the output is not exactly as expected. The output file size is...
View ArticleNew Post: Resizing & Padding
Well I wished I would've read the documentation better about the resize method. I was able to figure it out!
View ArticleNew Post: Resizing & Padding
Is it possible to center an image? I am using image.Scale(800,800) and image.Extent(800,800) and doing so, the image is to the far left.
View ArticleNew Post: Resizing & Padding
I am guessing that you want to extent your image that is 395x800 to 800x800. You can use extent for that and if you choose the overload that has a gravity you can center the image with Gravity.Center.
View ArticleNew Post: The size of image is weird after convert a pdf to image.
The size of image is weird after convert a pdf to image. The pdf image not fill in whole canvas , be put to a corner. I am using the latest version of Magick.NET-Q8-AnyCPU.dll Thanks.
View ArticleNew Post: The size of image is weird after convert a pdf to image.
Can you share your PDF file so I can try to reproduce this issue?
View ArticleNew Post: The size of image is weird after convert a pdf to image.
Thank you for help. I wanted to extract only one page from this PDF.https://www.dropbox.com/s/dhy9gzvddtl6keu/3P207257-2D.pdf?dl=0
View ArticleNew Post: Shrink image while increasing resolution
I have an image that is 9" x 9" at 72 DPI. My customer wants me to shrink it to 2" x 2", and at the same time, increase the DPI to 300 DPI. I have been unable to get this to work in Magick.NET. What is...
View ArticleNew Post: Shrink image while increasing resolution
If you want to preserve your image you should only change the Density property of the image. First you will need to get the width: 9 * 72 = 648. And if you want 2" you should divide 648 by 2 and set...
View ArticleNew Post: Shrink image while increasing resolution
Ahh! The resample was what I needed. Again, thank you so much, you are awesome!
View ArticleNew Post: The size of image is weird after convert a pdf to image.
It appears that your PDF file has a CropBox. You can enable the use of this with Magick.NET but I don't know what this will do with your other images. You will need to test that yourself. Below is the...
View ArticleNew Post: The size of image is weird after convert a pdf to image.
It works. Thank you. Another question, How can I overwrite the exists image?
View ArticleNew Post: The size of image is weird after convert a pdf to image.
I don't understand what you are asking. Do you want to save it as a PDF again?
View Article