image minifyBy2 test

This commit is contained in:
Ryan Oldenburg 2021-02-07 20:39:46 -06:00
parent 8a933e051e
commit 9782855a8d
2 changed files with 6 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

View file

@ -79,3 +79,9 @@ block:
a = readImage("tests/images/flipped1.png")
b = a.superImage(45, 45, 20, 20)
b.writeFile("tests/images/superimage6.png")
block:
let
a = readImage("tests/images/flipped1.png")
b = a.minifyBy2()
b.writeFile("tests/images/minifiedBy2.png")