Questions tagged [imagemagick.net]

Imagemagick.net is a .NET wrapper for image manipulation software ImageMagick.

Imagemagick.net is a .NET wrapper for image manipulation software . This project is a continuation of the work which can be found at this page.

Resources

Project site

71 questions
0
votes
0 answers

.NETCore image drawing libraries not working on linux

Hey guys I am trying to make an .NETCore app that draw some text on image and that is gonna be able to run on linux os. I tried CoreCompat Drawing library, ImageSharp, ImageMagick and I couldnt get even one of them work on linux. I develop the apps…
0
votes
1 answer

Cannot replace color with Magick.Net

I'm trying to replace white color with green, but code below doesn't change color. Code: private static MagickImage ChangeWhiteColor(MagickImage Image, Color TargetColor) { Image.Opaque(MagickColor.FromRgb((byte)255, (byte)255, (byte)255), …
pnzrfst1
  • 189
  • 2
  • 9
0
votes
0 answers

Cannot refer ImageMagickNET Visual Studio 2012

I downloaded the ImageMagickNET dll from here and added as reference the file ImageMagickNET.dll from the folder "bin->ReleaseQ16" inside the .zip, the file is shown in the Solution Explorer: But when I look at the references part in the Property…
JCO9
  • 960
  • 1
  • 15
  • 24
0
votes
1 answer

How to crop curved areas with ImageMagic or with a template

another subject could be: How do i crop a t-shirt out of a pattern image(image is big enough we have huge printers) Everyone, Could you please guide me on what the commands would be to do a cut of an image. Im new to ImageMagic and did not see…
0
votes
1 answer

GIF image loses its animation in Magick.net

I am reading a GIF image and creating the ImageMagick object in C#. Then I write the same image to the output. In the output I get a static image without animation. MagickImage image = new MagickImage(ImagePath); …
Naresh
  • 5,073
  • 12
  • 67
  • 124
0
votes
2 answers

ImageMagick Converting .tif file to .pdf - Causes MagickCoderErrorException

All, Env: .net 2.0, x64 build of Magick.NET library I have the following code where I read the .tif file and want to convert it to .pdf. using (MagickImage image = new MagickImage()) { image.SetDefine(MagickFormat.Tiff,…
ActiveX
  • 1,064
  • 1
  • 17
  • 37
0
votes
0 answers

ImageMagick.NET 'Could Not Load File or Assembly'

I'm trying to get set up with ImageMagick.NET with Visual Studio 2012. I've done much research into what seems to be a common issue whereby Visual Studio is not recognizing the dependencies of ImageMagick.NET (it recognizes the .NET DLL just fine…
coltonoscopy
  • 321
  • 4
  • 16
0
votes
1 answer

FileNotFoundException when trying to run imagemagixNET app?

i was building image convertor app using imagemagix.Net dll and i get this error what ever i do ..the thing the file exists and even it copies the dll to project debug folder . any suggestion why? error: System.IO.FileNotFoundException was…
Serak Shiferaw
  • 993
  • 2
  • 11
  • 32
0
votes
1 answer

Why can't I open a PDF file with ImageMagickNet?

Here is the code in question: MagickNet.InitializeMagick(); ImageMagickNET.Image image = new ImageMagickNET.Image(@"C:\temp.pdf"); image.Quality = 100; image.CompressType =…
PFranchise
  • 6,642
  • 11
  • 56
  • 73
-1
votes
3 answers

ImageMagick Pdf to JPG bad quality

I am not able to get good color quality from using ImageMagick to convert PDF to images. MagickReadSettings settings = new MagickReadSettings(); settings.Verbose = true; settings.Density = new Density(600, 600); …
jamesim
  • 51
  • 1
  • 6
-1
votes
1 answer

How to Extraction Text from an captcha Image Using vb.net

Using vb.net how to extract text from captcha images
1 2 3 4
5