Search found 14 matches

by findus
2014-03-11T23:23:57-07:00
Forum: Bugs
Topic: Problems with convert on specific PNG file.
Replies: 9
Views: 20341

Re: Problems with convert on specific PNG file.

As I mentioned in my initial post, the file can be opened by other programs just fine.
by findus
2014-03-11T10:29:23-07:00
Forum: Bugs
Topic: Problems with convert on specific PNG file.
Replies: 9
Views: 20341

Re: Problems with convert on specific PNG file.

Does this mean that this will not be fixed?
by findus
2014-03-06T06:02:46-07:00
Forum: Bugs
Topic: Problems with convert on specific PNG file.
Replies: 9
Views: 20341

Re: Problems with convert on specific PNG file.

Works fine for me, and for a friend with another dropbox account.
by findus
2014-03-06T05:09:01-07:00
Forum: Bugs
Topic: Problems with convert on specific PNG file.
Replies: 9
Views: 20341

Problems with convert on specific PNG file.

I am trying to convert a PNG file with the following command: convert problematic.png test.jpg My version is: (Output of "convert --version") Version: ImageMagick 6.8.8-5 Q16 x64 2014-02-08 http://www.imagemagick.org Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC Features: DPC OpenMP ...
by findus
2014-02-11T00:34:06-07:00
Forum: Developers
Topic: Suggestion for new option -error-mode
Replies: 13
Views: 15177

Re: Suggestion for new option -error-mode

It relies on a function in the Windows API called SetErrorMode. I don't know if other OS's have something similar. (Or even a problem that is similar)
by findus
2014-02-10T01:41:38-07:00
Forum: Developers
Topic: Suggestion for new option -error-mode
Replies: 13
Views: 15177

Re: Suggestion for new option -error-mode

Perfect! Thank you very much!

On a sidenote: Is there an overview of all environment variables somewhere?
by findus
2014-02-10T00:13:22-07:00
Forum: Developers
Topic: Suggestion for new option -error-mode
Replies: 13
Views: 15177

Re: Suggestion for new option -error-mode

dlemstra: I agree with you that fixing bugs are important, which is why I sent you those files. Good work on fixing the bug! However you don't seem to have understood what my real problem is. I want to be absolutely sure that a windows crash dialogue requiring user interaction does not pop up ...
by findus
2014-02-07T00:51:50-07:00
Forum: Developers
Topic: Suggestion for new option -error-mode
Replies: 13
Views: 15177

Re: Suggestion for new option -error-mode

Yes, I can share the images but you are totally missing the point. Even if this specific crash should be fixed, there is no guarantee that I will not find another file that causes another crash due to another bug. I do not agree that it would cause even stranger behavior to suppress the Windows ...
by findus
2014-02-06T07:20:18-07:00
Forum: Developers
Topic: Suggestion for new option -error-mode
Replies: 13
Views: 15177

Re: Suggestion for new option -error-mode

Yes, that is the problem I am trying to solve. Ideally no ImageMagick component would ever crash, but that is not the case. (I have several files that causes crashes and displays windows crash dialogues) I doubt there will ever be a version that is guaranteed not to crash under any circumstances. Of ...
by findus
2014-02-06T04:13:24-07:00
Forum: Developers
Topic: Suggestion for new option -error-mode
Replies: 13
Views: 15177

Suggestion for new option -error-mode

In windows, you can alter the behavior when your program crashes by calling the SetErrorMode function in the windows API. See: http://msdn.microsoft.com/en-us/library/windows/desktop/ms680621(v=vs.85).aspx The only way to set this on another process is by inheritance. Sometimes I would like to run ...
by findus
2013-09-18T01:29:12-07:00
Forum: Developers
Topic: SetErrorMode in windows version of ImageMagick
Replies: 3
Views: 8186

Re: SetErrorMode in windows version of ImageMagick

Awsome, thanks a bunch!

In what version of IM will this be included? And when can I expect a windows build to be found that includes this?
by findus
2013-09-17T06:24:24-07:00
Forum: Developers
Topic: SetErrorMode in windows version of ImageMagick
Replies: 3
Views: 8186

SetErrorMode in windows version of ImageMagick

Hi! I'm using ImageMagick to read info and convert images in an automated process, and sometimes the reading / conversion fails. This can happen for a number of reasons out of my control, such as corrupt files, corrupt media, access restrictions. Why it fails in the first place is not really ...
by findus
2012-08-15T00:06:07-07:00
Forum: Users
Topic: Extracting JPEG quantization tables
Replies: 4
Views: 8877

Re: Extracting JPEG quantization tables

magick wrote:Consider calling the JPEG delegate library API directly to extract the JPEG quantization tables. ImageMagick accesses them in the coder/jpeg.c module but they are not exported.
Where can I find this library?
by findus
2012-08-14T08:04:02-07:00
Forum: Users
Topic: Extracting JPEG quantization tables
Replies: 4
Views: 8877

Extracting JPEG quantization tables

I would like to extract the quantization tables (also referred to as quantization matrices) from JPEG files, is it possible to do this with some imagemagick component?