factor/basis/images/bitmap/bitmap-tests.factor

25 lines
601 B
Factor
Raw Normal View History

USING: images.bitmap images.viewer io.encodings.binary
2009-03-02 20:38:28 -05:00
io.files io.files.unique kernel tools.test images.loader ;
IN: images.bitmap.tests
: test-bitmap24 ( -- path )
2009-02-15 20:53:21 -05:00
"vocab:images/test-images/thiswayup24.bmp" ;
: test-bitmap8 ( -- path )
2009-02-15 20:53:21 -05:00
"vocab:images/test-images/rgb8bit.bmp" ;
: test-bitmap4 ( -- path )
2009-02-15 20:53:21 -05:00
"vocab:images/test-images/rgb4bit.bmp" ;
: test-bitmap1 ( -- path )
2009-02-15 20:53:21 -05:00
"vocab:images/test-images/1bit.bmp" ;
[ t ]
[
test-bitmap24
2009-03-02 20:38:28 -05:00
[ binary file-contents ] [ load-image ] bi
"test-bitmap24" unique-file
[ save-bitmap ] [ binary file-contents ] bi =
] unit-test