Home
last modified time | relevance | path

Searched refs:png_filename (Results 1 – 9 of 9) sorted by relevance

/third_party/boost/libs/gil/test/extension/io/
Dpng_test.cpp39 backend_t backend = read_image_info( png_filename in BOOST_AUTO_TEST_CASE()
48 ifstream in( png_filename.c_str(), ios::binary ); in BOOST_AUTO_TEST_CASE()
61 FILE* file = fopen( png_filename.c_str(), "rb" ); in BOOST_AUTO_TEST_CASE()
78 read_image( png_filename, img, tag_t() ); in BOOST_AUTO_TEST_CASE()
85 ifstream in( png_filename.c_str(), ios::binary ); in BOOST_AUTO_TEST_CASE()
95 FILE* file = fopen( png_filename.c_str(), "rb" ); in BOOST_AUTO_TEST_CASE()
109 read_and_convert_image( png_filename, img, tag_t() ); in BOOST_AUTO_TEST_CASE()
117 read_and_convert_image( png_filename, img, tag_t() ); in BOOST_AUTO_TEST_CASE()
124 ifstream in( png_filename.c_str(), ios::binary ); in BOOST_AUTO_TEST_CASE()
134 FILE* file = fopen( png_filename.c_str(), "rb" ); in BOOST_AUTO_TEST_CASE()
[all …]
Dpng_old_test.cpp28 boost::gil::point_t dim = png_read_dimensions(png_filename); in BOOST_AUTO_TEST_CASE()
36 png_read_image( png_filename, img ); in BOOST_AUTO_TEST_CASE()
45 png_read_and_convert_image( png_filename, img ); in BOOST_AUTO_TEST_CASE()
54 png_read_view( png_filename, view( img ) ); in BOOST_AUTO_TEST_CASE()
60 png_read_and_convert_view( png_filename, view( img ) ); in BOOST_AUTO_TEST_CASE()
87 png_read_image( png_filename.c_str() in BOOST_AUTO_TEST_CASE()
Dall_formats_test.cpp52 read_image( png_filename, img, png_tag() ); in BOOST_AUTO_TEST_CASE()
Dpaths.hpp63 static const std::string png_filename(png_base_in + "test.png"); variable
Dsimple_all_formats.cpp45 gil::read_image(png_filename, img, gil::png_tag()); in test_png()
Dpng_read_test.cpp94 backend_t backend = read_image_info( png_filename in BOOST_AUTO_TEST_CASE()
/third_party/boost/libs/gil/test/extension/io/png/
Dpng_test.cpp32 backend_t backend = gil::read_image_info(png_filename, gil::png_tag()); in test_read_image_info_using_string()
38 std::ifstream in(png_filename.c_str(), std::ios::binary); in test_read_image_info_using_string()
47 FILE* file = fopen(png_filename.c_str(), "rb"); in test_read_image_info_using_string()
61 gil::read_image(png_filename, img, gil::png_tag()); in test_read_image()
67 std::ifstream in(png_filename.c_str(), std::ios::binary); in test_read_image()
76 FILE* file = fopen(png_filename.c_str(), "rb"); in test_read_image()
90 gil::read_and_convert_image(png_filename, img, gil::png_tag()); in test_read_and_convert_image()
97 gil::read_and_convert_image(png_filename, img, gil::png_tag()); in test_read_and_convert_image()
103 std::ifstream in(png_filename.c_str(), std::ios::binary); in test_read_and_convert_image()
112 FILE* file = fopen(png_filename.c_str(), "rb"); in test_read_and_convert_image()
[all …]
Dpng_old_test.cpp24 gil::point_t dim = gil::png_read_dimensions(png_filename); in test_old_read_dimensions()
32 gil::png_read_image(png_filename, img); in test_old_read_image()
41 gil::png_read_and_convert_image(png_filename, img); in test_old_read_and_convert_image()
50 gil::png_read_view(png_filename, view(img)); in test_old_read_view()
56 gil::png_read_and_convert_view(png_filename, view(img)); in test_old_read_and_convert_view()
79 gil::png_read_image(png_filename.c_str(), image); in test_old_dynamic_image()
Dpng_read_test.cpp71 backend_t backend = gil::read_image_info(png_filename, gil::png_tag()); in test_read_header()