/*
* This file is part of libgim.
*
* libgim is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* libgim is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with libgim. If not, see .
*
* Copyright 2011-2015 Danny Robson
*/
#ifndef __UTIL_IMAGE_HPP
#define __UTIL_IMAGE_HPP
#include
#include
#include
#include
namespace util {
namespace image {
template
struct buffer {
buffer (size_t w, size_t h);
buffer (size_t w, size_t h, size_t s);
buffer (size_t w, size_t h, size_t s, std::unique_ptr &&data);
buffer (const buffer&) = delete;
buffer (buffer &&) = default;
void fill (T);
template
buffer alloc (void) const;
template
buffer clone (void) const;
buffer downsample (unsigned factor);
size_t w;
size_t h;
size_t s;
std::unique_ptr data;
};
}
struct pgm {
static void write (const uint8_t *restrict pixels,
size_t width,
size_t height,
size_t stride,
const boost::filesystem::path &path);
};
struct ppm {
static void write (const uint8_t *restrict pixels,
size_t width,
size_t height,
size_t stride,
const boost::filesystem::path &path);
};
}
#endif