mirror of
https://github.com/riuson/lcd-image-converter.git
synced 2026-03-03 14:54:11 +01:00
11 lines
164 B
JavaScript
11 lines
164 B
JavaScript
/*
|
|
* bottom to top
|
|
* forward
|
|
*/
|
|
|
|
for (var y = image.height - 1; y >= 0; y--) {
|
|
for (var x = 0; x < image.width; x++) {
|
|
image.addPoint(x, y);
|
|
}
|
|
}
|