OLD | NEW |
1 library CanvasTest; | 1 library CanvasTest; |
2 import '../../pkg/unittest/lib/unittest.dart'; | 2 import '../../pkg/unittest/lib/unittest.dart'; |
3 import '../../pkg/unittest/lib/html_config.dart'; | 3 import '../../pkg/unittest/lib/html_config.dart'; |
4 import 'dart:html'; | 4 import 'dart:html'; |
5 | 5 |
6 main() { | 6 main() { |
7 CanvasElement canvas; | 7 CanvasElement canvas; |
8 CanvasRenderingContext2D context; | 8 CanvasRenderingContext2D context; |
9 int width = 100; | 9 int width = 100; |
10 int height = 100; | 10 int height = 100; |
11 | 11 |
12 canvas = new CanvasElement(width:width, height:height); | 12 canvas = new CanvasElement(width:width, height:height); |
13 document.body.nodes.add(canvas); | 13 document.body.nodes.add(canvas); |
14 | 14 |
15 context = canvas.context2d; | 15 context = canvas.context2d; |
16 | 16 |
17 useHtmlConfiguration(); | 17 useHtmlConfiguration(); |
18 test('CreateImageData', () { | 18 test('CreateImageData', () { |
19 ImageData image = context.createImageData(canvas.width, | 19 ImageData image = context.createImageData(canvas.width, |
20 canvas.height); | 20 canvas.height); |
21 Uint8ClampedArray data = image.data; | 21 List<int> data = image.data; |
22 | 22 |
23 expect(data, hasLength(40000)); | 23 expect(data, hasLength(40000)); |
24 checkPixel(data, 0, [0, 0, 0, 0]); | 24 checkPixel(data, 0, [0, 0, 0, 0]); |
25 checkPixel(data, width * height - 1, [0, 0, 0, 0]); | 25 checkPixel(data, width * height - 1, [0, 0, 0, 0]); |
26 | 26 |
27 data[100] = 200; | 27 data[100] = 200; |
28 expect(data[100], equals(200)); | 28 expect(data[100], equals(200)); |
29 }); | 29 }); |
30 | 30 |
31 test('toDataUrl', () { | 31 test('toDataUrl', () { |
(...skipping 10 matching lines...) Expand all Loading... |
42 })); | 42 })); |
43 img.on.error.add((_) { | 43 img.on.error.add((_) { |
44 guardAsync(() { | 44 guardAsync(() { |
45 expect(true, isFalse, reason: 'URL failed to load.'); | 45 expect(true, isFalse, reason: 'URL failed to load.'); |
46 }); | 46 }); |
47 }); | 47 }); |
48 img.src = url; | 48 img.src = url; |
49 }); | 49 }); |
50 } | 50 } |
51 | 51 |
52 void checkPixel(Uint8ClampedArray data, int offset, List<int> rgba) | 52 void checkPixel(List<int> data, int offset, List<int> rgba) |
53 { | 53 { |
54 offset *= 4; | 54 offset *= 4; |
55 for (var i = 0; i < 4; ++i) { | 55 for (var i = 0; i < 4; ++i) { |
56 expect(data[offset + i], equals(rgba[i])); | 56 expect(data[offset + i], equals(rgba[i])); |
57 } | 57 } |
58 } | 58 } |
OLD | NEW |