Search found 1570 matches

by dlemstra
2019-10-18T06:58:35-07:00
Forum: Bugs
Topic: Error image read from windows clipboard (copy from chrome)
Replies: 10
Views: 59045

Re: Error image read from windows clipboard (copy from chrome)

As stated before I have no clue why this happens so I cannot fix this at this time.
by dlemstra
2019-10-17T11:13:59-07:00
Forum: Magick.NET
Topic: Is it possible to compare 2 images and see the diff?
Replies: 2
Views: 48541

Re: Is it possible to compare 2 images and see the diff?

Setting image1.Compose to CompositeOperator.Difference should give you the result that you want.
by dlemstra
2019-10-04T07:04:48-07:00
Forum: Bugs
Topic: Error image read from windows clipboard (copy from chrome)
Replies: 10
Views: 59045

Re: Error image read from windows clipboard (copy from chrome)

Thanks for your research Jason. The code now assumes that there is no colormap so that could be an issue but I will take a look at that when that situation occurs. I just pushed a patch to fixed the issue for BMP3 (CF_DIB) images where the offset should be increased by 12. It looks like this also ne...
by dlemstra
2019-09-07T02:42:52-07:00
Forum: Magick.NET
Topic: Error merging two tiff images
Replies: 2
Views: 36899

Re: Error merging two tiff images

Without your images we cannot reproduce your issue. You can post them on something like DropBox or OneDrive. And can you clarify why you think that the output is corrupted.
by dlemstra
2019-09-01T05:23:36-07:00
Forum: Magick.NET
Topic: thumbnail in imagemagick
Replies: 3
Views: 40356

Re: thumbnail in imagemagick

It is "Thumbnail" not "thumbnail".
by dlemstra
2019-08-31T04:55:08-07:00
Forum: Magick.NET
Topic: thumbnail in imagemagick
Replies: 3
Views: 40356

Re: thumbnail in imagemagick

image.GetExifProfile() can return null so you also need check for that: profile?.CreateThumbnail(). And you probably want to do image.Thumbnail() instead.
by dlemstra
2019-08-08T04:44:20-07:00
Forum: Users
Topic: Unable to save to EXR compressing with the DWAA method
Replies: 6
Views: 13061

Re: Unable to save to EXR compressing with the DWAA method

Thanks for helping us out! I have responded to your pull requests.
by dlemstra
2019-07-16T22:34:09-07:00
Forum: Magick.NET
Topic: Magick.net crashes but doesn't throw any errors in Windows
Replies: 3
Views: 39029

Re: Magick.net crashes but doesn't throw any errors in Windows

This looks like an OpenCL issue. Can you try to disable it? ( OpenCL.IsEnabled=false;)
by dlemstra
2019-07-02T22:22:13-07:00
Forum: Magick.NET
Topic: Swap color channels
Replies: 3
Views: 42247

Re: Swap color channels

I am also considering to add parts of https://imagemagick.org/script/command- ... channel-fx in some form to the API. Not sure how and when this will happen yet.
by dlemstra
2019-06-27T08:21:15-07:00
Forum: Users
Topic: ImageMagick-7.0.8-50-vc15-x64.zip
Replies: 2
Views: 9412

Re: ImageMagick-7.0.8-50-vc15-x64.zip

You are asking your question in the wrong place. We did not create those zip files.
by dlemstra
2019-06-27T06:06:32-07:00
Forum: Consulting
Topic: RGB ICC colour profile inclusion
Replies: 1
Views: 37202

Re: RGB ICC colour profile inclusion

This is for PAID support. Can you confirm that you will pay someone to answer this question?
by dlemstra
2019-06-20T13:35:41-07:00
Forum: Magick.NET
Topic: Getting "System.NotSupportedException: mluc" since 7.14
Replies: 1
Views: 37089

Re: Getting "System.NotSupportedException: mluc" since 7.14

Thanks for reporting this. The latest release includes some extra code that parses metadata from the color profile. But I should not throw an exception in that spot. A new release will be published very soon to resolve this issue.
by dlemstra
2019-05-26T22:44:00-07:00
Forum: Magick.NET
Topic: How to get an equivalent Magick.NET script from a command-line command?
Replies: 9
Views: 55454

Re: How to get an equivalent Magick.NET script from a command-line command?

You will need to change:

Code: Select all

new MagickGeometry(sstargetWidth, sstargetHeight)
into

Code: Select all

new MagickGeometry($"{sstargetWidth}x{sstargetHeight}^")
or add

Code: Select all

size.FillArea=true;
And you could also use

Code: Select all

ssnewImage = image.ToByteArray(MagickFormat.Png);
by dlemstra
2019-05-25T00:35:14-07:00
Forum: Magick.NET
Topic: Improper image header. ReadPSDImage/2237
Replies: 5
Views: 54878

Re: Improper image header. ReadPSDImage/2237

Might be a while before this will be fixed in Magick.NET. Could you open an issue on GitHub also so other people know about this problem?