Page 1 of 1

Convert a txt file containing incomplete points to png, which will output an error

Posted: 2019-05-07T07:12:06-07:00
by ddosimg
Hi, when I convert a txt file to png, it exits with an error:

Code: Select all

convert: unable to open image `point.txt': No such file or directory @ error/blob.c/OpenBlob/2867.
convert: no images defined `out.png' @ error/convert.c/ConvertImageCommand/3258.
The contents of point.txt are as follows:

Code: Select all

# ImageMagick pixel enumeration: 2,2,65535,srgba
1,1: (7710,37008,65535,65535)  #1E90FFFF  DodgerBlue
# test1. ImageMagick 6.9.10-27 Q16, get error
convert point.txt point.png

# test2. ImageMagick 6.8.9-9 Q16, success
convert point.txt point.png
Question:
Is this a bug in IM 6.9.10-27 Q16?
Is there any way to solve this problem?

Doc(http://www.imagemagick.org/Usage/files/#txt):
Reading TXT images is also valid. You do not need to define ALL the pixels in the image.
In fact you do not even need to have the pixels in the correct order!
ImageMagick will just read each pixel defining line in turn, and 'draw' it onto a blank image canvas.
Only the numbers in the parenthesis on each line is used for this, not the color names.

Problems related :
https://www.imagemagick.org/discourse-s ... =1&t=35976
Please help me see how I can solve these two problems at the same time.

Platform:
System Version: macOS 10.14.4 (18E226)
IM version:
Version: ImageMagick 6.9.10-27 Q16 x86_64 2019-02-15 https://imagemagick.org

Re: Convert a txt file containing incomplete points to png, which will output an error

Posted: 2019-05-07T07:46:28-07:00
by snibgo
As this seems to be a bug, I'm moving it to the Bugs forum.

Re: Convert a txt file containing incomplete points to png, which will output an error

Posted: 2019-05-07T09:28:05-07:00
by fmw42
I have tried the following on IM 6.9.10.43 and 7.0.8.43 and get an error message, also.

Code: Select all

convert test.txt test.png
convert: no images defined `test.png' @ error/convert.c/ConvertImageCommand/3258.

Code: Select all

convert TXT:test.txt test.png
convert: no images defined `test.png' @ error/convert.c/ConvertImageCommand/3258.

Code: Select all

magick test.txt test.png
magick: no images for write '-write' 'test.png' at CLI arg 2 @ error/operation.c/CLINoImageOperator/4784.

Code: Select all

magick TXT:test.txt test.png
magick: no images for write '-write' 'test.png' at CLI arg 2 @ error/operation.c/CLINoImageOperator/4784.

Re: Convert a txt file containing incomplete points to png, which will output an error

Posted: 2019-05-07T11:55:41-07:00
by fmw42
I suspect this is related. But one of my scripts is failing, seemingly with the following:

Text file:

Code: Select all

# ImageMagick pixel enumeration: 500,381,255,rgb
0,0: (255,255,255)
14,3: (255,255,255)
36,0: (255,255,255)
54,0: (255,255,255)
65,3: (255,255,255)
74,0: (255,255,255)
97,0: (255,255,255)
115,0: (255,255,255)
133,0: (255,255,255)
139,0: (255,255,255)
158,2: (255,255,255)
175,5: (255,255,255)
194,0: (255,255,255)
204,0: (255,255,255)
226,3: (255,255,255)
246,0: (255,255,255)
257,0: (255,255,255)
276,2: (255,255,255)
285,1: (255,255,255)
306,0: (255,255,255)
323,0: (255,255,255)
332,0: (255,255,255)
357,6: (255,255,255)
372,0: (255,255,255)
388,0: (255,255,255)
399,0: (255,255,255)
416,3: (255,255,255)
437,2: (255,255,255)
447,0: (255,255,255)
469,0: (255,255,255)
480,2: (255,255,255)
499,4: (255,255,255)
2,22: (255,255,255)
21,15: (255,255,255)
32,19: (255,255,255)
51,17: (255,255,255)
65,18: (255,255,255)
80,13: (255,255,255)
92,22: (255,255,255)
116,16: (255,255,255)
128,13: (255,255,255)
147,21: (255,255,255)
162,13: (255,255,255)
176,19: (255,255,255)
190,17: (255,255,255)
202,19: (255,255,255)
226,16: (255,255,255)
234,10: (255,255,255)
254,10: (255,255,255)
272,18: (255,255,255)
288,17: (255,255,255)
302,18: (255,255,255)
324,16: (255,255,255)
336,16: (255,255,255)
352,12: (255,255,255)
365,16: (255,255,255)
390,19: (255,255,255)
396,19: (255,255,255)
420,20: (255,255,255)
429,20: (255,255,255)
445,19: (255,255,255)
466,16: (255,255,255)
475,19: (255,255,255)
495,16: (255,255,255)
0,33: (255,255,255)
13,36: (255,255,255)
30,31: (255,255,255)
50,37: (255,255,255)
68,30: (255,255,255)
74,29: (255,255,255)
96,32: (255,255,255)
109,30: (255,255,255)
133,38: (255,255,255)
143,35: (255,255,255)
154,33: (255,255,255)
173,32: (255,255,255)
190,32: (255,255,255)
203,32: (255,255,255)
228,32: (255,255,255)
238,26: (255,255,255)
256,35: (255,255,255)
270,28: (255,255,255)
283,35: (255,255,255)
298,34: (255,255,255)
314,28: (255,255,255)
336,36: (255,255,255)
358,37: (255,255,255)
367,35: (255,255,255)
381,30: (255,255,255)
401,31: (255,255,255)
422,33: (255,255,255)
434,33: (255,255,255)
442,32: (255,255,255)
460,37: (255,255,255)
483,38: (255,255,255)
497,27: (255,255,255)
3,44: (255,255,255)
17,52: (255,255,255)
29,49: (255,255,255)
50,47: (255,255,255)
62,46: (255,255,255)
80,45: (255,255,255)
100,48: (255,255,255)
118,52: (255,255,255)
128,47: (255,255,255)
138,52: (255,255,255)
164,50: (255,255,255)
175,50: (255,255,255)
186,51: (255,255,255)
214,51: (255,255,255)
226,50: (255,255,255)
237,43: (255,255,255)
257,48: (255,255,255)
267,53: (255,255,255)
285,45: (255,255,255)
308,48: (255,255,255)
323,51: (255,255,255)
333,42: (255,255,255)
356,47: (255,255,255)
366,53: (255,255,255)
389,53: (255,255,255)
403,48: (255,255,255)
420,44: (255,255,255)
431,54: (255,255,255)
450,48: (255,255,255)
467,53: (255,255,255)
479,49: (255,255,255)
499,47: (255,255,255)
6,62: (255,255,255)
20,61: (255,255,255)
27,59: (255,255,255)
42,69: (255,255,255)
63,64: (255,255,255)
85,69: (255,255,255)
90,68: (255,255,255)
112,68: (255,255,255)
122,67: (255,255,255)
145,64: (255,255,255)
159,64: (255,255,255)
172,66: (255,255,255)
196,61: (255,255,255)
206,62: (255,255,255)
223,63: (255,255,255)
234,65: (255,255,255)
261,67: (255,255,255)
267,64: (255,255,255)
285,64: (255,255,255)
298,59: (255,255,255)
326,58: (255,255,255)
333,59: (255,255,255)
353,69: (255,255,255)
363,64: (255,255,255)
378,67: (255,255,255)
401,69: (255,255,255)
421,69: (255,255,255)
434,66: (255,255,255)
442,59: (255,255,255)
461,64: (255,255,255)
482,70: (255,255,255)
490,68: (255,255,255)
3,76: (255,255,255)
20,77: (255,255,255)
31,79: (255,255,255)
54,75: (255,255,255)
68,81: (255,255,255)
80,74: (255,255,255)
95,83: (255,255,255)
107,80: (255,255,255)
127,80: (255,255,255)
150,81: (255,255,255)
154,76: (255,255,255)
182,84: (255,255,255)
192,85: (255,255,255)
207,83: (255,255,255)
221,77: (255,255,255)
239,83: (255,255,255)
255,81: (255,255,255)
272,79: (255,255,255)
294,85: (255,255,255)
307,78: (255,255,255)
322,76: (255,255,255)
331,75: (255,255,255)
350,78: (255,255,255)
374,86: (255,255,255)
382,79: (255,255,255)
397,78: (255,255,255)
414,80: (255,255,255)
435,82: (255,255,255)
452,82: (255,255,255)
463,76: (255,255,255)
483,80: (255,255,255)
490,83: (255,255,255)
0,100: (255,255,255)
16,91: (255,255,255)
31,97: (255,255,255)
51,93: (255,255,255)
61,100: (255,255,255)
86,95: (255,255,255)
94,90: (255,255,255)
111,93: (255,255,255)
127,92: (255,255,255)
142,92: (255,255,255)
158,97: (255,255,255)
178,102: (255,255,255)
195,99: (255,255,255)
213,96: (255,255,255)
218,99: (255,255,255)
238,97: (255,255,255)
257,101: (255,255,255)
271,102: (255,255,255)
290,94: (255,255,255)
310,92: (255,255,255)
314,90: (255,255,255)
341,96: (255,255,255)
358,91: (255,255,255)
365,101: (255,255,255)
388,96: (255,255,255)
401,93: (255,255,255)
417,98: (255,255,255)
431,99: (255,255,255)
448,96: (255,255,255)
466,93: (255,255,255)
477,93: (255,255,255)
495,92: (255,255,255)
0,117: (255,255,255)
11,107: (255,255,255)
32,112: (255,255,255)
47,116: (255,255,255)
64,112: (255,255,255)
75,116: (255,255,255)
90,110: (255,255,255)
108,112: (255,255,255)
133,117: (255,255,255)
144,115: (255,255,255)
155,115: (255,255,255)
178,112: (255,255,255)
186,106: (255,255,255)
213,112: (255,255,255)
230,107: (255,255,255)
238,112: (255,255,255)
252,116: (255,255,255)
275,107: (255,255,255)
282,112: (255,255,255)
300,107: (255,255,255)
322,113: (255,255,255)
334,107: (255,255,255)
348,116: (255,255,255)
366,113: (255,255,255)
387,116: (255,255,255)
401,111: (255,255,255)
410,109: (255,255,255)
429,106: (255,255,255)
448,111: (255,255,255)
466,117: (255,255,255)
477,112: (255,255,255)
497,107: (255,255,255)
1,123: (255,255,255)
11,132: (255,255,255)
33,127: (255,255,255)
51,124: (255,255,255)
66,129: (255,255,255)
85,133: (255,255,255)
94,130: (255,255,255)
112,126: (255,255,255)
125,123: (255,255,255)
138,122: (255,255,255)
157,122: (255,255,255)
174,133: (255,255,255)
195,130: (255,255,255)
203,123: (255,255,255)
219,124: (255,255,255)
240,129: (255,255,255)
262,122: (255,255,255)
275,128: (255,255,255)
288,128: (255,255,255)
301,134: (255,255,255)
324,126: (255,255,255)
334,124: (255,255,255)
352,128: (255,255,255)
366,123: (255,255,255)
382,129: (255,255,255)
403,123: (255,255,255)
417,134: (255,255,255)
437,133: (255,255,255)
447,122: (255,255,255)
464,132: (255,255,255)
474,129: (255,255,255)
490,125: (255,255,255)
0,144: (255,255,255)
16,149: (255,255,255)
27,144: (255,255,255)
43,150: (255,255,255)
70,147: (255,255,255)
78,143: (255,255,255)
91,141: (255,255,255)
115,145: (255,255,255)
123,142: (255,255,255)
145,143: (255,255,255)
166,141: (255,255,255)
176,140: (255,255,255)
191,144: (255,255,255)
209,139: (255,255,255)
220,138: (255,255,255)
239,142: (255,255,255)
253,150: (255,255,255)
276,140: (255,255,255)
289,143: (255,255,255)
301,146: (255,255,255)
326,145: (255,255,255)
331,146: (255,255,255)
351,140: (255,255,255)
371,147: (255,255,255)
387,140: (255,255,255)
397,139: (255,255,255)
418,144: (255,255,255)
438,146: (255,255,255)
448,144: (255,255,255)
467,142: (255,255,255)
485,146: (255,255,255)
490,145: (255,255,255)
0,164: (255,255,255)
16,163: (255,255,255)
28,160: (255,255,255)
49,158: (255,255,255)
64,160: (255,255,255)
86,158: (255,255,255)
98,165: (255,255,255)
108,164: (255,255,255)
133,155: (255,255,255)
149,160: (255,255,255)
154,154: (255,255,255)
172,157: (255,255,255)
197,162: (255,255,255)
208,161: (255,255,255)
221,156: (255,255,255)
234,160: (255,255,255)
259,163: (255,255,255)
271,165: (255,255,255)
284,162: (255,255,255)
304,160: (255,255,255)
323,157: (255,255,255)
336,160: (255,255,255)
356,164: (255,255,255)
374,162: (255,255,255)
380,166: (255,255,255)
402,160: (255,255,255)
414,158: (255,255,255)
430,159: (255,255,255)
452,164: (255,255,255)
465,162: (255,255,255)
481,156: (255,255,255)
490,156: (255,255,255)
6,179: (255,255,255)
15,178: (255,255,255)
38,182: (255,255,255)
47,174: (255,255,255)
68,180: (255,255,255)
83,181: (255,255,255)
96,176: (255,255,255)
115,178: (255,255,255)
129,181: (255,255,255)
142,170: (255,255,255)
160,181: (255,255,255)
171,176: (255,255,255)
192,177: (255,255,255)
212,173: (255,255,255)
227,173: (255,255,255)
239,180: (255,255,255)
251,171: (255,255,255)
268,179: (255,255,255)
291,170: (255,255,255)
302,181: (255,255,255)
317,176: (255,255,255)
336,181: (255,255,255)
352,171: (255,255,255)
368,172: (255,255,255)
389,176: (255,255,255)
399,177: (255,255,255)
421,170: (255,255,255)
432,180: (255,255,255)
453,181: (255,255,255)
466,173: (255,255,255)
475,172: (255,255,255)
499,172: (255,255,255)
0,197: (255,255,255)
15,188: (255,255,255)
32,192: (255,255,255)
46,197: (255,255,255)
61,192: (255,255,255)
86,193: (255,255,255)
101,195: (255,255,255)
110,187: (255,255,255)
122,193: (255,255,255)
140,192: (255,255,255)
163,186: (255,255,255)
182,192: (255,255,255)
192,191: (255,255,255)
203,187: (255,255,255)
226,186: (255,255,255)
243,198: (255,255,255)
254,189: (255,255,255)
278,197: (255,255,255)
282,193: (255,255,255)
306,190: (255,255,255)
317,195: (255,255,255)
330,187: (255,255,255)
349,192: (255,255,255)
372,194: (255,255,255)
390,198: (255,255,255)
404,193: (255,255,255)
418,189: (255,255,255)
437,192: (255,255,255)
446,189: (255,255,255)
460,188: (255,255,255)
480,198: (255,255,255)
499,188: (255,255,255)
1,210: (255,255,255)
17,210: (255,255,255)
32,209: (255,255,255)
51,208: (255,255,255)
68,209: (255,255,255)
75,210: (255,255,255)
99,204: (255,255,255)
108,203: (255,255,255)
133,203: (255,255,255)
139,204: (255,255,255)
166,211: (255,255,255)
170,210: (255,255,255)
192,214: (255,255,255)
210,202: (255,255,255)
228,208: (255,255,255)
235,209: (255,255,255)
262,211: (255,255,255)
272,205: (255,255,255)
294,205: (255,255,255)
308,211: (255,255,255)
322,204: (255,255,255)
340,212: (255,255,255)
352,211: (255,255,255)
372,210: (255,255,255)
387,210: (255,255,255)
400,211: (255,255,255)
411,214: (255,255,255)
427,208: (255,255,255)
443,213: (255,255,255)
462,212: (255,255,255)
479,207: (255,255,255)
499,210: (255,255,255)
0,228: (255,255,255)
19,219: (255,255,255)
32,228: (255,255,255)
48,230: (255,255,255)
68,225: (255,255,255)
82,226: (255,255,255)
101,226: (255,255,255)
111,228: (255,255,255)
131,221: (255,255,255)
147,223: (255,255,255)
166,226: (255,255,255)
180,220: (255,255,255)
191,225: (255,255,255)
204,230: (255,255,255)
223,218: (255,255,255)
240,226: (255,255,255)
261,227: (255,255,255)
271,230: (255,255,255)
285,218: (255,255,255)
300,227: (255,255,255)
323,225: (255,255,255)
334,220: (255,255,255)
355,224: (255,255,255)
369,225: (255,255,255)
382,226: (255,255,255)
401,220: (255,255,255)
419,230: (255,255,255)
430,229: (255,255,255)
450,224: (255,255,255)
465,226: (255,255,255)
483,221: (255,255,255)
499,228: (255,255,255)
0,246: (255,255,255)
16,241: (255,255,255)
33,236: (255,255,255)
53,242: (255,255,255)
60,244: (255,255,255)
82,236: (255,255,255)
99,238: (255,255,255)
107,245: (255,255,255)
134,242: (255,255,255)
142,244: (255,255,255)
165,239: (255,255,255)
181,243: (255,255,255)
191,238: (255,255,255)
207,239: (255,255,255)
225,240: (255,255,255)
243,246: (255,255,255)
252,237: (255,255,255)
266,235: (255,255,255)
291,242: (255,255,255)
300,245: (255,255,255)
321,239: (255,255,255)
335,240: (255,255,255)
346,239: (255,255,255)
367,234: (255,255,255)
387,234: (255,255,255)
396,241: (255,255,255)
411,244: (255,255,255)
429,241: (255,255,255)
452,240: (255,255,255)
470,239: (255,255,255)
482,239: (255,255,255)
499,237: (255,255,255)
0,252: (255,255,255)
15,260: (255,255,255)
35,254: (255,255,255)
43,260: (255,255,255)
64,257: (255,255,255)
86,251: (255,255,255)
90,250: (255,255,255)
113,252: (255,255,255)
134,255: (255,255,255)
142,256: (255,255,255)
160,250: (255,255,255)
176,257: (255,255,255)
191,250: (255,255,255)
202,259: (255,255,255)
229,254: (255,255,255)
234,250: (255,255,255)
258,250: (255,255,255)
278,259: (255,255,255)
290,251: (255,255,255)
298,253: (255,255,255)
317,254: (255,255,255)
335,257: (255,255,255)
354,262: (255,255,255)
364,262: (255,255,255)
378,261: (255,255,255)
405,250: (255,255,255)
411,260: (255,255,255)
437,250: (255,255,255)
444,251: (255,255,255)
465,251: (255,255,255)
484,260: (255,255,255)
492,258: (255,255,255)
3,269: (255,255,255)
13,269: (255,255,255)
32,266: (255,255,255)
50,272: (255,255,255)
65,277: (255,255,255)
75,278: (255,255,255)
95,277: (255,255,255)
113,270: (255,255,255)
130,272: (255,255,255)
145,272: (255,255,255)
155,271: (255,255,255)
170,272: (255,255,255)
192,274: (255,255,255)
211,270: (255,255,255)
230,268: (255,255,255)
238,266: (255,255,255)
262,275: (255,255,255)
269,275: (255,255,255)
284,274: (255,255,255)
310,275: (255,255,255)
323,278: (255,255,255)
337,268: (255,255,255)
349,270: (255,255,255)
370,268: (255,255,255)
384,270: (255,255,255)
405,278: (255,255,255)
413,266: (255,255,255)
426,270: (255,255,255)
445,270: (255,255,255)
468,278: (255,255,255)
478,272: (255,255,255)
498,278: (255,255,255)
6,288: (255,255,255)
17,289: (255,255,255)
34,287: (255,255,255)
44,291: (255,255,255)
58,293: (255,255,255)
85,293: (255,255,255)
91,293: (255,255,255)
107,292: (255,255,255)
134,290: (255,255,255)
139,293: (255,255,255)
156,290: (255,255,255)
172,289: (255,255,255)
196,288: (255,255,255)
212,292: (255,255,255)
218,284: (255,255,255)
240,286: (255,255,255)
256,288: (255,255,255)
274,288: (255,255,255)
294,287: (255,255,255)
303,294: (255,255,255)
323,285: (255,255,255)
336,285: (255,255,255)
355,284: (255,255,255)
370,291: (255,255,255)
389,291: (255,255,255)
397,288: (255,255,255)
416,283: (255,255,255)
427,289: (255,255,255)
442,290: (255,255,255)
459,288: (255,255,255)
474,294: (255,255,255)
492,282: (255,255,255)
0,302: (255,255,255)
16,299: (255,255,255)
27,307: (255,255,255)
51,309: (255,255,255)
62,301: (255,255,255)
80,301: (255,255,255)
95,302: (255,255,255)
116,303: (255,255,255)
134,305: (255,255,255)
144,304: (255,255,255)
164,305: (255,255,255)
175,301: (255,255,255)
193,299: (255,255,255)
205,303: (255,255,255)
227,307: (255,255,255)
240,310: (255,255,255)
258,298: (255,255,255)
271,303: (255,255,255)
292,298: (255,255,255)
307,301: (255,255,255)
323,298: (255,255,255)
339,300: (255,255,255)
346,302: (255,255,255)
374,299: (255,255,255)
381,308: (255,255,255)
405,306: (255,255,255)
415,303: (255,255,255)
437,306: (255,255,255)
448,303: (255,255,255)
468,308: (255,255,255)
474,306: (255,255,255)
497,304: (255,255,255)
0,321: (255,255,255)
18,320: (255,255,255)
38,318: (255,255,255)
48,326: (255,255,255)
64,316: (255,255,255)
86,319: (255,255,255)
96,324: (255,255,255)
106,326: (255,255,255)
130,316: (255,255,255)
149,323: (255,255,255)
160,322: (255,255,255)
173,319: (255,255,255)
193,322: (255,255,255)
202,326: (255,255,255)
224,322: (255,255,255)
238,314: (255,255,255)
259,324: (255,255,255)
270,314: (255,255,255)
282,316: (255,255,255)
302,320: (255,255,255)
324,316: (255,255,255)
342,325: (255,255,255)
352,320: (255,255,255)
366,322: (255,255,255)
387,320: (255,255,255)
400,322: (255,255,255)
416,318: (255,255,255)
426,314: (255,255,255)
453,321: (255,255,255)
464,324: (255,255,255)
480,324: (255,255,255)
492,321: (255,255,255)
0,336: (255,255,255)
17,331: (255,255,255)
29,331: (255,255,255)
45,341: (255,255,255)
63,330: (255,255,255)
74,334: (255,255,255)
96,338: (255,255,255)
117,341: (255,255,255)
134,339: (255,255,255)
143,332: (255,255,255)
163,336: (255,255,255)
170,338: (255,255,255)
186,334: (255,255,255)
212,341: (255,255,255)
227,333: (255,255,255)
236,330: (255,255,255)
256,331: (255,255,255)
267,336: (255,255,255)
283,333: (255,255,255)
310,342: (255,255,255)
320,332: (255,255,255)
341,333: (255,255,255)
350,340: (255,255,255)
367,340: (255,255,255)
384,340: (255,255,255)
406,337: (255,255,255)
421,339: (255,255,255)
435,332: (255,255,255)
452,334: (255,255,255)
460,341: (255,255,255)
474,335: (255,255,255)
496,338: (255,255,255)
0,352: (255,255,255)
11,351: (255,255,255)
32,354: (255,255,255)
48,351: (255,255,255)
66,352: (255,255,255)
83,352: (255,255,255)
94,349: (255,255,255)
112,356: (255,255,255)
122,358: (255,255,255)
145,351: (255,255,255)
156,358: (255,255,255)
180,351: (255,255,255)
186,346: (255,255,255)
208,347: (255,255,255)
223,346: (255,255,255)
239,356: (255,255,255)
254,357: (255,255,255)
276,358: (255,255,255)
284,358: (255,255,255)
304,350: (255,255,255)
322,350: (255,255,255)
338,346: (255,255,255)
355,357: (255,255,255)
370,357: (255,255,255)
384,353: (255,255,255)
403,346: (255,255,255)
410,355: (255,255,255)
426,358: (255,255,255)
448,347: (255,255,255)
461,352: (255,255,255)
477,357: (255,255,255)
498,356: (255,255,255)
0,368: (255,255,255)
22,374: (255,255,255)
36,362: (255,255,255)
49,374: (255,255,255)
63,373: (255,255,255)
82,373: (255,255,255)
100,373: (255,255,255)
113,366: (255,255,255)
127,367: (255,255,255)
142,362: (255,255,255)
156,372: (255,255,255)
180,367: (255,255,255)
192,365: (255,255,255)
214,366: (255,255,255)
229,365: (255,255,255)
236,371: (255,255,255)
258,374: (255,255,255)
272,372: (255,255,255)
292,364: (255,255,255)
299,368: (255,255,255)
320,370: (255,255,255)
342,371: (255,255,255)
352,363: (255,255,255)
374,365: (255,255,255)
384,362: (255,255,255)
398,373: (255,255,255)
410,366: (255,255,255)
434,371: (255,255,255)
447,370: (255,255,255)
460,372: (255,255,255)
480,365: (255,255,255)
492,370: (255,255,255)
3,375: (255,255,255)
21,380: (255,255,255)
32,378: (255,255,255)
42,380: (255,255,255)
59,380: (255,255,255)
81,380: (255,255,255)
95,380: (255,255,255)
116,380: (255,255,255)
123,374: (255,255,255)
149,380: (255,255,255)
161,380: (255,255,255)
172,380: (255,255,255)
194,380: (255,255,255)
214,380: (255,255,255)
224,374: (255,255,255)
246,374: (255,255,255)
260,380: (255,255,255)
267,380: (255,255,255)
284,380: (255,255,255)
301,374: (255,255,255)
322,380: (255,255,255)
334,380: (255,255,255)
352,378: (255,255,255)
374,375: (255,255,255)
385,380: (255,255,255)
400,380: (255,255,255)
421,374: (255,255,255)
430,380: (255,255,255)
453,380: (255,255,255)
460,380: (255,255,255)
480,380: (255,255,255)
495,375: (255,255,255)

Code: Select all

convert -background black stainedglass_C_4525.txt result.png
convert: no images defined `result.png' @ error/convert.c/ConvertImageCommand/3258.