New Post: Magick.NET.Core is not compatible with UWP app
I will pick this up at a later moment (not sure when). I just did a quick try to see if I could change Core to use netstandard instead of dotnet but I am unable to get it to work.
View ArticleNew Post: Converting from AI/SVG to PNG with transparent backgrounds.
It appears that you need to set the background color of the image when you write it. I missed that you were writing a PNG24 file instead of a PNG32 one. PNG24 only supports background transparency. The...
View ArticleNew Post: Converting from AI/SVG to PNG with transparent backgrounds.
Hey, Thanks for this, it works. I didn't realise that png24 only supports background transparency. If I change to png32, does the code need to be the same?
View ArticleNew Post: Converting from AI/SVG to PNG with transparent backgrounds.
Changing the format from png24 to png32 should resolve your issue. Then you can leave the rest of the code the same. But please look at my remark about reading the image with the MagickReadSettings...
View ArticleNew Post: Save grayscaled image as truecolor PSD file
The Read/Write Masks properties can be used to hide/lock a specific part of an image and are not related to your issue. It turns out that I forgot to add something to the PreserveColorType method. And...
View ArticleNew Post: Remove ragged black edge from scanned images
As I told you in the e-mail I will add that script as the next script to the FredsImageMagickScripts.NET project (https://github.com/dlemstra/FredsImageMagickScripts.NET). These script do require a...
View ArticleNew Post: Magick.NET.Core is not compatible with UWP app
Thank for your quick response! I am looking forward to your update!
View ArticleNew Post: Save grayscaled image as truecolor PSD file
That are great news. I will wait until the new version has been released and will test it then. Thank you very much again for your relentless effort.
View ArticleNew Post: Remove ragged black edge from scanned images
DirkFred offered the follow UNIX example as a solution to cleaning up my borders.(Note: My files are B/W Png which will be later converted to tiff)I have tried using the ImageMagick convert.exe, but it...
View ArticleNew Post: Remove ragged black edge from scanned images
The first line only gets the width and height of the image and stores this in a variable to use it at a later moment. So there is not need to do this. What this command does it shave 75 pixels from the...
View ArticleNew Post: Same output for different inputs
I am trying to create a function that will accept many file types but output a transparent PNG. So far I have this bit of code:public async Task<string> ConvertImage(byte[] data, bool...
View ArticleNew Post: Issue Installing
I have downloaded the library using nuGet into a brand new blank website. I tossed some sample code into the page and I am getting a list of errors relating to object not declared. I am very new to...
View ArticleNew Post: Same output for different inputs
Can you add a sample png/ai file that I can use to reproduce this issue? A link to a file on something like DropBox would be great.
View ArticleNew Post: Writing Exif.GpsInfo data
I'm having trouble writing Exif GpsInfo to an image. I've managed to write GPSLatitude and GPSLongitude data, but not GPSVersionID or the GPSLatitudeRef/GPSLongitudeRef. My code:using (var image = new...
View ArticleNew Post: Writing Exif.GpsInfo data
It looks like it was working all along. I was using Explorer and "Properties" | "Details" to look at the values, but not all are visible there. By using Exiv2 I could see all the values, like...
View ArticleNew Post: MagickImage property ResolutionUnits changed?
I have installed new version of magick.Net library it's giving error that resolutionUnits property doesn't exists and aslo i am changing image dpi to 150 using the following code MagickImage tmp = new...
View ArticleNew Post: 'System.AccessViolationException' occurred in...
Are you using the latest version of Magick.NET? It no longer requires installation of the C++ Redistributable. Can you check if disabling OpenCL resolves your issue (MagickNET.UseOpenCL)? I recently...
View ArticleNew Post: 'System.AccessViolationException' occurred in...
The version I am using is Magick.NET.7.0.0.0022, I tried with latest (103) version still I got the same error then I reverted back to see if goes away...but still saw the issue, I will update with next...
View ArticleNew Post: On Azure, Text Doesn't Render When Converting SVG to PNG
Hey all; Got a weird one here. Our application converts SVGs into PNGs. Locally, everything works hunky-dory, but when we push the code up to Azure (it's hosted on an Azure website), we have noticed...
View Article