Search found 1570 matches

by dlemstra
2019-03-16T19:38:38-07:00
Forum: Magick.NET
Topic: Resample questions
Replies: 4
Views: 42966

Re: Resample questions

You will need to set the colortype of the image to truecolor
by dlemstra
2019-03-14T19:32:06-07:00
Forum: Bugs
Topic: Using Screen & Multiple with Inline images stopped working again.
Replies: 9
Views: 16289

Re: Using Screen & Multiple with Inline images stopped working again.

Have you checked yourself if this was fixed in the most recent version of ImageMagick?
by dlemstra
2019-03-06T09:22:00-07:00
Forum: Users
Topic: Help, Command works but not in batch file?
Replies: 2
Views: 3829

Re: Help, Command works but not in batch file?

You will need to escape the percentage (%% instead of %)
by dlemstra
2019-03-03T19:13:17-07:00
Forum: Users
Topic: identify -verbose -> Comand line
Replies: 2
Views: 6368

Re: identify -verbose -> Comand line

Have you tried using %# as mentioned on this page: https://imagemagick.org/script/escape.php?
by dlemstra
2019-02-28T20:36:41-07:00
Forum: Magick.NET
Topic: RAW Data length error (PixelStorageSettings issue)
Replies: 2
Views: 40029

Re: RAW Data length error (PixelStorageSettings issue)

Your settings says you want to read a whole CMYK image at once but your files only contain one channel. You should read them as gray add them to a MagickImageCollection and call Combine to make one image.
by dlemstra
2019-02-28T20:28:26-07:00
Forum: Magick.NET
Topic: Combining images with MagickNET seems to miss the black channel
Replies: 1
Views: 37045

Re: Combining images with MagickNET seems to miss the black channel

The colorspace should be CMYK in the Combine call. And that result is already an image so don't pass that to the MagickImage constructor again. And don't forget to Dispose it.
by dlemstra
2019-02-28T02:49:24-07:00
Forum: Users
Topic: Convert .emf image to very big .png,.tiff,.jpg...
Replies: 8
Views: 6651

Re: Convert .emf image to very big .png,.tiff,.jpg...

It looks like it is possible to read part of the exr file on Windows. Could you open an issue on GitHub to request support for this? Not sure if this is possible but we should give it a try.
by dlemstra
2019-02-16T01:59:34-07:00
Forum: Users
Topic: get .psd layer (x,y) positions
Replies: 3
Views: 5421

Re: get .psd layer (x,y) positions

Yes that is what you are looking for. And you should skip the first image because that is the merged image and not a layer.
by dlemstra
2019-02-12T22:54:33-07:00
Forum: Magick.NET
Topic: Handling very high page count MultiPage Tiffs
Replies: 4
Views: 44848

Re: Handling very high page count MultiPage Tiffs

Can you share an image that demonstrates this issue? Is this an image with Photoshop layers or tiff pages? And have you tried using the Ping method of the MagickImageCollection to get the number of images? It would also be nice if you could demonstrate the issue where you request a frame that is to ...
by dlemstra
2019-02-10T07:50:20-07:00
Forum: Magick.NET
Topic: Compose with -channel (command line to c#)
Replies: 3
Views: 41592

Re: Compose with -channel (command line to c#)

Just created the issue myself and made some changes to Magick.NET. Your feature request will be available in the next release.
by dlemstra
2019-02-08T15:43:20-07:00
Forum: Magick.NET
Topic: Convert IM command to Magick.NET
Replies: 2
Views: 40188

Re: Convert IM command to Magick.NET

Most options have the same name as the methods/properties of the MagickImage class. Your example would translate to this: using (var image = new MagickImage(@"c:\Temp\Source.jpg")) { // -units PixelsPerInch -density 96x96 image.Density = new Density(96); // PixelsPerInch is the default. //...
by dlemstra
2019-02-05T23:43:23-07:00
Forum: Users
Topic: Creating TIF with layers
Replies: 10
Views: 8201

Re: Creating TIF with layers

There is an experimental flag `-define tiff:write-layers=yes`that can be used to create photoshop layers inside a tiff file. But there were still some issues when openening these files in Photoshop.
by dlemstra
2019-02-05T23:27:34-07:00
Forum: Magick.NET
Topic: Compose with -channel (command line to c#)
Replies: 3
Views: 41592

Re: Compose with -channel (command line to c#)

Thanks for finding this. Could you open an issue at "https://github.com/dlemstra/Magick.NET/issues" so I don't forget adding support for this?
by dlemstra
2019-02-03T07:56:20-07:00
Forum: Magick.NET
Topic: MagickNET and raw CMYK data
Replies: 5
Views: 45612

Re: MagickNET and raw CMYK data

You can use the PixelStorageSettings class for that. You can find an example in this recent issue: https://github.com/dlemstra/Magick.NET/issues/381
by dlemstra
2019-02-01T03:20:12-07:00
Forum: Bugs
Topic: Inefficient compression of CMYK images
Replies: 5
Views: 14530

Re: Inefficient compression of CMYK images

Feel free to open an issue on GitHub so we can keep track of it and maybe someone else will fix it.