1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
/* sane - Scanner Access Now Easy.
Copyright (C) 2019 Povilas Kanapickas <povilas@radix.lt>
This file is part of the SANE package.
This program 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 2 of the
License, or (at your option) any later version.
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
*/
#define DEBUG_DECLARE_ONLY
#include "image.h"
#if defined(HAVE_TIFFIO_H)
#include <tiffio.h>
#endif
#include <array>
namespace genesys {
Image::Image() = default;
Image::Image(std::size_t width, std::size_t height, PixelFormat format) :
width_{width},
height_{height},
format_{format},
row_bytes_{get_pixel_row_bytes(format_, width_)}
{
data_.resize(get_row_bytes() * height);
}
std::uint8_t* Image::get_row_ptr(std::size_t y)
{
return data_.data() + row_bytes_ * y;
}
const std::uint8_t* Image::get_row_ptr(std::size_t y) const
{
return data_.data() + row_bytes_ * y;
}
Pixel Image::get_pixel(std::size_t x, std::size_t y) const
{
return get_pixel_from_row(get_row_ptr(y), x, format_);
}
void Image::set_pixel(std::size_t x, std::size_t y, const Pixel& pixel)
{
set_pixel_to_row(get_row_ptr(y), x, pixel, format_);
}
RawPixel Image::get_raw_pixel(std::size_t x, std::size_t y) const
{
return get_raw_pixel_from_row(get_row_ptr(y), x, format_);
}
std::uint16_t Image::get_raw_channel(std::size_t x, std::size_t y, unsigned channel) const
{
return get_raw_channel_from_row(get_row_ptr(y), x, channel, format_);
}
void Image::set_raw_pixel(std::size_t x, std::size_t y, const RawPixel& pixel)
{
set_raw_pixel_to_row(get_row_ptr(y), x, pixel, format_);
}
void Image::resize(std::size_t width, std::size_t height, PixelFormat format)
{
width_ = width;
height_ = height;
format_ = format;
row_bytes_ = get_pixel_row_bytes(format_, width_);
data_.resize(get_row_bytes() * height);
}
template<PixelFormat SrcFormat, PixelFormat DstFormat>
void convert_pixel_row_impl2(const std::uint8_t* in_data, std::uint8_t* out_data,
std::size_t count)
{
for (std::size_t i = 0; i < count; ++i) {
Pixel pixel = get_pixel_from_row(in_data, i, SrcFormat);
set_pixel_to_row(out_data, i, pixel, DstFormat);
}
}
template<PixelFormat SrcFormat>
void convert_pixel_row_impl(const std::uint8_t* in_data, std::uint8_t* out_data,
PixelFormat out_format, std::size_t count)
{
switch (out_format) {
case PixelFormat::I1: {
convert_pixel_row_impl2<SrcFormat, PixelFormat::I1>(in_data, out_data, count);
return;
}
case PixelFormat::RGB111: {
convert_pixel_row_impl2<SrcFormat, PixelFormat::RGB111>(in_data, out_data, count);
return;
}
case PixelFormat::I8: {
convert_pixel_row_impl2<SrcFormat, PixelFormat::I8>(in_data, out_data, count);
return;
}
case PixelFormat::RGB888: {
convert_pixel_row_impl2<SrcFormat, PixelFormat::RGB888>(in_data, out_data, count);
return;
}
case PixelFormat::BGR888: {
convert_pixel_row_impl2<SrcFormat, PixelFormat::BGR888>(in_data, out_data, count);
return;
}
case PixelFormat::I16: {
convert_pixel_row_impl2<SrcFormat, PixelFormat::I16>(in_data, out_data, count);
return;
}
case PixelFormat::RGB161616: {
convert_pixel_row_impl2<SrcFormat, PixelFormat::RGB161616>(in_data, out_data, count);
return;
}
case PixelFormat::BGR161616: {
convert_pixel_row_impl2<SrcFormat, PixelFormat::BGR161616>(in_data, out_data, count);
return;
}
default:
throw SaneException("Unknown pixel format %d", static_cast<unsigned>(out_format));
}
}
void convert_pixel_row_format(const std::uint8_t* in_data, PixelFormat in_format,
std::uint8_t* out_data, PixelFormat out_format, std::size_t count)
{
if (in_format == out_format) {
std::memcpy(out_data, in_data, get_pixel_row_bytes(in_format, count));
return;
}
switch (in_format) {
case PixelFormat::I1: {
convert_pixel_row_impl<PixelFormat::I1>(in_data, out_data, out_format, count);
return;
}
case PixelFormat::RGB111: {
convert_pixel_row_impl<PixelFormat::RGB111>(in_data, out_data, out_format, count);
return;
}
case PixelFormat::I8: {
convert_pixel_row_impl<PixelFormat::I8>(in_data, out_data, out_format, count);
return;
}
case PixelFormat::RGB888: {
convert_pixel_row_impl<PixelFormat::RGB888>(in_data, out_data, out_format, count);
return;
}
case PixelFormat::BGR888: {
convert_pixel_row_impl<PixelFormat::BGR888>(in_data, out_data, out_format, count);
return;
}
case PixelFormat::I16: {
convert_pixel_row_impl<PixelFormat::I16>(in_data, out_data, out_format, count);
return;
}
case PixelFormat::RGB161616: {
convert_pixel_row_impl<PixelFormat::RGB161616>(in_data, out_data, out_format, count);
return;
}
case PixelFormat::BGR161616: {
convert_pixel_row_impl<PixelFormat::BGR161616>(in_data, out_data, out_format, count);
return;
}
default:
throw SaneException("Unknown pixel format %d", static_cast<unsigned>(in_format));
}
}
void write_tiff_file(const std::string& filename, const void* data, int depth, int channels,
int pixels_per_line, int lines)
{
DBG_HELPER_ARGS(dbg, "depth=%d, channels=%d, ppl=%d, lines=%d", depth, channels,
pixels_per_line, lines);
#if defined(HAVE_TIFFIO_H)
auto image = TIFFOpen(filename.c_str(), "w");
if (!image) {
dbg.log(DBG_error, "Could not save debug image");
return;
}
TIFFSetField(image, TIFFTAG_IMAGEWIDTH, pixels_per_line);
TIFFSetField(image, TIFFTAG_IMAGELENGTH, lines);
TIFFSetField(image, TIFFTAG_BITSPERSAMPLE, depth);
TIFFSetField(image, TIFFTAG_SAMPLESPERPIXEL, channels);
if (channels > 1) {
TIFFSetField(image, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_RGB);
} else {
TIFFSetField(image, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISBLACK);
}
TIFFSetField(image, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG);
TIFFSetField(image, TIFFTAG_ORIENTATION, ORIENTATION_TOPLEFT);
std::size_t bytes_per_line = (pixels_per_line * channels * depth + 7) / 8;
const std::uint8_t* data_ptr = reinterpret_cast<const std::uint8_t*>(data);
// we don't need to handle endian because libtiff will handle that
for (int iline = 0; iline < lines; ++iline) {
const auto* line_data = data_ptr + bytes_per_line * iline;
TIFFWriteScanline(image, const_cast<std::uint8_t*>(line_data), iline, 0);
}
TIFFClose(image);
#else
dbg.log(DBG_error, "Backend has been built without TIFF library support. "
"Debug images will not be saved");
#endif
}
bool is_supported_write_tiff_file_image_format(PixelFormat format)
{
switch (format) {
case PixelFormat::I1:
case PixelFormat::RGB111:
case PixelFormat::I8:
case PixelFormat::RGB888:
case PixelFormat::I16:
case PixelFormat::RGB161616:
return true;
default:
return false;
}
}
void write_tiff_file(const std::string& filename, const Image& image)
{
if (!is_supported_write_tiff_file_image_format(image.get_format())) {
throw SaneException("Unsupported format %d", static_cast<unsigned>(image.get_format()));
}
write_tiff_file(filename, image.get_row_ptr(0), get_pixel_format_depth(image.get_format()),
get_pixel_channels(image.get_format()), image.get_width(), image.get_height());
}
} // namespace genesys
|