Graphick++ version info etc

10bxjfhf <[email protected]> Wed, 4 Mar 2020 10:20:14 -0800
Newsgroups gmane.comp.video.graphicsmagick.apis
Message-ID <[email protected]>
This is a multi-part message in MIME format.
--===============5926777057482064985==
Content-Type: multipart/alternative;
 boundary="------------EECD1C59C712EC9C03CE74AF"
Content-Language: en-US

This is a multi-part message in MIME format.
--------------EECD1C59C712EC9C03CE74AF
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 8bit

I have run into a very curious crash with my current app; for a specific 
TIFF file, which according to DPF Manager has some issues, my app 
crashes, but only if I run it outside of the debugger.

While I can fix the issues reported by DPF manager, I am using this TIFF 
as a test file to help me set up the code to catch any and all such 
errors, so that I can be reasonably sure, that when I run the app to 
scan for images across my network, it won't bomb at the end of a long run.

I am not very familiar with GM conventions etc right now, and expect 
that this would only get worse down the road, because once the coding 
related to TIFF etc is done and I move on to other aspects, some of the 
finer points will be further back in my mind.

What I think would help myself, and anyone else who might eventually 
have to work on the code, would be to be able to retrieve and display, 
say in an 'About' dialog, the Magick library version and where it looks 
for its configuration data. I have looked through a fair bit of the GM 
documentation, but have not found anything which would help me.

I understand that I can add code to check these conventions, but would 
think it very helpful, if Magick could give me some feedback as to what 
it is expecting and what it found.

My apologies if this sort of data is already available, and I just have 
not found it.

===================

Guess I'll have to get deeper into analyzing the dump files, but would 
appreciate any help or pointers; TIA

What I have right now:

MAGICK_CONFIGURE_PATH=C:\Program Files (x86)\GraphicsMagick-1.3.34-Q8\
MAGICK_DEBUG=configure
MAGICK_FONT=C:\Program Files\gs\gs9.50\fonts\n019003l.pfb
MAGICK_HOME=D:\pkg\C++\MSVC2019\GM\gm-c031-d3ed\VisualMagick\bin\

<magicklog>
   <log events="blob, cache, coder, configure, deprecate, error, exception, resource, transform, user, warning" />
   <log output="win32eventlog" />
   <log filename="Magick-%d.log" />
   <log generations="3" />
   <log limit="2000" />
   <log format="%t %r %u %p %m/%f/%l/%d:\n  %e"  />
</magicklog>

The event log does not really help me either.

After the crash, I get 9 GraphicsMagick errors , typically with the 
description:

The description for Event ID 0 from source GraphicsMagick cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

If the event originated on another computer, the display information had to be saved with the event.

The following information was included with the event:

20200304095045 0:0.003929  0.000 9148 log.c SetLogEventMask 1171 Configure Event Set log event mask: configure

The final application Error:

Faulting application name: wxIC-MT.exe, version: 0.1.116.0, time stamp: 0x5e5f4662
Faulting module name: CORE_RL_magick_.dll, version: 23.20.2.0, time stamp: 0x5e023784
Exception code: 0xc0000005
Fault offset: 0x000a30e3
Faulting process id: 0x23bc
Faulting application start time: 0x01d5f24d6e79b7e1
Faulting application path: C:\Program Files (x86)\wxIC-MT\wxIC-MT.exe
Faulting module path: c:\program files (x86)\graphicsmagick-1.3.34-q8\CORE_RL_magick_.dll
Report Id: 558370cd-3818-415e-a0f6-2e13bb470b44
Faulting package full name:
Faulting package-relative application ID:

and a Windows Information entry:

Fault bucket 1412024285026022920, type 1

Event Name: APPCRASH

Response: Not available

Cab Id: 0

Problem signature:

P1: wxIC-MT.exe

P2: 0.1.116.0

P3: 5e5f4662

P4: CORE_RL_magick_.dll

P5: 23.20.2.0

P6: 5e023784

P7: c0000005

P8: 000a30e3

P9:

P10:

Attached files:

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER1076.tmp.dmp

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER10E4.tmp.WERInternalMetadata.xml

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER10F5.tmp.xml

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER10F7.tmp.csv

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER1117.tmp.txt

These files may be available here:

\\?\C:\ProgramData\Microsoft\Windows\WER\ReportArchive\AppCrash_wxIC-MT.exe_5aafbd7d825127e7d1995dc47c4196db13f5f9d_d57e89a5_d9acf8d1-4abb-4316-9046-fdbe096b725e

Analysis symbol:

Rechecking for solution: 0

Report Id: 558370cd-3818-415e-a0f6-2e13bb470b44

Report Status: 268435456

Hashed bucket: 549395de03f91dbf6398849b23337608

Cab Guid: 0





--------------EECD1C59C712EC9C03CE74AF
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: 8bit

<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <p>I have run into a very curious crash with my current app; for a
      specific TIFF file, which according to DPF Manager has some
      issues, my app crashes, but only if I run it outside of the
      debugger.</p>
    <p>While I can fix the issues reported by DPF manager, I am using
      this TIFF as a test file to help me set up the code to catch any
      and all such errors, so that I can be reasonably sure, that when I
      run the app to scan for images across my network, it won't bomb at
      the end of a long run.</p>
    <p>I am not very familiar with GM conventions etc right now, and
      expect that this would only get worse down the road, because once
      the coding related to TIFF etc is done and I move on to other
      aspects, some of the finer points will be further back in my mind.</p>
    <p>What I think would help myself, and anyone else who might
      eventually have to work on the code, would be to be able to
      retrieve and display, say in an 'About' dialog, the Magick library
      version and where it looks for its configuration data. I have
      looked through a fair bit of the GM documentation, but have not
      found anything which would help me. <br>
    </p>
    <p>I understand that I can add code to check these conventions, but
      would think it very helpful, if Magick could give me some feedback
      as to what it is expecting and what it found.</p>
    <p>My apologies if this sort of data is already available, and I
      just have not found it.</p>
    <p>===================</p>
    <p>Guess I'll have to get deeper into analyzing the dump files, but
      would appreciate any help or pointers; TIA<br>
    </p>
    <p>What I have right now:</p>
    <pre>MAGICK_CONFIGURE_PATH=C:\Program Files (x86)\GraphicsMagick-1.3.34-Q8\
MAGICK_DEBUG=configure
MAGICK_FONT=C:\Program Files\gs\gs9.50\fonts\n019003l.pfb
MAGICK_HOME=D:\pkg\C++\MSVC2019\GM\gm-c031-d3ed\VisualMagick\bin\
</pre>
    <pre>&lt;magicklog&gt;
  &lt;log events="blob, cache, coder, configure, deprecate, error, exception, resource, transform, user, warning" /&gt;
  &lt;log output="win32eventlog" /&gt;
  &lt;log filename="Magick-%d.log" /&gt;
  &lt;log generations="3" /&gt;
  &lt;log limit="2000" /&gt;
  &lt;log format="%t %r %u %p %m/%f/%l/%d:\n  %e"  /&gt;
&lt;/magicklog&gt;</pre>
    <p>The event log does not really help me either.</p>
    <p>After the crash, I get 9 GraphicsMagick errors , typically with
      the description:</p>
    <pre>The description for Event ID 0 from source GraphicsMagick cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

If the event originated on another computer, the display information had to be saved with the event.

The following information was included with the event: 

20200304095045 0:0.003929  0.000 9148 log.c SetLogEventMask 1171 Configure Event Set log event mask: configure
</pre>
    <p>The final application Error:<br>
    </p>
    <pre>Faulting application name: wxIC-MT.exe, version: 0.1.116.0, time stamp: 0x5e5f4662
Faulting module name: CORE_RL_magick_.dll, version: 23.20.2.0, time stamp: 0x5e023784
Exception code: 0xc0000005
Fault offset: 0x000a30e3
Faulting process id: 0x23bc
Faulting application start time: 0x01d5f24d6e79b7e1
Faulting application path: C:\Program Files (x86)\wxIC-MT\wxIC-MT.exe
Faulting module path: c:\program files (x86)\graphicsmagick-1.3.34-q8\CORE_RL_magick_.dll
Report Id: 558370cd-3818-415e-a0f6-2e13bb470b44
Faulting package full name: 
Faulting package-relative application ID: 
</pre>
    <p>and a Windows Information entry:</p>
    <pre>Fault bucket 1412024285026022920, type 1</pre>
    <pre>Event Name: APPCRASH</pre>
    <pre>Response: Not available</pre>
    <pre>Cab Id: 0</pre>
    <pre>
Problem signature:</pre>
    <pre>P1: wxIC-MT.exe</pre>
    <pre>P2: 0.1.116.0</pre>
    <pre>P3: 5e5f4662</pre>
    <pre>P4: CORE_RL_magick_.dll</pre>
    <pre>P5: 23.20.2.0</pre>
    <pre>P6: 5e023784</pre>
    <pre>P7: c0000005</pre>
    <pre>P8: 000a30e3</pre>
    <pre>P9: </pre>
    <pre>P10: </pre>
    <pre>
Attached files:</pre>
    <pre>\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER1076.tmp.dmp</pre>
    <pre>\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER10E4.tmp.WERInternalMetadata.xml</pre>
    <pre>\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER10F5.tmp.xml</pre>
    <pre>\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER10F7.tmp.csv</pre>
    <pre>\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER1117.tmp.txt</pre>
    <pre>
These files may be available here:</pre>
    <pre>\\?\C:\ProgramData\Microsoft\Windows\WER\ReportArchive\AppCrash_wxIC-MT.exe_5aafbd7d825127e7d1995dc47c4196db13f5f9d_d57e89a5_d9acf8d1-4abb-4316-9046-fdbe096b725e</pre>
    <pre>
Analysis symbol: </pre>
    <pre>Rechecking for solution: 0</pre>
    <pre>Report Id: 558370cd-3818-415e-a0f6-2e13bb470b44</pre>
    <pre>Report Status: 268435456</pre>
    <pre>Hashed bucket: 549395de03f91dbf6398849b23337608</pre>
    <pre>Cab Guid: 0</pre>
    <p><br>
    </p>
    <p><br>
    </p>
    <pre>
</pre>
    <pre>
</pre>
    <p><br>
    </p>
  </body>
</html>

--------------EECD1C59C712EC9C03CE74AF--


--===============5926777057482064985==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline


--===============5926777057482064985==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
Graphicsmagick-apis mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/graphicsmagick-apis

--===============5926777057482064985==--