New Post: Boy I looked for an hour before writing this.
Did you install Ghostscript? This is required to process PDF files. You can contact me through CodePlex here: https://www.codeplex.com/site/users/view/dlemstra and we can work out the details there.
View ArticleNew Post: Boy I looked for an hour before writing this.
I thought Ghostscript was only for processing the other way (i.e. from PDF to "something else" or interpreting the PDF data... or something, just "the other way"). Didn't think I needed it to write a PDF.
View ArticleNew Post: Boy I looked for an hour before writing this.
I misunderstood your remark about not being able to open the file. I thought you tried to open a PDF file but you are only writing it. Feel free to ask more questions if you cannot open the PDF and...
View ArticleNew Post: Cropping image
Do you want to include the 'virtual pixels'? Or do you just want the part of the image?
View ArticleNew Post: Cropping image
I want to include 'virtual pixels' colored with backgroundColor.
View ArticleNew Post: Cropping image
You can use the Extent method of MagickImage to do this.int x = -100; int y = -100; int width = 500; int height = 200; using (MagickImage image = new MagickImage("logo:")) { image.BackgroundColor = new...
View ArticleNew Post: Boy I looked for an hour before writing this.
Didn't get a chance to look at it yesterday but tried it just now and the PDF loads just fine. Zero changes, no idea although I did see that someone else had remarked the same thing I saw "...tried it...
View ArticleNew Post: Boy I looked for an hour before writing this.
I am happy to hear that it worked and thank you for the donation to this project.
View ArticleNew Post: NoDecodeDelegateForThisImageFormat exception
Hello there is a pretty simple code:public static void ReadImageFromEmptyBitmap() { using (MagickImage image = new MagickImage(new Bitmap(400, 600, PixelFormat.Format24bppRgb))) { } using (MagickImage...
View ArticleNew Post: NoDecodeDelegateForThisImageFormat exception
I am suspecting that ImageMagick detects the file as an XWD file instead of a BMP file. Not sure why though, will check this out for you later this week/weekend.
View ArticleNew Post: NoDecodeDelegateForThisImageFormat exception
This is indeed a bug in the detection of the format. I have just submitted a patch to the GIT repository of ImageMagick to fix this. So this means it will be fixed in the next release of Magick.NET...
View ArticleNew Post: NoDecodeDelegateForThisImageFormat exception
dlemstra wrote: I have just submitted a patch to the GIT repository of ImageMagick to fix this. Is it possible to get this patch earlier that the next build of Magick.NET will be released? Can I...
View ArticleNew Post: The C++ module failed to load while attempting to initialize the...
Question : Does magic.net read whole file To Convert PSD, TIF file into jpeg format ?
View ArticleNew Post: NoDecodeDelegateForThisImageFormat exception
We switched from SVN to GIT last weekend but I did not change my Checkout script yet. I will do that later today.
View ArticleNew Post: The C++ module failed to load while attempting to initialize the...
I am not sure how your question is related to this topic. When you convert one image to another format the whole source image is read to create the destination image.
View ArticleNew Post: The C++ module failed to load while attempting to initialize the...
suppose i want to extract first layer/image from PSD and TIF file into image ,then what would be the read process of magic.net.
View ArticleNew Post: Magic.Net
suppose i want to extract first layer/image from PSD and TIF file and convert into image ,then what would be the read process of magic.net. Does it read whole file?
View ArticleNew Post: NoDecodeDelegateForThisImageFormat exception
Can you provide a link to the new GIT repository?
View Article