Search found 1570 matches

by dlemstra
2019-01-30T23:56:48-07:00
Forum: Bugs
Topic: White pixel noise on JPG [6.7.7-10]
Replies: 5
Views: 9094

Re: White pixel noise on JPG [6.7.7-10]

And what happens with the latest version? You are using an ancient one.
by dlemstra
2019-01-25T15:43:47-07:00
Forum: Magick.NET
Topic: Combining many images is incredibly slow on VM
Replies: 9
Views: 15026

Re: Combining many images is incredibly slow on VM

Is your application running in 64 bit on your local machine and in 32 bit on your VM? But that would probably still not cause such a big difference. And you probably want to also follow my other tip to use AppendVertically or AppendHorizontally of the MagickImageCollection. This should also give you...
by dlemstra
2019-01-25T15:37:49-07:00
Forum: Magick.NET
Topic: Specifying gamma when reading pixel data
Replies: 6
Views: 11108

Re: Specifying gamma when reading pixel data

Not all read settings can/will be used when reading pixels, the Colorspace is one of them. If you want to do the same thing as "-gamma" you will need to call the GammaCorrect method of the MagickImage after you read it.
by dlemstra
2019-01-24T13:43:56-07:00
Forum: Magick.NET
Topic: Combining many images is incredibly slow on VM
Replies: 9
Views: 15026

Re: Combining many images is incredibly slow on VM

You are disposing none of your images. Does this happen instantly or only after a couple times? And you might want to take a look at the MagickImageCollection class that has "Append" methods to combine images.
by dlemstra
2019-01-21T11:08:08-07:00
Forum: Magick.NET
Topic: Loading monochrome pixel into MagickImage
Replies: 2
Views: 8077

Re: Loading monochrome pixel into MagickImage

You should use the `string` overload instead.

Code: Select all

new PixelStorageSettings(100, 100, StorageType.Short,"R")
by dlemstra
2019-01-18T05:27:58-07:00
Forum: Magick.NET
Topic: Really large images...
Replies: 2
Views: 8334

Re: Really large images...

Could you open an issue on with a code sample Github and share an image that I can use to reproduce your issue?
by dlemstra
2019-01-13T01:22:51-07:00
Forum: Bugs
Topic: ImageMagick.MagickResourceLimitErrorException
Replies: 3
Views: 8813

Re: ImageMagick.MagickResourceLimitErrorException

The patch that was made changes the error into a warning and those are not thrown my Magick.NET as you have read in the link that you posted. Would it be possible to share an image so I can add a unit test to Magick.NET to make sure this stays fixed? I am planning to publish a new release later toda...
by dlemstra
2019-01-08T13:30:29-07:00
Forum: Magick.NET
Topic: Using magick.net in C# to find tables
Replies: 2
Views: 9196

Re: Using magick.net in C# to find tables

I though you already figured this out because you closed this issue: https://github.com/dlemstra/Magick.NET/issues/367. You should the `ConnectedComponents` of `MagickImage` for this. Maybe you could give it a try yourself first this time?
by dlemstra
2019-01-07T15:42:25-07:00
Forum: Magick.NET
Topic: Button edge shape issue
Replies: 3
Views: 8373

Re: Button edge shape issue

I suspect that you are using the build in MSVG coder on Ubuntu and on Windows you are using librsvg. You probably want to install inkspace on your Linux machine to get better SVG output.
by dlemstra
2019-01-06T03:27:52-07:00
Forum: Developers
Topic: Bitmap ARGB1555 image format
Replies: 15
Views: 26096

Re: Bitmap ARGB1555 image format

`defineValue` is indeed the correct API. And you probably want to use `getPixels` to get the pixels.
by dlemstra
2018-12-19T21:59:10-07:00
Forum: Bugs
Topic: JPG file failed to convert with new version of Image Magick
Replies: 29
Views: 135121

Re: JPG file failed to convert with new version of Image Magick

My bad @maruno. I forgot to also patch IM6. Pushed the patches a couple hours ago. We will try to publish a new release soon.
by dlemstra
2018-12-16T13:55:15-07:00
Forum: Magick++
Topic: Magick++ feature request: PingImages()
Replies: 2
Views: 41355

Re: Magick++ feature request: PingImages()

Could you open an issue in Github for this? And do you mean readImages instead of ReadImages.
by dlemstra
2018-12-11T09:30:04-07:00
Forum: Developers
Topic: github vs. www.imagemagick.org source download
Replies: 12
Views: 16760

Re: github vs. www.imagemagick.org source download

The assets of the github releases are automatically created. They are created when we tag a commit. The ones that we have available as a download on our own site could differ.
by dlemstra
2018-11-27T13:51:53-07:00
Forum: Users
Topic: Problem with installation on Windows 10
Replies: 3
Views: 5411

Re: Problem with installation on Windows 10

You will not get the header files with the static version of the library.