Search found 1570 matches

by dlemstra
2018-06-27T22:40:50-07:00
Forum: Magick.NET
Topic: Setting Pixel value in Q16 HDRI 7.4.5
Replies: 8
Views: 14037

Re: Setting Pixel value in Q16 HDRI 7.4.5

The color is almost black because you are setting the value to 100f when the range is 0f to 65535f. This is almost black in the output image. And when you convert the pixel to a `System.Drawing.Color` the value will be zero because it only uses a range from 0f to 256f and when 100f is converted to t...
by dlemstra
2018-06-26T13:16:35-07:00
Forum: Magick.NET
Topic: Error combining jp2 files with magick.net
Replies: 17
Views: 33262

Re: Error combining jp2 files with magick.net

I downloaded the files but I haven't tried to reproduce the error yet. Hope I can make some time for it next week.
by dlemstra
2018-06-26T13:14:00-07:00
Forum: Magick.NET
Topic: No decode delegate for this image format 'CGM'
Replies: 1
Views: 7733

Re: No decode delegate for this image format 'CGM'

If you want to use ralcgm you will need to load your own delegates.xml (https://github.com/dlemstra/Magick.NET/ ... ization.md). But I have no idea what you will need to put in the delegates.xml file to get it working.
by dlemstra
2018-06-19T22:03:36-07:00
Forum: Magick.NET
Topic: Removing clipping mask and apply featuring/antialiasing
Replies: 2
Views: 9846

Re: Removing clipping mask and apply featuring/antialiasing

You are not using the correct overload for `Level`: image2.Level(50, 100); Should be: image2.Level(new Percentage(50), new Percentage(100)); And it looks like you are not doing the -alpha off on the first image. And as a last comment I would suggest that you use the using (MagickImage image2 = image...
by dlemstra
2018-06-18T13:03:19-07:00
Forum: Magick.NET
Topic: Error combining jp2 files with magick.net
Replies: 17
Views: 33262

Re: Error combining jp2 files with magick.net

Can you move your images to a more trusted spot like dropbox or onedrive? It's downloading an executable instead of your original file.
by dlemstra
2018-06-18T12:57:46-07:00
Forum: Magick.NET
Topic: Noise removal from scanned document for auto crop
Replies: 4
Views: 10450

Re: Noise removal from scanned document for auto crop

Thanks for helping out Fred. There are some more files that jivec wants to convert in this issue: https://github.com/dlemstra/Magick.NET/issues/234 and they don't work with your suggested method.
by dlemstra
2018-06-15T10:00:12-07:00
Forum: Magick.NET
Topic: Error combining jp2 files with magick.net
Replies: 17
Views: 33262

Re: Error combining jp2 files with magick.net

Can you share your images on something like dropbox?
by dlemstra
2018-06-06T11:11:44-07:00
Forum: Users
Topic: Windows Server 2016
Replies: 2
Views: 3428

Re: Windows Server 2016

It should work on windows server. What kind of error message do you get? And did you install the c++ redistributable?
by dlemstra
2018-06-01T12:39:56-07:00
Forum: Magick.NET
Topic: AddProfile very slow from version 7.2.0.0
Replies: 7
Views: 16206

Re: AddProfile very slow from version 7.2.0.0

Sorry for no getting back to this topic. This should be resolved in the latest release. Or are you using the HDRI build of Magick.NET?
by dlemstra
2018-05-31T14:37:24-07:00
Forum: Bugs
Topic: Convert PSD or TIF to JPG ignore alpha
Replies: 6
Views: 8805

Re: Convert PSD or TIF to JPG ignore alpha

This image only has a "merged" image and that image contains an alpha channel so we read it. I have no idea where can find that it is disabled.
by dlemstra
2018-05-31T14:06:36-07:00
Forum: Bugs
Topic: Convert PSD or TIF to JPG ignore alpha
Replies: 6
Views: 8805

Re: Convert PSD or TIF to JPG ignore alpha

I stepped through the decoder with a debugger and I have no idea where can can detect that the alpha channel is disabled. Instead of layers this file contains a `FMsk` that we don't read. I could not find any good documentation about it.
by dlemstra
2018-05-13T05:49:49-07:00
Forum: Magick.NET
Topic: How do you suppress TIFFWarnings?
Replies: 5
Views: 15741

Re: How do you suppress TIFFWarnings?

When an exception is thrown in the C# code there is a check to determine if warnings should be raised as an exception or should be ignored. But when an exception is created this will always be logged and that is why the message ends up in the log. You will need to add your own filter as you did.
by dlemstra
2018-05-08T14:13:18-07:00
Forum: Magick.NET
Topic: How do you suppress TIFFWarnings?
Replies: 5
Views: 15741

Re: How do you suppress TIFFWarnings?

Which version are you using and can you provide a link to your file and a small sample that I can use to reproduce the issue? A warning should normally be ignored so I don't understand why you are getting that exception.
by dlemstra
2018-05-07T10:28:20-07:00
Forum: Magick.NET
Topic: Creating image with label text
Replies: 2
Views: 11539

Re: Creating image with label text

Do you have a command line example of what you want to do? If you want to create a labels you can just do: new MagickImage("label:Your Text"). And if you want to control the font and the font size you can use the overload that accepts readsettings.
by dlemstra
2018-05-04T11:48:59-07:00
Forum: Bugs
Topic: Bitmap lower version images(BMP3, BMP2,..) reading issues for ImageMagic 7
Replies: 3
Views: 7221

Re: Bitmap lower version images(BMP3, BMP2,..) reading issues for ImageMagic 7

More details here: https://github.com/dlemstra/Magick.NET/issues/210

DJdev tried to do this:

Code: Select all

magick bmp3:logo3.bmp logo3.jpg
This will work in the next version of Magick.NET