New Post: Applying rotation, scale and translation to images
Those settings are used by annotate so this is probably not what you want. And after taking a look at the method that is called by Transform I decided to remove that method in the next release of...
View ArticleNew Post: Applying rotation, scale and translation to images
Okay, good to know. I'm trying to scale, rotate and translate an image onto another (much larger image). It's just a basic affine transform where the result is composed with another image. I've played...
View ArticleNew Post: Converting from AI/SVG to PNG with transparent backgrounds.
Hi, that didn't work. Just makes the entire image transparent.
View ArticleNew Post: Converting from AI/SVG to PNG with transparent backgrounds.
Ok, so I have been playing around with this and here are a few things I have noticed. If I used:image.Settings.BackgroundColor = new MagickColor(System.Drawing.Color.Red); then the background is infact...
View ArticleNew Post: Read image list using custom font
Thanks for making the issue. I'm looking forward to check it out.
View ArticleNew Post: Converting from AI/SVG to PNG with transparent backgrounds.
I am suspecting that you are using the image viewer on Windows 10 to view your image. This shows transparent as black and because your text is black it will look like a black/transparent image. When...
View ArticleNew Post: Applying rotation, scale and translation to images
I think you are looking for the AffineTransform method of MagickImage. Can you give that a try and let me know if that works for you?
View ArticleNew Post: Magick.NET.Core is not compatible with UWP app
I am developing an UWP app with following information:Target: Universal Windows Target Version: Windows 10 (10.0; Build 10586) I tried to install Magick.NET.Core-Q8 (Version: 7.0.0.103) to my app by...
View ArticleNew Post: Convert png to b/w tiff with CCITT Group 4 compression
I am new to Magick.Net/ImageMagic. I have a png file coming from an HTML5 canvas editing session, that I have to (re)convert back to a b/w tiff compressed with CCITT Group 4. I can't seem find enough...
View ArticleNew Post: Convert png to b/w tiff with CCITT Group 4 compression
When you have a PNG file on disk you can just do this:using (MagickImage image = new MagickImage("input.png")) { image.CompressionMethod = CompressionMethod.Group4; image.Write("output.tiff"); }
View ArticleNew Post: Magick.NET.Core is not compatible with UWP app
Magick.NET.Core is very new and I haven't tried to get it working on UWP. It looks like it is not possible at the moment but it think it should be possible. I am now installing the tools to create UWP...
View ArticleNew Post: Converting from AI/SVG to PNG with transparent backgrounds.
Hi, No I am viewing my image in the browser. I chanced the RGBA to #FF00007F and something weird happened. The black is now transparent and the transparent bit is now red.
View ArticleNew Post: Converting from AI/SVG to PNG with transparent backgrounds.
While I am linking my images, here is one when I use the code like this:/// <summary> /// Converts any image to png and uploads it to azure /// </summary> /// <param name="data">The...
View ArticleNew Post: Advice on file format
Hi. I need to develop an application where I read text from invoices. What will be the best suited file format for this scenario when I convert pdf-invoices to images? Should I go with .gif? These...
View ArticleNew Post: Remove ragged black edge from scanned images
I have found many approaches/examples with Imagemagick command line to eliminate black edges from scanned images. None seem to drop readily into Magick.Net (at least to a newbie) These are B/W tiff...
View ArticleNew Post: Remove ragged black edge from scanned images
Can you show how you would do it on the command line? I can help you translate that to Magick.NET. Most command line options are methods of the MagickImage class so you could also give it a try...
View ArticleNew Post: Advice on file format
I think you can better ask your question here: https://www.imagemagick.org/discourse-server/index.php. Most of the time when people talk about scanned images they use TIFF images when Group4...
View ArticleNew Post: Save grayscaled image as truecolor PSD file
I am currently experiencing some problems when saving images containing only gray colors to truecolor PSD files. An example image can be found here. This image has a valid sRGB color profile and is...
View ArticleNew Post: Remove ragged black edge from scanned images
DirkI found a 'script' on Freds ImageMagick Script site that I believe should do what I need.The arguments are -f 5 -m crophttp://www.fmwconcepts.com/imagemagick/innercrop/index.phpPerhaps you can give...
View Article