2
0
mirror of https://github.com/boostorg/gil.git synced 2026-02-19 14:32:10 +00:00
Files
gil/example/resize.cpp
Lubomir Bourdev 9311679cb0 Initial version of boost/libs/gil
[SVN r37496]
2007-04-24 01:58:42 +00:00

26 lines
756 B
C++

/// \file
/// \brief Test file for resize_view() in the numeric extension
/// \author Lubomir Bourdev and Hailin Jin
/// \date February 27, 2007
#include <boost/gil/image.hpp>
#include <boost/gil/typedefs.hpp>
#include <boost/gil/extension/io/jpeg_io.hpp>
#include <boost/gil/extension/numeric/sampler.hpp>
#include <boost/gil/extension/numeric/resample.hpp>
int main() {
using namespace boost::gil;
rgb8_image_t img;
jpeg_read_image("test.jpg",img);
// test resize_view
// Scale the image to 100x100 pixels using bilinear resampling
rgb8_image_t square100x100(100,100);
resize_view(const_view(img), view(square100x100), bilinear_sampler());
jpeg_write_view("out-resize.jpg",const_view(square100x100));
return 0;
}