Search found 1570 matches

by dlemstra
2018-08-26T02:33:55-07:00
Forum: Users
Topic: Montage ~4000 tiles under Windows
Replies: 4
Views: 4235

Re: Montage ~4000 tiles under Windows

Do you have the name for one of the files and the line that corresponds to one of those file inside list.txt so I can try to reproduce this?
by dlemstra
2018-08-25T08:31:35-07:00
Forum: Magick.NET
Topic: Dynamically Set FontPointSize for Text?
Replies: 10
Views: 19166

Re: Dynamically Set FontPointSize for Text?

You can use `Width` instead of `FontPointsize` to set the desired width of your label.
by dlemstra
2018-08-23T12:21:42-07:00
Forum: Users
Topic: Disabling Ghostscript in IM
Replies: 9
Views: 8615

Re: Disabling Ghostscript in IM

I don't understand why the CVE claims that they need to be disabled. We don't have support for reading files in the PS2 and the PS3 coders.
by dlemstra
2018-08-23T11:55:36-07:00
Forum: Kudos and Rants
Topic: ImageMagick has a ridiculous development workflow
Replies: 26
Views: 232681

Re: ImageMagick has a ridiculous development workflow

Yes it is. This is also stated on our website https://imagemagick.org:
The authoritative ImageMagick web site is https://www.imagemagick.org. The authoritative source code repository is https://github.com/ImageMagick. We maintain a source code mirror at https://gitlab.com/ImageMagick.
by dlemstra
2018-08-20T14:36:06-07:00
Forum: Magick.NET
Topic: Dynamically Set FontPointSize for Text?
Replies: 10
Views: 19166

Re: Dynamically Set FontPointSize for Text?

Do you have a specific area in image where you want to write the text depending on the size of the image? Can you explain in a bit more detail what you are trying to accomplish?
by dlemstra
2018-08-14T10:58:49-07:00
Forum: Magick.NET
Topic: Error combining jp2 files with magick.net
Replies: 17
Views: 32364

Re: Error combining jp2 files with magick.net

The amount of memory that you can allocate under a 32 bit process is around 2GB. And you are probably hitting that limit here. The limit for a 64 bit process is much higher.
by dlemstra
2018-08-12T11:40:39-07:00
Forum: Bugs
Topic: [Closed] possible bug with %C and %[compression] with TIFF
Replies: 6
Views: 8731

Re: possible bug with %C and %[compression] with TIFF

It appears that I misread your issue. This was not only an issue with layered tiff images. Just pushed a patch to resolve this issue.
by dlemstra
2018-08-12T06:11:56-07:00
Forum: Bugs
Topic: [Closed] possible bug with %C and %[compression] with TIFF
Replies: 6
Views: 8731

Re: possible bug with %C and %[compression] with TIFF

This issue is caused because the compression differs per channel in a PSD file. The last known compression of a channel will be used for the compression of that layer. And this happens when the pixels of the image are being read. When we ping an image we don't read the pixels.
by dlemstra
2018-08-11T04:08:14-07:00
Forum: Magick.NET
Topic: Error combining jp2 files with magick.net
Replies: 17
Views: 32364

Re: Error combining jp2 files with magick.net

The latest Q16 any cpu version.
by dlemstra
2018-08-07T13:20:16-07:00
Forum: Magick.NET
Topic: Error combining jp2 files with magick.net
Replies: 17
Views: 32364

Re: Error combining jp2 files with magick.net

I completely forgot about this issue. I just tried to reproduce it with your sample images with the latest version and I cannot reproduce your issue: using (MagickImageCollection images = new MagickImageCollection()) { MagickImage redimage = new MagickImage(@"I:\issues\topic34150\ROBN2184.jp2&q...
by dlemstra
2018-07-28T12:27:59-07:00
Forum: Magick.NET
Topic: Convert command line to C# .net
Replies: 2
Views: 8740

Re: Convert command line to C# .net

And what have you tried so far?
by dlemstra
2018-07-27T23:47:04-07:00
Forum: Magick.NET
Topic: Windows Disappearing on Hover After Reader Update
Replies: 3
Views: 8423

Re: Windows Disappearing on Hover After Reader Update

Magick.NET is not a control but a library that wraps the functionality of ImageMagick. I have no clue how you are using that inside your application but I would suggest that you would upgrade Magick.NET (if that is possible) to the latest version.
by dlemstra
2018-07-26T10:59:16-07:00
Forum: Magick.NET
Topic: Magick.NET slows down over time while processing a large batch of images?
Replies: 8
Views: 20362

Re: Magick.NET slows down over time while processing a large batch of images?

The instance that is returned by `image.GetPixels()` is `IDisposable`. You are leaking memory.
by dlemstra
2018-07-25T22:42:41-07:00
Forum: Bugs
Topic: dcraw messed up highlights
Replies: 8
Views: 9512

Re: dcraw messed up highlights

We still include it because it has some tweaks to make it work with ImageMagick and we added OpenCL support.
by dlemstra
2018-07-25T22:40:35-07:00
Forum: Magick.NET
Topic: Huge temporary image magick files are generated on disk
Replies: 9
Views: 14137

Re: Huge temporary image magick files are generated on disk

It might be wiser to inspect the content of the temporary files yourself so you can figure out where it fails. I don't think it is likely that this is caused by an invalid JPEG file.