New Post: Allow command line options
Thank you. I was wondering if its possible to add some documentation in the wiki which explains this translation. It would also explain to newbies all the options available in this tool. Example:...
View ArticleNew Post: Detecting empty pages in scanned Tiff
Hi, Is there a way to detect if an image is empty ? I am processing some scanned images and must remove the blank pages. I made a method where I made a comparison between a blank image with the image...
View ArticleNew Post: Detecting empty pages in scanned Tiff
What do you consider a blank page? Can you add a link to blank.tiff on something like dropbox?
View ArticleNew Post: Compound Font Effects
The -tile option sets the fill pattern. The command above translates to this:using (MagickImage image = new MagickImage(MagickColors.LightBlue, 320, 100)) { image.Settings.Font = "Candice";...
View ArticleNew Post: Transform Image
You are not using the settings but even if you used it it would not work. Your call to SetDefine does nothing. You will need to call the Charcoal method instead:string FilePath = "../path/1.jpg"; using...
View ArticleNew Post: please help
Your command translates to this:using (MagickImage image = new MagickImage("test.bmp")) { image.ColorFuzz = new Percentage(20); // -fuzz 20% image.Opaque(new MagickColor("#c62122"),...
View ArticleNew Post: Allow command line options
I know I need to add more documentation. I started a bit here: https://magick.codeplex.com/documentation. Feel free to help me improve the documentation.
View ArticleNew Post: Write Value in null ExifProfile
Thank you so much ! now I solved my problem..
View ArticleNew Post: Issues creating Png file from Psd and Ai files using Magick, will...
I'm using Magick to convert Adobe files (Pdf, Ai, Psd) to Png images and it all works fine except that the Ai files can take over a minute to convert and Psd files lose their shape when converted, as...
View ArticleNew Post: Beginners question
Hi, I am trying to create an image which I have written out in batch convert first.convert 3508x2480empty.png -fill none -stroke black -strokewidth 1 -draw "rectangle 10,10 310,110" -pointsize 34 -font...
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
In my current project I am using both the libraries (not sure if it is ok or not but working fine) What is purpose of those (I know that we can manipulate images but other than that). I am trying to...
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
Magick.NET.Core is a version of Magick.NET that works under .NET Core (https://dotnet.github.io/) and you probably don't need that. You should use a version that has x64 in the name If you want to...
View ArticleNew Post: Merge images.
Hi, Im new with ImageMagick. Im using the new 7 version and I want to merge 3 transparent with 1 background image. I need to set x,y for each image to see ok when merged. Example.
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
But I am not able to use ImageMagick.Internal namespace without .NET Core. It shows error after I remove .NET Core reference for the properties point, resolution. Is there a way to avoid these with...
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
You don't need the .NET Core reference If you just add the reference to the NuGet package that I linked in my previous post. I also don't know where you found the ImageMagick.Internal namespace but you...
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
I used that name space after adding reference to .NET.Core. The same version (104) of x64 i am using that was downloaded from NuGet feature.
View ArticleNew Post: Beginners question
The DrawableBase class has been deprecated. Below is a step by step translation of your command:// You can also create an empty (I hope you mean transparent) image instead of// reading...
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
I made some changes in the library a while and you will need to change your code. You will need to use the new Density class to set image.Density. The ResolutionUnits property is now also part of the...
View ArticleNew Post: Issues creating Png file from Psd and Ai files using Magick, will...
Let me first add a link to your stackoverflow post: http://stackoverflow.com/questions/36714058/issues-converting-adobe-ai-and-psd-files-using-magick and include the code from there: MagickReadSettings...
View ArticleNew Post: Issues creating Png file from Psd and Ai files using Magick, will...
Your AI file is probably taking that long because you specified a high density. You might get a better performance when you lower that value but that will affect the quality of your image. The reason...
View Article