New Post: Caption text color and effects
ok - thanks. But for some reason using the standard fonts and no effects the caption color is always black even though I set the font color to white as in the code sample above
View ArticleNew Post: modulate problems
This is a bug in Magick.NET that will be fixed in the next release. You can use the following workaround that will stop working after the next release:using (MagickImage magickImage = new...
View ArticleNew Post: modulate problems
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: modulate problems
Thanks for quick reply, as I continue poking around should I assume until this next release that any methods that use percentage types will be same or is this with just this method? I'll probably pass...
View ArticleNew Post: modulate problems
This is just a bug in the Modulate method, uou should not pass larger values to other methods. It is of course possible that I made this mistake twice so please report it when you find another problem.
View ArticleNew Post: Caption text color and effects
I completely missed that. I was just focusing on the effect. I will look into that.
View ArticleNew Post: Caption text color and effects
Not a problem at all – really appreciate your prompt responses.
View ArticleNew Post: Caption text color and effects
I figured out why it doesn't work. I need to set a 'special' ImageMagick option to make this work with the 'caption:' reader. This will be fixed in the next release of Magick.NET. I will try to publish...
View ArticleNew Post: Caption text color and effects
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Is it possible to set "-evaluate Divide 2"
It seems I made a tiepo when I created the EvaluateOperator enum. This will be fixed in the next release of Magick.NET. I will also rename QuantumOperator to Evaluate. You can however use the following...
View ArticleNew Post: Transparency lost converting eps to png via Magick.NET when...
I'm having trouble maintaining transparency through Magick.NET converting from an EPS to PNG. When using Magick.NET I'm getting a plain white image, when using ImageMagick console I'm getting exactly...
View ArticleNew Post: DPI
I'm also having trouble with the density feature. It show the correct ResolutionX and ResolutionY when I set the image.Density, but the end image is still the same DPI as the original. Thank You, Andrew
View ArticleNew Post: DPI
Sorry, I posted an incorrect answer to this thread. I cannot delete this posting, so please ignore it.
View ArticleNew Post: Transparency lost converting eps to png via Magick.NET when...
A) You should set the colorspace and density before your read the file to get the correct result. You are also doing that on the command line. You can do this with the MagickReadSettings class. Below...
View ArticleNew Post: Transparency lost converting eps to png via Magick.NET when...
Thanks for the byte array trick, definitely saves some operations and wasted memory! I'm still having trouble though, I've tried modifying my code to use either of these two blocks and neither generate...
View ArticleNew Post: Transparency lost converting eps to png via Magick.NET when...
I updated the example above, I forgot to add the settings to the constructor. I am getting a png with a transparent background and it even reports 72 dpi with the identify command of ImageMagick. Are...
View ArticleNew Post: Transparency lost converting eps to png via Magick.NET when...
According to nuget I'm using 6.8.8.201. Let me run a complete clean build and see if that fixes it. I'm wondering if I need to generate the image first at the original size with the altered ColorSpace...
View ArticleNew Post: Transparency lost converting eps to png via Magick.NET when...
Looks like that is the issue, I need to generate the file as a png without resizing first. Then resize the png to what I want. On a side note I have been able to reproduce a bug with ai files that...
View Article