New Post: PCL to PNG Conversion error
The one I was trying is confidential, however I tried it with a few of the files found here:http://www.pcltools.com/samples.php I tried "WP51PORT.PCL" and "ACORDFRM.PCL". I received the same error for...
View ArticleNew Post: PCL to PNG Conversion error
Thank you for the detailed information and the example. You found a bug in ImageMagick and I just submitted a patch to the svn repository to fix this. I will try to publish a new release this weekend....
View ArticleNew Post: PCL to PNG Conversion error
Thanks for finding a fix! Just so I'm sure I understand. Will getting GhostPCL and placing that exe in the same folder as the Magick.NET.dll fix it now with the current published code? Or do I need to...
View ArticleNew Post: PCL to PNG Conversion error
You have to wait to get the new code AND place GhostPCL in the folder. The new release will be published soon. That is indeed the correct download.
View ArticleNew Post: PCL to PNG Conversion error
That's great! Thanks so much for help. I'll check back after the new release is published and let you know how it goes. -jeff
View ArticleNew Post: Composite ImageMagick equivalent in Magick.NET
Thank you for the next release, I'll test it as soon as it is ready. Thank you for your efficiency!
View ArticleNew Post: Cropping
This is not yet possible with the current release. I will post an example after I have published the next release.
View ArticleNew Post: Cropping
I actually got around it using the MagickImage crop and some cloning. :)var data = imageData[i]; var files = Directory.GetFiles(imageOutputDirectory + "\\", data.filename.Substring(0,...
View ArticleNew Post: Fonts not being used when using Pango
I'm using pango to generate some text on a server. When I run it from my local machine, or in the context of my user name on the server, everything runs fine. However when the image is generated on an...
View ArticleNew Post: Fonts not being used when using Pango
How are you referencing the fonts? Do you have a small code example?
View ArticleNew Post: Fonts not being used when using Pango
It had nothing to do with Magick.net, or my rights. I added new fonts (Pango doesn't seem to be able to use font files when I specify the path) to Windows\Fonts. IIS and the Task Manager are always...
View ArticleNew Post: Best approach to create PDF -> PNG thumbnails on an Azure Web Site?
dlemstra wrote: Have you tried my solution? Hi, FYI: I've tried your solution and it works on azure websites. In Startup.cs I set the path like this: var path =...
View ArticleNew Post: Best approach to create PDF -> PNG thumbnails on an Azure Web Site?
I am happy to hear you got it working. I will add a patch to MagickNET before the next release that will allow you to do this: MagickNET.SetGhostscriptDirectory("~/bin");This already works for reading...
View ArticleNew Post: Magick: WriteBlob Failed
I am converting a large number of PDFs to PNGs with a WPF application using the Magick.NET library. I got the following error during the process: Magick: WriteBlob Failed 'Filename' @...
View ArticleNew Post: Magick: WriteBlob Failed
Just realised that all the PDFs that I got an error on have a space before the extension like "TestDocument .pdf". That means when I create a directory of the name of the file, Windows trims any...
View ArticleNew Post: Cropping
With the latest version of Magick.NET your batch file roughly translates to this:string outputDirectory = @"c:\output"; int sizeX = 1280; // set SIZEX=1280int sizeY = 720; // set SIZEY=720int offsetX =...
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
Good day, I've been trying to convert my software from using imagemagick with command lines to magick.net dll. So far most of them are fine but I do have issue with 2 functions: Resize(int width, int...
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
I cannot reproduce your problem with the Resize method. Are you using the latest version of Magick.NET? Does the following work for you:using (MagickImage image = new MagickImage("logo:")) {...
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
Thanks for the information. I believe it might be caused by certain image type? would you please have a resize method test on this image? Also if you don't mind to answer, may I know how this wrapper...
View Article