Questions tagged [magick.net]

Magick.NET is a .NET wrapper for image manipulation software ImageMagick.

Magick.NET is a .NET wrapper for image manipulation software . Using Magick.NET allows coders to use ImageMagick without having to install ImageMagick.

separate installation is required to convert EPS/PDF/PS files.

Resources

Project site

126 questions
1
vote
0 answers

Magick.NET-Q16-x64.Native.dll not found

I am creating nopCommerce plug-in for image compression using Magick.Net library, I make ImageOptimizer object and when calling LosslessCompress method it gives an error like unable to load dll Magick.NET-Q16-x64.Native.dll or one of its…
Rohan
  • 11
  • 3
1
vote
0 answers

Compress JPEG with Magick.net?

I need code which which allow me to compress JPEG Images which are approximately 3,000 KB in file size to around 400-800KB using Magick.Net on Visual Studio. Thus far I have tried the following below however this doesn't compress the image into a…
jwhiteuc
  • 11
  • 4
1
vote
0 answers

How to create new Hald Clut from an Image?

Using the ImageMagick library, I am able to apply various hald cluts to images, but am looking for a way to use the library to create a new hald clut from an image. I want to do this in C#, but open to any suggestions. I played with the ImageMagick…
asunrey
  • 875
  • 2
  • 10
  • 28
1
vote
1 answer

Magick.net resize GIF ending up with larger file size

I'm using Magick.net to resize down the dimension of an animated GIF, but the smaller dimension-ed file ends up with larger file size. Original file: 500 x 225, 443KB Resized file: 400 x 180, 488KB Here is my code using (var imageColl = new…
Ray
  • 12,101
  • 27
  • 95
  • 137
1
vote
0 answers

Draw Text on .pdf files

I just started using Magick.net, but this is not my first time see'ing ImageMagick sence some time ago I've played with it and managed to do this: @echo off setlocal ::-------------------------------------------------------- ::PDF File…
1
vote
1 answer

otool -L: Not a Mach-O filetype

I'm trying to use Magick.Net on OS X, and I've been following this guide to do so. It's a guide for Linux, but OS X is Unix so I assume that it should work the same. I think I'm close to making it work but I've got a problem with the dependencies,…
stepper
  • 1,147
  • 2
  • 14
  • 22
1
vote
1 answer

Magick.net converting PDF to image "unable to create temporary file '': No such file or directory @ error/pdf.c/ReadPDFImage/476"

I'm trying to use Magick.net in a console application to render images from a PDFs and can't seem to get around this problem. Upon calling "MagickImageCollection.Read(byte[], settings)" I always get a "unable to create temporary file '': No such…
1
vote
2 answers

Convert first page to tif using Magick.NET

Following gm convert command converts first page of source.pdf to output.tif convert source.pdf[0] output.tif I wonder how to do it with Magick.NET library? Following code does not work for me. using (MagickImage image = new…
mrd
  • 2,095
  • 6
  • 23
  • 48
1
vote
0 answers

Magick.net check if two images are identical

I'm trying to compare two screenshots from a webpage using Magick.NET, a C# library from ImageMagick. My code looks like this: //Adapt image a bit otherwise he'll throw an error over the whole image newScreenshot.ColorFuzz = new…
Akorna
  • 217
  • 2
  • 16
1
vote
1 answer

Enable OpenCL with Magick.NET

I am using Magick.NET to despeckle an image. It take ~1-2 second for a relatively small image (1000*1500 pixels). I read that ImageMagick uses OpenCL to speed up some operations and despeckle is one of them. So, I wonder why it is so slow with a…
Sébastien
  • 1,667
  • 3
  • 20
  • 31
1
vote
1 answer

Magick.NET Control Chroma Subsampling and Quantization Table For JPEG

I am using Magick.NET For Image Manipulation in C#. Is it possible to Control Chroma Subsampling and/or specify alternate Quantization Tables While saving as JPEG using Magick.NET.
vinu
  • 125
  • 4
1
vote
1 answer

Can't use Magick.NET: System.EntryPointNotFoundException

I've just been attempting to use Magick.NET (Q16, AnyCpu) in my C# project. I installed it via nuget in Monodevelop (I'm on linux), and attempted to test it in my project with this code: using ImageMagick; // ... MagickImage img = new…
starbeamrainbowlabs
  • 5,692
  • 8
  • 42
  • 73
1
vote
1 answer

How to create black and white images in Magick.NET

I would like create TIF, PNG, JPG and BMP like black and white images via https://magick.codeplex.com. What I found if I do like in my code I can generate only TIF black and why images but not images of other types. Any clue how to fix…
NoWar
  • 36,338
  • 80
  • 323
  • 498
1
vote
0 answers

Detect junctions angles in a given binary image in c#

I would like to detect all the angles in a given binary image , the image contains a handwriting character (black on white bg), is there a way that i can get the angles at the lines junctions with 100% accuracy? My current solution (below) do find…
Dr.Haimovitz
  • 1,568
  • 12
  • 16
1
vote
1 answer

Add tag value to existing exif profile in image

I use Magick.NET library for reading exif values. For highest performance I'm using Ping method (see this) because I don't need actual image content when working with some image metadata. But now I need to write exif tag value if this value not…
Sam
  • 1,384
  • 2
  • 20
  • 30
1 2 3
8 9