New Post: Combine PDFs
Hello, Thank you so much for this great tool! Can I use Magick.NET to combine two PDFs into one PDF? Thanks!
View ArticleNew Post: Combine PDFs
You could probably use Magick.NET but I think you should use another tool. When Magick.NET reads a PDF file it will make images out of them and if you combine those images into a new pdf file it will...
View ArticleNew Post: Couple of Questions regarding Magick.NET Q16 Vs Q8 Version
Hi, i have read the documentation regarding the Magick.Net Q16 & Q8 version. Could you give me more details like below regarding both the Version (Q16 vs Q8).Main Difference between Magick.NET Q16...
View ArticleNew Post: Couple of Questions regarding Magick.NET Q16 Vs Q8 Version
Main Difference between Magick.NET Q16 vs Q8 The biggest difference between the Q16 and the Q8 version is the amount of colors for a single pixel channel. Q8 has a range of 0-255 and the range for Q16...
View ArticleNew Post: Compressing to Tiff Fax Group 4 (TIFFG4)
I can't seem to figure out how to compress to tiffg4. With normal imagemagick there is a -compress argument, but this doesn't have it.
View ArticleNew Post: StreamReader directly from MagickImage-Object
I am using Magick.NET and dealing with huge files. Is there any chance to get a stream-reader directly from the MagickImage-Object? Currently I have to use the .write-method to save the data to a...
View ArticleNew Post: StreamReader directly from MagickImage-Object
What you are doing is actually necessary. The image that is in memory is just a bunch of pixels and some metadata. If you want to read the information in another MagickFormat you first need to Write it...
View ArticleNew Post: StreamReader directly from MagickImage-Object
Thanks for your reply! Does it mean that Magick.NET uses an internal image-format under the hood? So to get an usable result one has to "convert" the raw-data in memory to the desired image-fileformat...
View ArticleNew Post: StreamReader directly from MagickImage-Object
You are correct, the conversion is done when you call the write method.
View ArticleNew Post: Image Magick resize on server side taking 3 minutes to process to...
I am working on a project which involves uploading of Dslr Camera images from user and resizing to 10 different sizes... I am using Imagemagick to resize on server side.... but it is taking too much...
View ArticleNew Post: Image Magick resize on server side taking 3 minutes to process to...
The code example I created for you does not resize the image to 10 different sizes. So your code is probably different from what you are showing here. Can you post a ink to an example file and the...
View ArticleNew Post: Image Magick resize on server side taking 3 minutes to process to...
here is the code which i was using... almost the same except database storage is not done in this example which i did in my original code... I mailed you the dropbox link of the example project file
View ArticleNew Post: Image Magick resize on server side taking 3 minutes to process to...
The example you send me does not contain the Parallel.For loop. That is the part that lets you resize the images parallel.
View ArticleNew Post: StreamReader directly from MagickImage-Object
I tested it and it worked like a charme with the OutputStream. The following is specific to ASP.NET MVC. To use the common design pattern used in ASP.NET MVC, I created a new MagickImageResult.public...
View ArticleNew Post: Image Magick resize on server side taking 3 minutes to process to...
when i used paralellel.For loop it took around 15min on my local system to process so i changed it to for... if needed i will mail you that example too you can check the working example of the parallel...
View ArticleNew Post: Image Magick resize on server side taking 3 minutes to process to...
What is you input image? Can you provide me with an example?
View ArticleNew Post: Image Magick resize on server side taking 3 minutes to process to...
i will mail you the drop box link of the image i used
View ArticleNew Post: Image Magick resize on server side taking 3 minutes to process to...
Thank you, I will take a look at it during my lunch break today.
View ArticleNew Post: Image Magick resize on server side taking 3 minutes to process to...
ok thank you for the support you are giving
View ArticleNew Post: Image Magick resize on server side taking 3 minutes to process to...
I have created a test class that can be found here: https://www.dropbox.com/sh/931vwly297sren5/AACaNjP8kE5wfs-eesCGM_eMa?dl=0. I moved the Blur method outside the resize loop because it only needs to...
View Article