Search found 1570 matches
- 2019-10-18T06:58:35-07:00
- Forum: Bugs
- Topic: Error image read from windows clipboard (copy from chrome)
- Replies: 10
- Views: 122852
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.
- 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: 100653
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.
- 2019-10-04T07:04:48-07:00
- Forum: Bugs
- Topic: Error image read from windows clipboard (copy from chrome)
- Replies: 10
- Views: 122852
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 ...
- 2019-09-09T10:42:44-07:00
- Forum: Bugs
- Topic: Bug: convert: clBuildProgram failed. (-11) @ warning/opencl.c/CompileOpenCLKernel/1395
- Replies: 9
- Views: 119080
Re: Bug: convert: clBuildProgram failed. (-11) @ warning/opencl.c/CompileOpenCLKernel/1395
You should add "-debug accelerate"
- 2019-09-07T02:42:52-07:00
- Forum: Magick.NET
- Topic: Error merging two tiff images
- Replies: 2
- Views: 78886
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.
- 2019-09-01T05:23:36-07:00
- Forum: Magick.NET
- Topic: thumbnail in imagemagick
- Replies: 3
- Views: 84682
Re: thumbnail in imagemagick
It is "Thumbnail" not "thumbnail".
- 2019-08-31T04:55:08-07:00
- Forum: Magick.NET
- Topic: thumbnail in imagemagick
- Replies: 3
- Views: 84682
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.
- 2019-08-08T04:44:20-07:00
- Forum: Users
- Topic: Unable to save to EXR compressing with the DWAA method
- Replies: 6
- Views: 21928
Re: Unable to save to EXR compressing with the DWAA method
Thanks for helping us out! I have responded to your pull requests.
- 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: 79054
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;)
- 2019-07-02T22:22:13-07:00
- Forum: Magick.NET
- Topic: Swap color channels
- Replies: 3
- Views: 82640
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.
- 2019-06-27T08:21:15-07:00
- Forum: Users
- Topic: ImageMagick-7.0.8-50-vc15-x64.zip
- Replies: 2
- Views: 13966
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.
- 2019-06-27T06:06:32-07:00
- Forum: Consulting
- Topic: RGB ICC colour profile inclusion
- Replies: 1
- Views: 75326
Re: RGB ICC colour profile inclusion
This is for PAID support. Can you confirm that you will pay someone to answer this question?
- 2019-06-20T13:35:41-07:00
- Forum: Magick.NET
- Topic: Getting "System.NotSupportedException: mluc" since 7.14
- Replies: 1
- Views: 75393
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.
- 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: 109238
Re: How to get an equivalent Magick.NET script from a command-line command?
You will need to change:
into
or add
And you could also use
Code: Select all
new MagickGeometry(sstargetWidth, sstargetHeight)
Code: Select all
new MagickGeometry($"{sstargetWidth}x{sstargetHeight}^")
Code: Select all
size.FillArea=true;
Code: Select all
ssnewImage = image.ToByteArray(MagickFormat.Png);
- 2019-05-25T00:35:14-07:00
- Forum: Magick.NET
- Topic: Improper image header. ReadPSDImage/2237
- Replies: 5
- Views: 100575
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?