New Post: MagickImage.ClipMask usage
Hi, hope someone can help me. I've been trying to apply a grayscale mask to an image with no luck. I have 2 MagickImage images, one 8-bit grayscale (my mask) and one 8-bit sRGB. They're both the same...
View ArticleNew Post: MagickImage.ClipMask usage
Can you share a link to your input image and your mask? And maybe also an image of the expected result.
View ArticleNew Post: SVG render fallback to Inkscape with 64-bit Magick.NET crashes
Thanks for the suggestion. I gave it a go and a Forms application had no problem passing it off to Inkscape so I'm not sure where to take it from there. On the other hand, it looks like Inkscape can't...
View ArticleNew Post: SVG render fallback to Inkscape with 64-bit Magick.NET crashes
Are you able to use a debugger in your website project? Maybe you will get more information when you turn on logging: MagickNET.SetLogEvents(LogEvents.all); image.Debug = true;
View ArticleNew Post: MagickImage.ClipMask usage
Yeah no problem, it is a green screen image. I'd rather not provide one with people in it so here is a blank image. Mask: Original:
View ArticleNew Post: Resize filter parameters
Magick.NET/Enums/FilterType.h Lanczos2Sharo = MagickCore::Lanczos2SharpFilter, typo? Lanczos2Sharp = MagickCore::Lanczos2SharpFilter,
View ArticleNew Post: Convert PDF to a set of PJPEG files
Hi , I have a similar problem, I'm trying to create a thumbnail from the first page of a pdf. I copy and run the example by dlemstra and it's ok , but with this pdf i get a black backgound What can i do?
View ArticleNew Post: MagickImage.ClipMask usage
I got round the problem by using the MagickImage.Transparent method on the mask before blurring it, just with black as the color argument, then blurred the mask to smooth the...
View ArticleNew Post: MagickImage.compare
Hi!, looking for some help with the compare feature. It seems straight forward but no matter what two images I compare the MagicErrorInfo properties are always 0. This is the code in simple form where...
View ArticleNew Post: MagickImage.compare
I found the issue, the two images were not the same size. After using .resize its working!
View ArticleNew Post: MagickImage.compare
You should have received an exception but Magick++ is hiding it by accident. I have committed a fix for ImageMagick and this will be fixed in the next release of Magick.NET. Thank you for finding this...
View ArticleNew Post: Resize filter parameters
Thank you for finding this. It will be fixed in the next release of Magick.NET.
View ArticleNew Post: MagickImage.ClipMask usage
I noticed that your mask is a grayscale image. So when you copy the alpha channel you probably copy noting. I tried using the alpha method to enable the alpha channel:...
View ArticleNew Post: Convert PDF to a set of PJPEG files
With the following code I am getting a white background. MagickReadSettings settings = new MagickReadSettings(); settings.Density = new MagickGeometry(300, 300); settings.FrameIndex = 1; using...
View ArticleNew Post: Convert PDF to a set of PJPEG files
I'm sorry you are right I try to add the border without compose so i achieve a the black background. thanks emanuele.
View ArticleNew Post: How to read and write Jpeg Metadata (IPTC and XMP) using Magick.NET?
Hi, I am in need to read and write metadata (IPTC or XMP) from Jpeg images for my project. I am able to include Magick.NET into my C# project and able to retrieve Exif info using ExifProfile function....
View ArticleNew Post: How to read and write Jpeg Metadata (IPTC and XMP) using Magick.NET?
With the GetProfile method you can retrieve the IPTC/XMP profile, and with the AddProfile method you can add a new profile.using(MagickImage image = new MagickImage("input.jpg")) { ImageProfile profile...
View ArticleNew Post: How to read and write Jpeg Metadata (IPTC and XMP) using Magick.NET?
Thanks for the info. Just to be clear, there are no properties or methods under ImageProfile object to retrieve IPTC info? Is there any information available on how to parse the ByteArray to retrieve...
View ArticleNew Post: How to read and write Jpeg Metadata (IPTC and XMP) using Magick.NET?
The only method to retrieve the IPTC info is the method ToByteArray. Once I figure out how to read the IPTC fields I will create an IptcProfile class.
View ArticleNew Post: Convert SVG to PNG (or any other format) does not apply...
Hi I'm using Magick.NET-Q16-x64 v 6.8.6.801 from NuGet. .Net 4.5 (VS2012). I need to convert a SVG image to one of the raster formats (for example PNG). I've checked the documentation and tried the...
View Article