diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-12-30 01:48:29 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-12-30 01:48:29 +0000 |
| commit | 3437306d5eb27f7fab350b48be4875335195a254 (patch) | |
| tree | b9629e26620dd4f3d841670740deef0a61b05945 /test/image_test.cc | |
| parent | e565ceeea3d842373d97ee21d99775ac1dd1269e (diff) | |
Add new test.
Diffstat (limited to 'test/image_test.cc')
| -rw-r--r-- | test/image_test.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/image_test.cc b/test/image_test.cc index 59000918a..7428d5183 100644 --- a/test/image_test.cc +++ b/test/image_test.cc @@ -255,3 +255,14 @@ BOOST_AUTO_TEST_CASE (merge_test2) BOOST_CHECK_EQUAL (m[(x + 32) * 4 + 3], 255); } } + +/** Test Image::crop_scale_window with YUV420P and some windowing */ +BOOST_AUTO_TEST_CASE (crop_scale_window_test) +{ + shared_ptr<MagickImageProxy> proxy(new MagickImageProxy("test/data/flat_red.png")); + shared_ptr<Image> raw = proxy->image(); + shared_ptr<Image> out = raw->crop_scale_window(Crop(), dcp::Size(1998, 836), dcp::Size(1998, 1080), dcp::YUV_TO_RGB_REC709, AV_PIX_FMT_YUV420P, true, false); + shared_ptr<Image> save = out->scale(dcp::Size(1998, 1080), dcp::YUV_TO_RGB_REC709, AV_PIX_FMT_RGB24, false, false); + write_image(save, "build/test/crop_scale_window_test.png", "RGB"); + check_image("test/data/crop_scale_window_test.png", "build/test/crop_scale_window_test.png"); +} |
