New Post: ToBase64 is always different for same image
I have changed the default DPI to 300 With 600 DPI, I was processing the request in Width(853) * Height(640) 6.124 seconds Width(1819) * Height(1364) 9.43 with 300 DPI Width(853) * Height(640) 3.03...
View ArticleNew Post: MagickImage.Compare(MagickImage) returns invalid MagickErrorInfo...
I can confirm this is a bug in ImageMagick. This will be fixed in the next release of Magick.NET. I would suggest you to use one of the overload where you need to specify the ErrorMetric for now.
View ArticleNew Post: Reading shape/path points from psd file
Hi there, I have created a Photoshop file and I am successfully reading layers. The final thing I need to figure out is how to read individual points from a shape layer. In my case this shape is a...
View ArticleNew Post: Reading shape/path points from psd file
ImageMagick / Magick.NET knows nothing about 'shapes'. It can create images of the frames but knows nothing about individual points. This information is probably hidden in the metadata. I might be able...
View ArticleNew Post: Can Magick.Net get output from commands such as Trim
Hello. I want to ask if it is possible to get output(offset and size of trimmed image) from TRIM command. Or it is better way to translate this ImageMagickto command line to Magick.NET: convert...
View ArticleNew Post: Reading shape/path points from psd file
That would be very awesome. Please find (a rather high res) psd of a laptop with a shape over it's screen at this link I guess there should be a 4 point shape hidden somewhere... Thanks for the...
View ArticleNew Post: Reading shape/path points from psd file
Your link requires me to login. Can you make it public?
View ArticleNew Post: Can Magick.Net get output from commands such as Trim
You can use the Page property to see what trim has done:using (MagickImage image = new MagickImage("logo:")) { image.Trim(); Console.WriteLine(image.Page.ToString()); }
View ArticleNew Post: Reading shape/path points from psd file
Hij werkt nog steeds niet. It still requires me to login.
View ArticleNew Post: Can Magick.Net get output from commands such as Trim
Thanks for the fast reply. Now i can get the information from command. Best regards, Kestokas
View ArticleNew Post: Reading shape/path points from psd file
Your link works. I will take a look at it when I am home from work.
View ArticleNew Post: Exception System.Web.HttpContextWrapper is not marked as serializable
I am using Magick.NET-AnyCPU.dll 7.0.0.11 in an asp.net application using IIS 7.0. Any method call on MagickNET, such as "MagickNET.UseOpenCL = false;" generates an exception, which has as its...
View ArticleNew Post: Exception System.Web.HttpContextWrapper is not marked as serializable
It looks like AnyCPU library is unable to load the embedded assembly. Can you set MagickAnyCPU.CacheDirectory to a folder you can write to?
View ArticleNew Post: Reading shape/path points from psd file
I am unable to find those 'shapes' in your PSD. If you have PhotoShop you could add a ClipPath in the second layer (the one with the laptop and the logo) and use Magick.NET to .Clip() the image and...
View ArticleNew Post: Exception System.Web.HttpContextWrapper is not marked as serializable
Thanks for your reply. Yes, I am able to set the MagickAnyCPU.CacheDirectory to a folder I can write to, in the statement prior to calling MagickNET.UseOpenCL = false. However, setting the cache...
View ArticleNew Post: Exception System.Web.HttpContextWrapper is not marked as serializable
More grist for the mill - it looks like the IIS application pool is trying to load the assembly in its own isolated domain, which is probably why the call DoCallBackInDefaultDomain is in the stack...
View ArticleNew Post: Exception System.Web.HttpContextWrapper is not marked as serializable
Do you see files being created in the folder you set for 'MagickAnyCPU.CacheDirectory'? And are you making sure you don't call any Magick.NET code before you set the CacheDirectory? It might also be...
View ArticleNew Post: Exception System.Web.HttpContextWrapper is not marked as serializable
Thanks for the immediate feedback. I definitely see that the folder 'Magick.NET.7.0.0.0011" is created within the MagickAnyCPU.CacheDirectory, as are the XML files and DLL. Thanks for the heads-up on...
View Article