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
|
#include "image.hh"
#include <boost/filesystem/fstream.hpp>
#include <boost/filesystem/path.hpp>
#include <jpeglib.h>
#include <png.h>
#include <iostream>
#include <string>
using fs::ofstream;
using fs::ifstream;
namespace {
void writePngHelper(png_structp pngPtr, png_bytep data, png_size_t length) {
static_cast<std::ostream*>(png_get_io_ptr(pngPtr))->write((char*)data, length);
}
void readPngHelper(png_structp pngPtr, png_bytep data, png_size_t length) {
static_cast<std::istream*>(png_get_io_ptr(pngPtr))->read((char*)data, length);
}
void loadPNG_internal(png_structp pngPtr, png_infop infoPtr, ifstream& file, Bitmap& bitmap, std::vector<png_bytep>& rows) {
if (setjmp(png_jmpbuf(pngPtr))) throw std::runtime_error("Reading PNG failed");
png_set_read_fn(pngPtr,(png_voidp)&file, readPngHelper);
png_read_info(pngPtr, infoPtr);
png_set_expand(pngPtr); // Expand everything to RGB(A)
png_set_strip_16(pngPtr); // Strip everything down to 8 bit/component
png_set_gray_to_rgb(pngPtr); // Convert even grayscale to RGB(A)
png_set_filler(pngPtr, 0xFF, PNG_FILLER_AFTER); // Add alpha channel if it is missing
bitmap.resize(png_get_image_width(pngPtr, infoPtr), png_get_image_height(pngPtr, infoPtr));
rows.resize(bitmap.height);
for (unsigned y = 0; y < bitmap.height; ++y) rows[y] = reinterpret_cast<png_bytep>(&bitmap.buf[y * bitmap.width * 4]);
png_read_image(pngPtr, &rows[0]);
}
static void writePNG_internal(png_structp pngPtr, png_infop infoPtr, ofstream& file, unsigned w, unsigned h, int colorType, std::vector<png_bytep>& rows) {
// There must be no objects initialized within this function because longjmp will mess them up
if (setjmp(png_jmpbuf(pngPtr))) throw std::runtime_error("Writing PNG failed");
png_set_write_fn(pngPtr, &file, writePngHelper, NULL);
png_set_IHDR(pngPtr, infoPtr, w, h, 8, colorType, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
png_write_info(pngPtr, infoPtr);
png_write_image(pngPtr, &rows[0]);
png_write_end(pngPtr, NULL);
}
struct my_jpeg_error_mgr {
struct jpeg_error_mgr pub; /* "public" fields */
jmp_buf setjmp_buffer; /* for return to caller */
};
typedef struct my_jpeg_error_mgr * my_jpeg_error_mgr_ptr;
static inline void my_jpeg_error_exit(j_common_ptr cinfo) {
my_jpeg_error_mgr_ptr myerr = (my_jpeg_error_mgr_ptr) cinfo->err;
(*cinfo->err->output_message) (cinfo);
longjmp(myerr->setjmp_buffer, 1);
}
#if JPEG_LIB_VERSION < 80 && !defined(MEM_SRCDST_SUPPORTED)
// Implementation of jpeg_mem_src from
// http://stackoverflow.com/questions/5280756/libjpeg-ver-6b-jpeg-stdio-src-vs-jpeg-mem-src
/* Read JPEG image from a memory segment */
static void init_source(j_decompress_ptr /*cinfo*/) {}
static boolean fill_input_buffer(j_decompress_ptr /*cinfo*/) {
//ERREXIT(cinfo, JERR_INPUT_EMPTY);
return true;
}
static void skip_input_data(j_decompress_ptr cinfo, long num_bytes) {
auto src = static_cast<jpeg_source_mgr*>(cinfo->src);
if (num_bytes > 0) {
src->next_input_byte += num_bytes;
src->bytes_in_buffer -= num_bytes;
}
}
static void term_source(j_decompress_ptr /*cinfo*/) {}
static void jpeg_mem_src(j_decompress_ptr cinfo, void* buffer, long nbytes) {
if (!cinfo->src) { /* first time for this JPEG object? */
cinfo->src = static_cast<jpeg_source_mgr*>(
(*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, sizeof(jpeg_source_mgr))
);
}
auto src = static_cast<jpeg_source_mgr*>(cinfo->src);
src->init_source = init_source;
src->fill_input_buffer = fill_input_buffer;
src->skip_input_data = skip_input_data;
src->resync_to_restart = jpeg_resync_to_restart; /* use default method */
src->term_source = term_source;
src->bytes_in_buffer = nbytes;
src->next_input_byte = static_cast<JOCTET*>(buffer);
}
#endif
typedef std::vector<std::uint8_t> BinaryBuffer;
BinaryBuffer readFile(fs::path const& path) {
BinaryBuffer ret;
fs::ifstream f(path, std::ios::binary);
f.seekg(0, std::ios::end);
ret.resize(f.tellg());
f.seekg(0);
f.read(reinterpret_cast<char*>(ret.data()), ret.size());
if (!f) throw std::runtime_error("File cannot be read: " + path.string());
return ret;
}
}
void writePNG(fs::path const& filename, Bitmap const& img, unsigned stride) {
fs::path name = filename;
// We use PNG in a non-standard way, with premultiplied alpha, signified by .premul.png extension.
std::clog << "image/debug: Saving PNG: " + name.string() << std::endl;
std::vector<png_bytep> rows(img.height);
// Determine color type and bytes per pixel
unsigned char bpp;
int colorType;
switch (img.fmt) {
case pix::RGB: bpp = 3; colorType = PNG_COLOR_TYPE_RGB; break;
case pix::CHAR_RGBA: bpp = 4; colorType = PNG_COLOR_TYPE_RGBA; break;
default:
// Byte order would need to be changed for other formats and we don't currently need them...
throw std::logic_error("Unsupported pixel format in writePNG_internal");
}
// Construct row pointers
bool reverse = img.bottomFirst;
if (stride == 0) stride = img.width * bpp;
unsigned pos = reverse ? img.height * stride : -stride;
for (unsigned y = 0; y < img.height; ++y) {
pos += (reverse ? -stride : stride);
rows[y] = (png_bytep)(&img.data()[pos]);
}
// Initialize libpng structures
png_structp pngPtr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (!pngPtr) throw std::runtime_error("png_create_read_struct failed");
png_infop infoPtr = NULL;
struct Cleanup {
png_structpp pngPP;
png_infopp infoPP;
Cleanup(png_structp& pngP, png_infop& infoP): pngPP(&pngP), infoPP(&infoP) {}
~Cleanup() { png_destroy_write_struct(pngPP, infoPP); }
} cleanup(pngPtr, infoPtr);
infoPtr = png_create_info_struct(pngPtr);
if (!infoPtr) throw std::runtime_error("png_create_info_struct failed");
png_set_gAMA(pngPtr, infoPtr, img.linearPremul ? 1.0 : 2.2);
// Write file
ofstream file(name, std::ios::binary);
writePNG_internal(pngPtr, infoPtr, file, img.width, img.height, colorType, rows);
}
void loadPNG(Bitmap& bitmap, fs::path const& filename) {
std::clog << "image/debug: Loading PNG: " + filename.string() << std::endl;
// A hack to assume linear premultiplied data if file extension is .premul.png (used for cached SVGs)
if (filename.stem().extension() == "premul") bitmap.linearPremul = true;
ifstream file(filename, std::ios::binary);
png_structp pngPtr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (!pngPtr) throw std::runtime_error("png_create_read_struct failed");
png_infop infoPtr = NULL;
struct Cleanup {
png_structpp pngPP;
png_infopp infoPP;
Cleanup(png_structp& pngP, png_infop& infoP): pngPP(&pngP), infoPP(&infoP) {}
~Cleanup() { png_destroy_read_struct(pngPP, infoPP, (png_infopp)NULL); }
} cleanup(pngPtr, infoPtr);
infoPtr = png_create_info_struct(pngPtr);
if (!infoPtr) throw std::runtime_error("png_create_info_struct failed");
std::vector<png_bytep> rows;
loadPNG_internal(pngPtr, infoPtr, file, bitmap, rows);
}
void loadJPEG(Bitmap& bitmap, fs::path const& filename) {
std::clog << "image/debug: Loading JPEG: " + filename.string() << std::endl;
bitmap.fmt = pix::RGB;
struct my_jpeg_error_mgr jerr;
BinaryBuffer data = readFile(filename);
jpeg_decompress_struct cinfo;
cinfo.err = jpeg_std_error(&jerr.pub);
jerr.pub.error_exit = my_jpeg_error_exit;
if (setjmp(jerr.setjmp_buffer)) {
jpeg_destroy_decompress(&cinfo);
throw std::runtime_error("Error in libjpeg when decoding " + filename.string());
}
jpeg_create_decompress(&cinfo);
jpeg_mem_src(&cinfo, data.data(), data.size());
if (jpeg_read_header(&cinfo, true) != JPEG_HEADER_OK) throw std::runtime_error("Cannot read header of " + filename.string());
jpeg_start_decompress(&cinfo);
bitmap.resize(cinfo.output_width, cinfo.output_height);
unsigned stride = (bitmap.width * 3 + 3) & ~3; // Number of bytes per row (word-aligned)
unsigned char* ptr = &bitmap.buf[0];
while (cinfo.output_scanline < bitmap.height) {
jpeg_read_scanlines(&cinfo, &ptr, 1);
ptr += stride;
}
jpeg_destroy_decompress(&cinfo);
}
void Bitmap::crop(const unsigned width, const unsigned height, const unsigned x, const unsigned y) {
if (ptr) throw std::logic_error("Cannot Bitmap::crop foreign pointers.");
if (x + width > this->width || y+ height > this->height)
throw std::logic_error("Cannot crop to a size bigger then source image.");
unsigned char bpp;
switch (fmt) {
case pix::INT_ARGB: bpp = 4; break; // Correct?
case pix::BGR: bpp = 3; break;
case pix::RGB: bpp = 3; break;
case pix::CHAR_RGBA: bpp = 4; break;
default: throw std::logic_error("Unsupported picture format.");
}
unsigned newpos = 0;
for (unsigned row = y; row < y + height; row++) {
for (unsigned col = x; col < x + width; col++) {
for (char subp = 0; subp < bpp; subp++) {
unsigned oldpos = (row * this->width + col) * bpp + subp;
if (oldpos != newpos) {
buf[newpos] = buf[oldpos];
}
newpos++;
}
}
}
this->width = width;
this->height = height;
}
|