New Post: Using Magick.NET for making PNG background transparent
Thanks a lot dlemstra! It looks promising and I will certainly give it a try.
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
I have similar issue with Magick.NET-q16-x64.Native.dll. Can someone please confirm if manually copying it to the system32 folder is the only option? If this is the case, it might not work for my...
View ArticleNew Post: Issue with colorization using RGB values
I have an image I'd like to colorize using RGB values (and eventually, HSL), but for whatever reason I'm only able to pass in a hex value as a parameter for my image to be successfully colorized. Is...
View ArticleNew Post: Issue with colorization using RGB values
I suspect that you are using the Q16 version of Magick.NET. The MagickColor constructor that accepts ushort as an argument has a range of 0-65535 and not 0-255 as you are probably used to from...
View ArticleNew Post: Issue with colorization using RGB values
Great! That works for me. One more question for you... I was wondering how I would go about tinting an image with a specified color while preserving the white values. Currently, I'm able to tint a...
View ArticleNew Post: Issue with colorization using RGB values
Can you add a link to an input image and show the output? Having trouble to understand your goal. You might be able to turn the gray parts into black and use that as a mask for when you colorize the...
View ArticleNew Post: Need to convert SVG to PNG and during conversion need to delete an...
Hi all, can you please help me with a piece of code for below requirement Need to convert SVG to PNG and during conversion need to delete a svg element with parameter delete="yes"
View ArticleNew Post: Need to convert SVG to PNG and during conversion need to delete an...
SVG does not have a delete attribute in it's specifications so you would need to do it yourself with something like XElement. And when that is done you can just use Magick.NET to convert the SVG to PNG.
View ArticleNew Post: Need to convert SVG to PNG and during conversion need to delete an...
hi.. sorry if am not clear on my question. my sample svg structure is <svg><g delete="yes"> here an image will be present</g></svg> what i was looking for is i have to convert...
View ArticleNew Post: Issue with colorization using RGB values
Hi Dirk, Thank you for your quick response. My apologies for not being clearer... Here's another original image:https://postimg.org/image/bpig021c1/ What I'm trying to...
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
Thanks for sending me the better explanation through CodePlex Sam. Have you tried copying the Magick.NET-q16-x64.Native.dll file into the bin folder of your project? And instead of using the zip...
View ArticleNew Post: Need to convert SVG to PNG and during conversion need to delete an...
You will need to load the SVG into memory into a XElement then remove the nodes marked with 'delete' and then write the XElement to a memorystream. You can then feed this to Magick.NET to convert the...
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
Thanks for the quick reply. Yes, manually copying Magick.NET-q16-x64.Native.dll file into the bin folder or using the NuGet version does seem to work for my app. However, my tests still complain about...
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
You probably also need to copy the native.dll into the bin folder of your test project.
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
The native dll is already found in the test’s bin folder, but the test still failed to find it. Will try again on Monday.Thanks for your help,Sam
View ArticleNew Post: Differences between Ping and Read
For some image manipulations, I first need to check colorspace, what I'm doing with Ping function to avoid reading all pixels right now. If a specific colorspace is found, I need to process pixels....
View ArticleNew Post: Need to convert SVG to PNG and during conversion need to delete an...
thanks.. it worked :)
View ArticleNew Post: Differences between Ping and Read
The pixel data of an image will not be read on demand. When you call the Ping method you explicitly tell Magick.NET to not load the pixel data. And when you call the Read method you will always load...
View ArticleNew Post: Issue with colorization using RGB values
I could not figure out how to do that. You can ask for help here: https://www.imagemagick.org/discourse-server/viewforum.php?f=1. I can help you translate it to Magick.NET if you manage to figure out...
View Article