New Post: Tranform Composite operation with dissolve from ImageMagick CLI
Hello, I am using ImageMagick.NET 6.8.9-7 (Windows 7 64-bits) to generate a preview image with watermark. The problem is that I don't know how to properly transform the command-line command into its...
View ArticleNew Post: SetReadOnlyProperty 'Copyright' @...
Hi, I have a sample image when I try to load it as MagickImageusing (Image image = Image.FromStream(new FileStream("hihi.jpg", FileMode.Open))) { MagickImage magickImage = new...
View ArticleNew Post: SetReadOnlyProperty 'Copyright' @...
I can reproduce the issue. Not sure why it is reporting this. I will get back to you when I know more.
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
I'm experiencing this exact same issue starting with the first error "No such file or directory" and now getting "Object reference not set to an instance of an object" when converting a PDF to a png...
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
The problem was that the directory that contains Ghostscript could not be found. Can you try the following: MagickNET.SetGhostscriptDirectory("C:\\Program Files\\gs\\gs9.14\\bin");Not sure if you use...
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
Thanks for the quick response. That didn't fix it. Still getting the same object reference error. I bet the issue is that I'm using the x86 DLL. I started this project earlier this year and couldn't...
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
Did you install the 32 bit version of Ghostscript on your server? You should use C:\Program Files (x86)\gs\gs9.14\bin as the path if you did. And if you installed the x64 version of Ghostscript I would...
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
Yeah, I tried both. C:\Program Files (x86)\ & C:\Program Files\ with the same result/error. I have both versions of GhostScript installed on my dev machine and on the server but using the x86...
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
Turning on debug logging might also give you some more information: https://magick.codeplex.com/wikipage?title=Detailed%20debug%20information&referringTitle=Documentation,
View ArticleNew Post: SetReadOnlyProperty 'Copyright' @...
This has been fixed in the new release I just published. Please upgrade to Magick.NET 7.0.0.0002.
View ArticleNew Post: Tranform Composite operation with dissolve from ImageMagick CLI
There was an bug in the Composite method so I had to publish a new release. Please upgrade to Magick.NET 7.0.0.0002. I have added a new 'Tile' method to MagickImage to make life easier for you. Your...
View ArticleNew Post: Tranform Composite operation with dissolve from ImageMagick CLI
Terrific! It works! and the Tile method definitely makes my life easier ;-) Best regards, Xavier de Palol.
View ArticleNew Post: Setting RGB color values of an image
I am using .NET. I need to replace the RGB values on an image with different values for example R:128, G:118 B:118 to R:100, G:105, B:110 Can you please help me to do this or Guide a way Any help is...
View ArticleNew Post: Setting RGB color values of an image
I tried the following code but WritablePixelCollection Write() is not updating the image at all Also i tried writing the image to physical drive again but not workingusing (MagickImage image = new...
View ArticleNew Post: Setting RGB color values of an image
You should use the Opaque method of MagickImage to do this. You could use the WritablePixelcollection but the Opaque method will be much faster. Your code only changes the pixel at 1x1 so that is...
View ArticleNew Post: Error to try to compile source code (AnyCPU)
I'm trying to download the source code and build the solution in my machine but is occurring an error. The files in folder "Generated" in AnyCPU project don't exists. I need to create a version of...
View ArticleNew Post: Error to try to compile source code (AnyCPU)
The AnyCPU project can only be build in .NET 4.0 at the moment. The files in the generated folder are created by a tool that will build a .x86 and x64 .NET 4.0 version of Magick.NET. After the build it...
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
Ok, I'm not safely able to change all solutions and projects to 64 bit on this large legacy system I'm working in where this library will be referenced. I enabled logging and provided the log output...
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
Is it possible for you to create a crashdump? This will make it easier for me to investigate the problem. The call to DestroyPixelCache makes it look like the image could not be read properly. I will...
View Article