CONVERT bug - converting text to .png fails

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
kfeina
Posts: 17
Joined: 2013-02-12T13:09:49-07:00
Authentication code: 6789

CONVERT bug - converting text to .png fails

Post by kfeina »

Hello;

I'm using ImageMagick-6.8.2-Q16 on Windows7-34bits SP1, and I think that I have found a bug.

I'm trying to convert text to an image for the project BGINFO4X (bginfo4x.sourceforge.net).

To test the bug, I have created a .bat with the following content:

Code: Select all

for /L %%H in (1,1,50) do (type test.txt | convert.exe label:@- test%%H.png)
The bug happens aleatory. After executing it three times, you can see that it crashes 10-20% of the times, each time in a different moment-file.
C:\Program Files\ImageMagick-6.8.2-Q16>bugIM.bat >> output.txt (In this test we get 5 errors)
convert.exe: no images defined `test7.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test19.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test22.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test38.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test44.png' @ error/convert.c/ConvertImageCommand/3068.

C:\Program Files\ImageMagick-6.8.2-Q16>bugIM.bat >> output.txt (In this test we get 6 errors)
convert.exe: no images defined `test8.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test13.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test27.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test31.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test37.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test39.png' @ error/convert.c/ConvertImageCommand/3068.

C:\Program Files\ImageMagick-6.8.2-Q16>bugIM.bat >> output.txt (In this test we get 9 errors)
convert.exe: no images defined `test2.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test8.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test16.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test18.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test25.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test28.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test35.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test49.png' @ error/convert.c/ConvertImageCommand/3068.
convert.exe: no images defined `test50.png' @ error/convert.c/ConvertImageCommand/3068.
Can you help me?
I have looked at the forums with no results.
I don't use antivirus.

Thanks a lot.
kfeina
Posts: 17
Joined: 2013-02-12T13:09:49-07:00
Authentication code: 6789

Re: CONVERT bug - converting text to .png fails

Post by kfeina »

Hello,

It seems that this bug is also confirmed by another user:

http://www.wizards-toolkit.org/discours ... 89&p=94728

For me is the same problem.

Thanks .
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: CONVERT bug - converting text to .png fails

Post by snibgo »

If you provide the contents of text.txt, someone might try to replicate the problem.
snibgo's IM pages: im.snibgo.com
kfeina
Posts: 17
Joined: 2013-02-12T13:09:49-07:00
Authentication code: 6789

Re: CONVERT bug - converting text to .png fails

Post by kfeina »

Hello,

The contents of the test.txt are:
test!!!
I used this simple test.txt file, created with notepad, to check that the problem is not related to the file-in itself.

Thanks a lot.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: CONVERT bug - converting text to .png fails

Post by snibgo »

I can replicate the problem on IM 6.7.9, Windows 7. I have noticed similar problems with piping in Windows, where one piping command immediately follows another. I think it's a Windows problem. The following two commands work with no problem:

Code: Select all

for /L %%H in (1,1,50) do (type test.txt | %IM%convert.exe label:@- test%%H.png && dir test.txt)
for /L %%H in (1,1,50) do (%IM%convert.exe label:test.txt test%%H.png)
snibgo's IM pages: im.snibgo.com
kfeina
Posts: 17
Joined: 2013-02-12T13:09:49-07:00
Authentication code: 6789

Re: CONVERT bug - converting text to .png fails

Post by kfeina »

Hello,

I don't believe that this is a Windows problem. It returns a C error with an error code:
convert.exe: no images defined `test7.png' @ error/convert.c/ConvertImageCommand/3068.
Repeating the test in pure windows commands (like type and finstr), works fine and no errors appear:
C:\Program Files\ImageMagick-6.8.2-Q16>for /L %H in (1 1 50) do (type test.txt | findstr "t" )
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
C:\Program Files\ImageMagick-6.8.2-Q16>(type test.txt | findstr "t" )
test!!!
Can anyone repeat the test bugIM.bat to confirm the problem?
for /L %%H in (1,1,50) do (type test.txt | convert.exe label:@- test%%H.png)
Thanks a lot.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: CONVERT bug - converting text to .png fails

Post by snibgo »

Yes, convert is failing, but why? Is convert doing something wrong, or is Windows doing something wrong? Or both? I don't know.
snibgo's IM pages: im.snibgo.com
kfeina
Posts: 17
Joined: 2013-02-12T13:09:49-07:00
Authentication code: 6789

Re: CONVERT bug - converting text to .png fails

Post by kfeina »

Hello, I have added the "-debug trace" option and effectively, convert crash:

C:\Program Files\ImageMagick-6.8.2-Q16>for /L %H in (1 1 50) do (type test.txt | convert.exe -debug trace label:@- test%H.png )

Here is the output:
C:\Program Files\ImageMagick-6.8.2-Q16>bugIM.bat >> bugIM.error
2013-02-14T13:17:06+01:00 0:00.001 0.000u 6.8.2 Trace convert.exe[3604]: image.c/GetImageInfo/1278/Trace
...
2013-02-14T13:17:06+01:00 0:00.020 0.000u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#ffffff
2013-02-14T13:17:06+01:00 0:00.038 0.000u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#dfdfdf
2013-02-14T13:17:06+01:00 0:00.062 0.000u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#bdbdbd
2013-02-14T13:17:06+01:00 0:00.080 0.000u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#00000000
2013-02-14T13:17:06+01:00 0:00.103 0.000u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:06+01:00 0:00.122 0.000u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:06+01:00 0:00.140 0.000u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:06+01:00 0:00.161 0.000u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:06+01:00 0:00.183 0.000u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:06+01:00 0:00.203 0.000u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:06+01:00 0:00.222 0.000u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:06+01:00 0:00.244 0.000u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:06+01:00 0:00.260 0.000u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:06+01:00 0:00.276 0.000u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:06+01:00 0:00.298 0.000u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:06+01:00 0:00.323 0.000u 6.8.2 Trace convert.exe[3604]: option.c/CloneImageOptions/1636/Trace

2013-02-14T13:17:06+01:00 0:00.348 0.031u 6.8.2 Trace convert.exe[3604]: image.c/SetImageInfoFile/2857/Trace

2013-02-14T13:17:06+01:00 0:00.365 0.031u 6.8.2 Trace convert.exe[3604]: image.c/SetImageInfoBlob/2822/Trace

2013-02-14T13:17:06+01:00 0:00.387 0.031u 6.8.2 Trace convert.exe[3604]: utility.c/ExpandFilenames/741/Trace
...
2013-02-14T13:17:06+01:00 0:00.409 0.031u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
convert.exe
2013-02-14T13:17:06+01:00 0:00.433 0.031u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
convert.exe
2013-02-14T13:17:06+01:00 0:00.455 0.031u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
label:@-
2013-02-14T13:17:06+01:00 0:00.482 0.062u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
label:@-
2013-02-14T13:17:06+01:00 0:00.507 0.062u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
test1.png
2013-02-14T13:17:07+01:00 0:00.532 0.062u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
test1.png
2013-02-14T13:17:07+01:00 0:00.552 0.062u 6.8.2 Trace convert.exe[3604]: mogrify.c/MogrifyImageInfo/6184/Trace

2013-02-14T13:17:07+01:00 0:00.574 0.062u 6.8.2 Trace convert.exe[3604]: mogrify.c/MogrifyImageInfo/6184/Trace

2013-02-14T13:17:07+01:00 0:00.598 0.062u 6.8.2 Trace convert.exe[3604]: option.c/SetImageOption/2579/Trace

2013-02-14T13:17:07+01:00 0:00.621 0.078u 6.8.2 Trace convert.exe[3604]: constitute.c/ReadImages/866/Trace
label:@-
2013-02-14T13:17:07+01:00 0:00.643 0.078u 6.8.2 Trace convert.exe[3604]: constitute.c/ReadImage/446/Trace
label:@-
2013-02-14T13:17:07+01:00 0:00.667 0.078u 6.8.2 Trace convert.exe[3604]: image.c/GetImageInfo/1278/Trace
...
2013-02-14T13:17:07+01:00 0:00.687 0.078u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#ffffff
2013-02-14T13:17:07+01:00 0:00.712 0.078u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#dfdfdf
2013-02-14T13:17:07+01:00 0:00.734 0.078u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#bdbdbd
2013-02-14T13:17:07+01:00 0:00.756 0.078u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#00000000
2013-02-14T13:17:07+01:00 0:00.775 0.078u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:07+01:00 0:00.799 0.094u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:07+01:00 0:00.823 0.094u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:07+01:00 0:00.843 0.094u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:07+01:00 0:00.860 0.094u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:07+01:00 0:00.880 0.109u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:07+01:00 0:00.902 0.109u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:07+01:00 0:00.923 0.109u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:07+01:00 0:00.947 0.109u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:07+01:00 0:00.967 0.109u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:07+01:00 0:00.989 0.109u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:07+01:00 0:01.010 0.109u 6.8.2 Trace convert.exe[3604]: option.c/CloneImageOptions/1636/Trace

2013-02-14T13:17:07+01:00 0:01.033 0.109u 6.8.2 Trace convert.exe[3604]: splay-tree.c/CloneSplayTree/357/Trace
...
2013-02-14T13:17:07+01:00 0:01.056 0.109u 6.8.2 Trace convert.exe[3604]: image.c/SetImageInfoFile/2857/Trace

2013-02-14T13:17:07+01:00 0:01.080 0.109u 6.8.2 Trace convert.exe[3604]: image.c/SetImageInfoBlob/2822/Trace

2013-02-14T13:17:07+01:00 0:01.103 0.109u 6.8.2 Trace convert.exe[3604]: image.c/SetImageInfo/2521/Trace
label:@-
2013-02-14T13:17:07+01:00 0:01.123 0.109u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
label:@-
2013-02-14T13:17:07+01:00 0:01.153 0.109u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
label:@-
2013-02-14T13:17:07+01:00 0:01.174 0.109u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
label:@-
2013-02-14T13:17:07+01:00 0:01.195 0.109u 6.8.2 Trace convert.exe[3604]: magick.c/SetMagickInfo/1475/Trace
ephemeral
2013-02-14T13:17:07+01:00 0:01.223 0.125u 6.8.2 Trace convert.exe[3604]: magick.c/SetMagickInfo/1475/Trace
clipmask
2013-02-14T13:17:07+01:00 0:01.245 0.125u 6.8.2 Trace convert.exe[3604]: splay-tree.c/ResetSplayTreeIterator/1436/Trace
...
2013-02-14T13:17:07+01:00 0:01.271 0.125u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNextValueInSplayTree/832/Trace
...
2013-02-14T13:17:07+01:00 0:01.291 0.125u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNextValueInSplayTree/832/Trace
...
2013-02-14T13:17:07+01:00 0:01.319 0.140u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNextValueInSplayTree/832/Trace
...
2013-02-14T13:17:07+01:00 0:01.341 0.140u 6.8.2 Trace convert.exe[3604]: configure.c/GetConfigureOptions/574/Trace
coder.xml
2013-02-14T13:17:07+01:00 0:01.369 0.140u 6.8.2 Trace convert.exe[3604]: configure.c/GetConfigurePaths/662/Trace
coder.xml
2013-02-14T13:17:07+01:00 0:01.391 0.140u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:07+01:00 0:01.413 0.140u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:07+01:00 0:01.437 0.140u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
C:\Program Files\ImageMagick-6.8.2-Q16\CORE_RL_magick_.dll
2013-02-14T13:17:07+01:00 0:01.468 0.140u 6.8.2 Trace convert.exe[3604]: hashmap.c/ResetLinkedListIterator/1978/Trace
...
2013-02-14T13:17:07+01:00 0:01.490 0.140u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:07+01:00 0:01.513 0.140u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:08+01:00 0:01.536 0.140u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:08+01:00 0:01.563 0.140u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:08+01:00 0:01.588 0.140u 6.8.2 Trace convert.exe[3604]: hashmap.c/DestroyLinkedList/422/Trace
...
2013-02-14T13:17:08+01:00 0:01.611 0.140u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNumberOfElementsInLinkedList/709/Trace
...
2013-02-14T13:17:08+01:00 0:01.633 0.140u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNumberOfElementsInLinkedList/709/Trace
...
2013-02-14T13:17:08+01:00 0:01.658 0.156u 6.8.2 Trace convert.exe[3604]: hashmap.c/ResetLinkedListIterator/1978/Trace
...
2013-02-14T13:17:08+01:00 0:01.682 0.156u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:08+01:00 0:01.704 0.156u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:08+01:00 0:01.732 0.156u 6.8.2 Trace convert.exe[3604]: configure.c/DestroyConfigureOptions/229/Trace
...
2013-02-14T13:17:08+01:00 0:01.755 0.156u 6.8.2 Trace convert.exe[3604]: hashmap.c/DestroyLinkedList/422/Trace
...
2013-02-14T13:17:08+01:00 0:01.773 0.156u 6.8.2 Trace convert.exe[3604]: string.c/DestroyStringInfo/843/Trace
...
2013-02-14T13:17:08+01:00 0:01.795 0.156u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNumberOfNodesInSplayTree/939/Trace
...
2013-02-14T13:17:08+01:00 0:01.812 0.156u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:08+01:00 0:01.833 0.156u 6.8.2 Trace convert.exe[3604]: module.c/TagToCoderModuleName/1453/Trace
LABEL
2013-02-14T13:17:08+01:00 0:01.853 0.156u 6.8.2 Trace convert.exe[3604]: module.c/GetMagickModulePath/555/Trace
IM_MOD_RL_LABEL_.dll
2013-02-14T13:17:08+01:00 0:01.877 0.156u 6.8.2 Trace convert.exe[3604]: module.c/RegisterModule/1415/Trace
LABEL
2013-02-14T13:17:08+01:00 0:01.895 0.156u 6.8.2 Trace convert.exe[3604]: module.c/TagToModuleName/1545/Trace
LABEL
2013-02-14T13:17:08+01:00 0:01.918 0.156u 6.8.2 Trace convert.exe[3604]: module.c/TagToModuleName/1545/Trace
LABEL
2013-02-14T13:17:08+01:00 0:01.936 0.156u 6.8.2 Trace convert.exe[3604]: magick.c/SetMagickInfo/1475/Trace
LABEL
2013-02-14T13:17:08+01:00 0:01.958 0.172u 6.8.2 Trace convert.exe[3604]: magick.c/RegisterMagickInfo/1433/Trace
LABEL
2013-02-14T13:17:08+01:00 0:01.983 0.187u 6.8.2 Trace convert.exe[3604]: splay-tree.c/ResetSplayTreeIterator/1436/Trace
...
2013-02-14T13:17:08+01:00 0:02.008 0.187u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNextValueInSplayTree/832/Trace
...
2013-02-14T13:17:08+01:00 0:02.031 0.187u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNextValueInSplayTree/832/Trace
...
2013-02-14T13:17:08+01:00 0:02.049 0.187u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNextValueInSplayTree/832/Trace
...
2013-02-14T13:17:08+01:00 0:02.073 0.187u 6.8.2 Trace convert.exe[3604]: magick.c/GetMagickEndianSupport/371/Trace
...
2013-02-14T13:17:08+01:00 0:02.093 0.203u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
label:@-
2013-02-14T13:17:08+01:00 0:02.116 0.203u 6.8.2 Trace convert.exe[3604]: splay-tree.c/ResetSplayTreeIterator/1436/Trace
...
2013-02-14T13:17:08+01:00 0:02.134 0.203u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNextValueInSplayTree/832/Trace
...
2013-02-14T13:17:08+01:00 0:02.158 0.203u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNextValueInSplayTree/832/Trace
...
2013-02-14T13:17:08+01:00 0:02.181 0.203u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNextValueInSplayTree/832/Trace
...
2013-02-14T13:17:08+01:00 0:02.204 0.203u 6.8.2 Trace convert.exe[3604]: magick.c/GetMagickEndianSupport/371/Trace
...
2013-02-14T13:17:08+01:00 0:02.222 0.203u 6.8.2 Trace convert.exe[3604]: magick.c/GetMagickSeekableStream/723/Trace
...
2013-02-14T13:17:08+01:00 0:02.243 0.203u 6.8.2 Trace convert.exe[3604]: magick.c/GetImageDecoder/151/Trace
...
2013-02-14T13:17:08+01:00 0:02.259 0.203u 6.8.2 Trace convert.exe[3604]: magick.c/GetImageDecoder/151/Trace
...
2013-02-14T13:17:08+01:00 0:02.274 0.203u 6.8.2 Trace convert.exe[3604]: magick.c/GetMagickThreadSupport/754/Trace
...
2013-02-14T13:17:08+01:00 0:02.295 0.203u 6.8.2 Trace convert.exe[3604]: magick.c/GetImageDecoder/151/Trace
...
2013-02-14T13:17:08+01:00 0:02.313 0.218u 6.8.2 Trace convert.exe[3604]: label.c/ReadLABELImage/121/Trace
@-
2013-02-14T13:17:08+01:00 0:02.329 0.218u 6.8.2 Trace convert.exe[3604]: image.c/AcquireImage/163/Trace
...
2013-02-14T13:17:08+01:00 0:02.346 0.218u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#ffffff
2013-02-14T13:17:08+01:00 0:02.370 0.218u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#dfdfdf
2013-02-14T13:17:08+01:00 0:02.395 0.234u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#bdbdbd
2013-02-14T13:17:08+01:00 0:02.418 0.234u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#00000000
2013-02-14T13:17:08+01:00 0:02.443 0.234u 6.8.2 Trace convert.exe[3604]: blob.c/SetBlobExempt/3684/Trace

2013-02-14T13:17:08+01:00 0:02.456 0.234u 6.8.2 Trace convert.exe[3604]: image.c/SyncImageSettings/3545/Trace
@-
2013-02-14T13:17:08+01:00 0:02.475 0.234u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:08+01:00 0:02.497 0.234u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:08+01:00 0:02.523 0.234u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:02.543 0.234u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:02.566 0.234u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:02.583 0.234u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:02.609 0.234u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:02.624 0.234u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:02.647 0.234u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:02.666 0.234u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:02.689 0.234u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:02.712 0.234u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:02.733 0.250u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:02.755 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:02.772 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:02.791 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:02.816 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:02.834 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:02.861 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:02.879 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:02.904 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:02.923 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:02.946 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:02.965 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:02.988 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.009 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.030 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.053 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.076 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.093 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.114 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.136 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.160 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.181 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.198 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.220 0.265u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.241 0.265u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.262 0.281u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.283 0.281u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.302 0.281u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.324 0.296u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.336 0.296u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.346 0.296u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.355 0.296u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.373 0.296u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.396 0.312u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.414 0.312u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.432 0.312u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.452 0.312u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.471 0.312u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:09+01:00 0:03.490 0.312u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:09+01:00 0:03.513 0.312u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:10+01:00 0:03.536 0.328u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:10+01:00 0:03.560 0.328u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:10+01:00 0:03.582 0.328u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:10+01:00 0:03.605 0.328u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:10+01:00 0:03.623 0.328u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:10+01:00 0:03.648 0.328u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:10+01:00 0:03.669 0.343u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:10+01:00 0:03.690 0.343u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:10+01:00 0:03.712 0.343u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:10+01:00 0:03.729 0.343u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:10+01:00 0:03.753 0.359u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:10+01:00 0:03.765 0.359u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:10+01:00 0:03.788 0.359u 6.8.2 Trace convert.exe[3604]: option.c/ResetImageOptionIterator/2539/Trace
@-
2013-02-14T13:17:10+01:00 0:03.808 0.359u 6.8.2 Trace convert.exe[3604]: splay-tree.c/ResetSplayTreeIterator/1436/Trace
...
2013-02-14T13:17:10+01:00 0:03.831 0.374u 6.8.2 Trace convert.exe[3604]: option.c/GetNextImageOption/2061/Trace
@-
2013-02-14T13:17:10+01:00 0:03.854 0.390u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNextKeyInSplayTree/778/Trace
...
2013-02-14T13:17:10+01:00 0:03.873 0.390u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:10+01:00 0:03.892 0.390u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:10+01:00 0:03.914 0.390u 6.8.2 Trace convert.exe[3604]: artifact.c/SetImageArtifact/440/Trace
@-
2013-02-14T13:17:10+01:00 0:03.936 0.390u 6.8.2 Trace convert.exe[3604]: option.c/GetNextImageOption/2061/Trace
@-
2013-02-14T13:17:10+01:00 0:03.956 0.390u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNextKeyInSplayTree/778/Trace
...
2013-02-14T13:17:10+01:00 0:03.981 0.390u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:10+01:00 0:04.001 0.390u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:10+01:00 0:04.023 0.390u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:10+01:00 0:04.037 0.390u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:10+01:00 0:04.063 0.390u 6.8.2 Trace convert.exe[3604]: image.c/ResetImagePage/2066/Trace
@-
2013-02-14T13:17:10+01:00 0:04.082 0.390u 6.8.2 Trace convert.exe[3604]: property.c/InterpretImageProperties/2994/Trace
@-
2013-02-14T13:17:10+01:00 0:04.110 0.390u 6.8.2 Trace convert.exe[3604]: string.c/FileToString/996/Trace
-
2013-02-14T13:17:10+01:00 0:04.131 0.390u 6.8.2 Trace convert.exe[3604]: blob.c/FileToBlob/950/Trace
-
2013-02-14T13:17:10+01:00 0:04.152 0.390u 6.8.2 Trace convert.exe[3604]: locale.c/GetLocaleOptions/713/Trace
locale.xml
2013-02-14T13:17:10+01:00 0:04.172 0.390u 6.8.2 Trace convert.exe[3604]: configure.c/GetConfigurePaths/662/Trace
locale.xml
2013-02-14T13:17:10+01:00 0:04.198 0.390u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:10+01:00 0:04.222 0.390u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:10+01:00 0:04.245 0.390u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
C:\Program Files\ImageMagick-6.8.2-Q16\CORE_RL_magick_.dll
2013-02-14T13:17:10+01:00 0:04.277 0.390u 6.8.2 Trace convert.exe[3604]: hashmap.c/ResetLinkedListIterator/1978/Trace
...
2013-02-14T13:17:10+01:00 0:04.301 0.406u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:10+01:00 0:04.323 0.406u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:10+01:00 0:04.346 0.406u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:10+01:00 0:04.359 0.421u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:10+01:00 0:04.372 0.437u 6.8.2 Trace convert.exe[3604]: hashmap.c/DestroyLinkedList/422/Trace
...
2013-02-14T13:17:10+01:00 0:04.392 0.437u 6.8.2 Trace convert.exe[3604]: nt-base.c/NTResourceToBlob/1847/Trace
locale.xml
2013-02-14T13:17:10+01:00 0:04.410 0.452u 6.8.2 Trace convert.exe[3604]: string.c/SetStringInfoLength/1920/Trace
...
2013-02-14T13:17:10+01:00 0:04.431 0.452u 6.8.2 Trace convert.exe[3604]: string.c/SetStringInfoDatum/1886/Trace
...
2013-02-14T13:17:10+01:00 0:04.449 0.452u 6.8.2 Trace convert.exe[3604]: string.c/SetStringInfoPath/1962/Trace
...
2013-02-14T13:17:10+01:00 0:04.473 0.452u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:10+01:00 0:04.493 0.452u 6.8.2 Trace convert.exe[3604]: hashmap.c/ResetLinkedListIterator/1978/Trace
...
2013-02-14T13:17:10+01:00 0:04.514 0.452u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:11+01:00 0:04.539 0.452u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:11+01:00 0:04.560 0.452u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:11+01:00 0:04.583 0.452u 6.8.2 Trace convert.exe[3604]: locale.c/DestroyLocaleOptions/206/Trace
...
2013-02-14T13:17:11+01:00 0:04.605 0.452u 6.8.2 Trace convert.exe[3604]: hashmap.c/DestroyLinkedList/422/Trace
...
2013-02-14T13:17:11+01:00 0:04.627 0.452u 6.8.2 Trace convert.exe[3604]: string.c/DestroyStringInfo/843/Trace
...
2013-02-14T13:17:11+01:00 0:04.646 0.452u 6.8.2 Trace convert.exe[3604]: string.c/DestroyStringInfo/843/Trace
...
2013-02-14T13:17:11+01:00 0:04.665 0.452u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNumberOfNodesInSplayTree/939/Trace
...
2013-02-14T13:17:11+01:00 0:04.685 0.452u 6.8.2 Trace convert.exe[3604]: locale.c/GetLocaleOptions/713/Trace
english.xml
2013-02-14T13:17:11+01:00 0:04.706 0.452u 6.8.2 Trace convert.exe[3604]: configure.c/GetConfigurePaths/662/Trace
english.xml
2013-02-14T13:17:11+01:00 0:04.728 0.452u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:11+01:00 0:04.752 0.452u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:11+01:00 0:04.768 0.452u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
C:\Program Files\ImageMagick-6.8.2-Q16\CORE_RL_magick_.dll
2013-02-14T13:17:11+01:00 0:04.801 0.452u 6.8.2 Trace convert.exe[3604]: hashmap.c/ResetLinkedListIterator/1978/Trace
...
2013-02-14T13:17:11+01:00 0:04.823 0.468u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:11+01:00 0:04.848 0.468u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:11+01:00 0:04.869 0.468u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:11+01:00 0:04.893 0.468u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:11+01:00 0:04.911 0.468u 6.8.2 Trace convert.exe[3604]: hashmap.c/DestroyLinkedList/422/Trace
...
2013-02-14T13:17:11+01:00 0:04.931 0.468u 6.8.2 Trace convert.exe[3604]: nt-base.c/NTResourceToBlob/1847/Trace
english.xml
2013-02-14T13:17:11+01:00 0:04.951 0.468u 6.8.2 Trace convert.exe[3604]: string.c/SetStringInfoLength/1920/Trace
...
2013-02-14T13:17:11+01:00 0:04.972 0.468u 6.8.2 Trace convert.exe[3604]: string.c/SetStringInfoDatum/1886/Trace
...
2013-02-14T13:17:11+01:00 0:04.993 0.468u 6.8.2 Trace convert.exe[3604]: string.c/SetStringInfoPath/1962/Trace
...
2013-02-14T13:17:11+01:00 0:05.011 0.499u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:11+01:00 0:05.034 0.499u 6.8.2 Trace convert.exe[3604]: hashmap.c/ResetLinkedListIterator/1978/Trace
...
2013-02-14T13:17:11+01:00 0:05.057 0.499u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:11+01:00 0:05.086 0.499u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:11+01:00 0:05.113 0.515u 6.8.2 Trace convert.exe[3604]: hashmap.c/GetNextValueInLinkedList/634/Trace
...
2013-02-14T13:17:11+01:00 0:05.138 0.515u 6.8.2 Trace convert.exe[3604]: locale.c/DestroyLocaleOptions/206/Trace
...
2013-02-14T13:17:11+01:00 0:05.159 0.515u 6.8.2 Trace convert.exe[3604]: hashmap.c/DestroyLinkedList/422/Trace
...
2013-02-14T13:17:11+01:00 0:05.181 0.515u 6.8.2 Trace convert.exe[3604]: string.c/DestroyStringInfo/843/Trace
...
2013-02-14T13:17:11+01:00 0:05.198 0.515u 6.8.2 Trace convert.exe[3604]: string.c/DestroyStringInfo/843/Trace
...
2013-02-14T13:17:11+01:00 0:05.221 0.515u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNumberOfNodesInSplayTree/939/Trace
...
2013-02-14T13:17:11+01:00 0:05.247 0.515u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetNumberOfNodesInSplayTree/939/Trace
...
2013-02-14T13:17:11+01:00 0:05.272 0.515u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:11+01:00 0:05.293 0.515u 6.8.2 Trace convert.exe[3604]: utility.c/GetPathComponent/1194/Trace
..\..\magick\blob.c
2013-02-14T13:17:11+01:00 0:05.316 0.515u 6.8.2 Trace convert.exe[3604]: hashmap.c/AppendValueToLinkedList/165/Trace
...
2013-02-14T13:17:11+01:00 0:05.339 0.530u 6.8.2 Trace convert.exe[3604]: property.c/SetImageProperty/3415/Trace
@-
2013-02-14T13:17:11+01:00 0:05.361 0.530u 6.8.2 Trace convert.exe[3604]: property.c/DeleteImageProperty/255/Trace
@-
2013-02-14T13:17:11+01:00 0:05.382 0.530u 6.8.2 Trace convert.exe[3604]: splay-tree.c/DeleteNodeFromSplayTree/614/Trace
...
2013-02-14T13:17:11+01:00 0:05.405 0.530u 6.8.2 Trace convert.exe[3604]: property.c/GetImageProperty/1982/Trace
@-
2013-02-14T13:17:11+01:00 0:05.423 0.530u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:11+01:00 0:05.445 0.530u 6.8.2 Trace convert.exe[3604]: draw.c/GetDrawInfo/4774/Trace
...
2013-02-14T13:17:11+01:00 0:05.463 0.530u 6.8.2 Trace convert.exe[3604]: image.c/GetImageInfo/1278/Trace
...
2013-02-14T13:17:11+01:00 0:05.483 0.530u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#ffffff
2013-02-14T13:17:11+01:00 0:05.507 0.530u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#dfdfdf
2013-02-14T13:17:12+01:00 0:05.528 0.530u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#bdbdbd
2013-02-14T13:17:12+01:00 0:05.553 0.530u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#00000000
2013-02-14T13:17:12+01:00 0:05.577 0.530u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:12+01:00 0:05.600 0.530u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:12+01:00 0:05.615 0.530u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:12+01:00 0:05.635 0.530u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:12+01:00 0:05.654 0.530u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:12+01:00 0:05.677 0.530u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:12+01:00 0:05.697 0.546u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:12+01:00 0:05.715 0.546u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:12+01:00 0:05.739 0.546u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:12+01:00 0:05.755 0.546u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:12+01:00 0:05.773 0.562u 6.8.2 Trace convert.exe[3604]: string.c/CloneString/270/Trace
...
2013-02-14T13:17:12+01:00 0:05.794 0.562u 6.8.2 Trace convert.exe[3604]: option.c/CloneImageOptions/1636/Trace

2013-02-14T13:17:12+01:00 0:05.817 0.562u 6.8.2 Trace convert.exe[3604]: splay-tree.c/CloneSplayTree/357/Trace
...
2013-02-14T13:17:12+01:00 0:05.834 0.562u 6.8.2 Trace convert.exe[3604]: image.c/SetImageInfoFile/2857/Trace

2013-02-14T13:17:12+01:00 0:05.858 0.562u 6.8.2 Trace convert.exe[3604]: image.c/SetImageInfoBlob/2822/Trace

2013-02-14T13:17:12+01:00 0:05.882 0.577u 6.8.2 Trace convert.exe[3604]: draw.c/GetAffineMatrix/4729/Trace
...
2013-02-14T13:17:12+01:00 0:05.902 0.577u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#000F
2013-02-14T13:17:12+01:00 0:05.927 0.577u 6.8.2 Trace convert.exe[3604]: color.c/QueryMagickColorCompliance/2549/Trace
#FFF0
2013-02-14T13:17:12+01:00 0:05.943 0.577u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:12+01:00 0:05.963 0.577u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:12+01:00 0:05.988 0.577u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:12+01:00 0:06.013 0.577u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:12+01:00 0:06.033 0.577u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:12+01:00 0:06.056 0.577u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:12+01:00 0:06.079 0.593u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:12+01:00 0:06.102 0.593u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:12+01:00 0:06.123 0.608u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:12+01:00 0:06.148 0.608u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:12+01:00 0:06.168 0.608u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:12+01:00 0:06.192 0.608u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:12+01:00 0:06.213 0.608u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:12+01:00 0:06.234 0.608u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:12+01:00 0:06.255 0.608u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:12+01:00 0:06.273 0.608u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:12+01:00 0:06.296 0.608u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:12+01:00 0:06.315 0.608u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:12+01:00 0:06.340 0.608u 6.8.2 Trace convert.exe[3604]: option.c/GetImageOption/1799/Trace
@-
2013-02-14T13:17:12+01:00 0:06.361 0.608u 6.8.2 Trace convert.exe[3604]: splay-tree.c/GetValueFromSplayTree/890/Trace
...
2013-02-14T13:17:12+01:00 0:06.382 0.608u 6.8.2 Trace convert.exe[3604]: image.c/DestroyImageInfo/1096/Trace
@-
2013-02-14T13:17:12+01:00 0:06.405 0.608u 6.8.2 Trace convert.exe[3604]: option.c/DestroyImageOptions/1759/Trace
@-
The program Hangs here
If the test.txt has a new empty line (\n), then I get also this Windows Crash:
Firma con problemas:
Nombre del evento de problema: APPCRASH
Nombre de la aplicación: convert.exe
Versión de la aplicación: 7.0.0.0
Marca de tiempo de la aplicación: 510fbacb
Nombre del módulo con errores: IM_MOD_RL_LABEL_.dll
Versión del módulo con errores: 0.0.0.0
Marca de tiempo del módulo con errores: 510fbaa5
Exception Code : c0000005
Desplazamiento de excepción: 000010c2
Versión del sistema operativo: 6.1.7601.2.1.0.256.48
Id. de configuración regional: 3082
Información adicional 1: 0a9e
Información adicional 2: 0a9e372d3b4ad19135b953a78882e789
Información adicional 3: 0a9e
Información adicional 4: 0a9e372d3b4ad19135b953a78882e789
Can you help me? I get this error also when the OS is in English.

Thanks a lot.
kfeina
Posts: 17
Joined: 2013-02-12T13:09:49-07:00
Authentication code: 6789

Re: CONVERT bug - converting text to .png fails

Post by kfeina »

hello everyone.
can anyone help me with this issue?

thanks a lot.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: CONVERT bug - converting text to .png fails

Post by snibgo »

Do the following workarounds work for you?

Code: Select all

for /L %%H in (1,1,50) do (type test.txt | %IM%convert.exe label:@- test%%H.png && dir test.txt >NULL:)

for /L %%H in (1,1,50) do (%IM%convert.exe label:test.txt test%%H.png)
snibgo's IM pages: im.snibgo.com
kfeina
Posts: 17
Joined: 2013-02-12T13:09:49-07:00
Authentication code: 6789

Re: CONVERT bug - converting text to .png fails

Post by kfeina »

Hello,

It works OK in this case:
for /L %%H in (1,1,50) do (%IM%convert.exe label:test.txt test%%H.png)
For this case, it doesn't:
for /L %%H in (1,1,50) do (type test.txt | %IM%convert.exe label:@- test%%H.png && dir test.txt >NULL:)
You get the same aleatory errors: convert.exe: no images defined `test30.png' @ error/convert.c/ConvertImageCommand/3068.
And in some of them you get the message: The process tried to write to a nonexistent pipe

And another clue: if you add a new line in test.txt (so the file has two lines, the first one with "test" and the other one empty), then convert crash ALWAYS for each loop with a windows crash like this:

Firma con problemas:
Nombre del evento de problema: APPCRASH
Nombre de la aplicación: convert.exe
Versión de la aplicación: 7.0.0.0
Marca de tiempo de la aplicación: 510fbacb
Nombre del módulo con errores: IM_MOD_RL_LABEL_.dll
Versión del módulo con errores: 0.0.0.0
Marca de tiempo del módulo con errores: 510fbaa5
Código de excepción: c0000005
Desplazamiento de excepción: 000010c2
Versión del sistema operativo: 6.1.7601.2.1.0.256.48
Id. de configuración regional: 3082
Información adicional 1: 0a9e
Información adicional 2: 0a9e372d3b4ad19135b953a78882e789
Información adicional 3: 0a9e
Información adicional 4: 0a9e372d3b4ad19135b953a78882e789

Thanks a lot
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: CONVERT bug - converting text to .png fails

Post by snibgo »

Adding a blank line to test.txt, and running ...

Code: Select all

for /L %%H in (1,1,50) do type test.txt | convert.exe label:@- test%%H.png
... also fails every time for me (Windows 7, IM 6.7.9 and 6.8.3).

Strange, because it works without fail when I don't have the blank line.

With or without the blank line, the following always works for me:

Code: Select all

for /L %%H in (1,1,50) do (convert.exe label:test.txt test%%H.png)
snibgo's IM pages: im.snibgo.com
kfeina
Posts: 17
Joined: 2013-02-12T13:09:49-07:00
Authentication code: 6789

Re: CONVERT bug - converting text to .png fails

Post by kfeina »

Hello, yes it is. I have the same behaviour.

It seems something related to the pipe, or the stdin in label:@- , or even to the new line (\n) in test.txt.
For me is a convert issue, because you get a convert crash.

Anyone can help us?

Thanks.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: CONVERT bug - converting text to .png fails

Post by magick »

We tried ImageMagick 6.8.3-3 under Windows. We increased the loop from 50 to 1000 and on occasion we would get an exception, no images defined, but no crashes. With a similar script under Linux, we could not generate any failures.
kfeina
Posts: 17
Joined: 2013-02-12T13:09:49-07:00
Authentication code: 6789

Re: CONVERT bug - converting text to .png fails

Post by kfeina »

Hello,

I have downloaded the latest portable version 8.3.3 and uncompressed it in c:\IM, (so no spaces, no subfolders ,...).

Then I have executed bugIM.bat :
for /L %%H in (1,1,50) do (type test.txt | convert.exe label:@- test%%H.png)
I have got 4 errors (in a 50 loop).

What is true now, is that if the test.txt has new lines at the end (\n), the application doesn't crash like before.

But I also have the errors: @ error/convert.c/ConvertImageCommand/3068.

If I trace it with -debug trace I get:

2013-02-21T12:36:40+01:00 0:25.064 3.292u 6.8.3 Trace convert.exe[6368]: image.c/DestroyImageInfo/1098/Trace
label:@-
2013-02-21T12:36:40+01:00 0:25.069 3.292u 6.8.3 Trace convert.exe[6368]: option.c/DestroyImageOptions/1759/Trace
label:@-
2013-02-21T12:36:40+01:00 0:25.075 3.292u 6.8.3 Trace convert.exe[6368]: registry.c/RegistryComponentTerminus/330/Trace
...

Is there any way to trace/know what is happening?

Why I have this errors and you don't ?
Do I need to reinstall Visual C++ 2010 Redistributable Package (x86) ? Or it is not related?

Thanks a lot.
Post Reply