label:@-
Posted: 2014-01-22T23:09:34-07:00
Something about newlines when using label:@- is causing a problem. Is this expected? Does this happen only on Windows?
Test 1-4 work as expected. Tests 5 & 6 give the error:
convert.exe: unable to read blob `-': No such file or directory @ error/blob.c/FileToBlob/1055.
If -size is specified for case 5 & 6, IM hangs.
ImageMagick 6.8.8-1 Q16 x64 2013-12-25 on Windows 7
Test 1-4 work as expected. Tests 5 & 6 give the error:
convert.exe: unable to read blob `-': No such file or directory @ error/blob.c/FileToBlob/1055.
If -size is specified for case 5 & 6, IM hangs.
Code: Select all
convert label:@"single.txt" test1.png
convert label:@- test2.png < "single.txt"
type "single.txt" | convert label:@- test3.png
convert label:@"multi.txt" test4.png
convert label:@- test5.png < "multi.txt"
type "multi.txt" | convert label:@- test6.png