FasTC/IO/src/ImageLoaderPNG.cpp

262 lines
7.6 KiB
C++
Raw Normal View History

2016-08-17 23:49:13 +00:00
// Copyright 2016 The University of North Carolina at Chapel Hill
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Please send all BUG REPORTS to <pavel@cs.unc.edu>.
// <http://gamma.cs.unc.edu/FasTC/>
2012-11-15 16:51:55 +00:00
#include "ImageLoaderPNG.h"
2013-10-15 00:56:55 +00:00
#include <algorithm>
#include <cassert>
2014-04-02 17:57:17 +00:00
#include <cstdio>
#include <cstring>
#include <png.h>
2012-08-27 15:50:19 +00:00
static void ReportError(const char *msg) {
fprintf(stderr, "ERROR: ImageLoaderPNG -- %s\n", msg);
}
class PNGStreamReader {
public:
static void ReadDataFromStream(png_structp png_ptr,
png_bytep outBytes, png_size_t byteCountToRead
) {
2012-08-27 15:50:19 +00:00
png_voidp io_ptr = png_get_io_ptr( png_ptr );
if( io_ptr == NULL ) {
ReportError("Read callback had invalid io pointer.\n");
return;
}
ImageLoaderPNG &loader = *(ImageLoaderPNG *)(io_ptr);
2012-08-27 15:50:19 +00:00
const unsigned char *stream = &(loader.m_RawData[loader.m_StreamPosition]);
memcpy(outBytes, stream, byteCountToRead);
loader.m_StreamPosition += byteCountToRead;
}
};
ImageLoaderPNG::ImageLoaderPNG(const unsigned char *rawData)
: ImageLoader(rawData)
2012-08-27 15:50:19 +00:00
, m_StreamPosition(8) // We start at position 8 because of PNG header.
{
}
bool ImageLoaderPNG::ReadData() {
const int kNumSigBytesToRead = 8;
uint8 pngSigBuf[kNumSigBytesToRead];
memcpy(pngSigBuf, m_RawData, kNumSigBytesToRead);
const int numSigNoMatch = png_sig_cmp(pngSigBuf, 0, kNumSigBytesToRead);
if(numSigNoMatch) {
ReportError("Incorrect PNG signature");
return false;
}
png_structp png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if(!png_ptr) {
ReportError("Could not create read struct");
return false;
}
png_infop info_ptr = png_create_info_struct(png_ptr);
if(!info_ptr) {
ReportError("Could not create info struct");
png_destroy_read_struct(&png_ptr, NULL, NULL);
return false;
}
// Read from our buffer, not a file pointer...
png_set_read_fn(png_ptr, this, PNGStreamReader::ReadDataFromStream);
// Make sure to tell libpng how many bytes we've read...
png_set_sig_bytes(png_ptr, kNumSigBytesToRead);
png_read_info(png_ptr, info_ptr);
int bitDepth = 0;
int colorType = -1;
if( 1 != png_get_IHDR(png_ptr, info_ptr,
(png_uint_32 *)(&m_Width), (png_uint_32 *)(&m_Height),
&bitDepth, &colorType,
NULL, NULL, NULL)
) {
ReportError("Could not read PNG header");
png_destroy_read_struct(&png_ptr, NULL, NULL);
return false;
}
if(bitDepth != 8) {
ReportError("Only 8-bit images currently supported.");
png_destroy_read_struct(&png_ptr, NULL, NULL);
return false;
}
const int numPixels = m_Width * m_Height;
2013-09-29 02:21:31 +00:00
png_size_t bpr = png_get_rowbytes(png_ptr, info_ptr);
png_bytep rowData = new png_byte[bpr];
switch(colorType) {
default:
ReportError("PNG color type unsupported");
png_destroy_read_struct(&png_ptr, NULL, NULL);
delete [] rowData;
return false;
2013-10-15 00:56:55 +00:00
case PNG_COLOR_TYPE_PALETTE:
{
m_RedChannelPrecision = bitDepth;
m_RedData = new unsigned char[numPixels];
m_GreenChannelPrecision = bitDepth;
m_GreenData = new unsigned char[numPixels];
m_BlueChannelPrecision = bitDepth;
m_BlueData = new unsigned char[numPixels];
png_colorp palette;
int nPaletteEntries;
png_uint_32 ret = png_get_PLTE(png_ptr, info_ptr, &palette, &nPaletteEntries);
if(ret != PNG_INFO_PLTE) {
memset(m_BlueData, 0, numPixels);
memset(m_RedData, 0, numPixels);
memset(m_GreenData, 0, numPixels);
assert(!"Couldn't find PLTE chunk");
break;
}
2013-10-15 00:56:55 +00:00
for(uint32 i = 0; i < m_Height; i++) {
png_read_row(png_ptr, rowData, NULL);
unsigned int rowOffset = i * m_Width;
for(uint32 j = 0; j < m_Width; j++) {
assert(rowData[j] < nPaletteEntries);
const png_color &c = palette[::std::min<unsigned char>(rowData[j], nPaletteEntries - 1)];
m_RedData[rowOffset + j] = c.red;
m_GreenData[rowOffset + j] = c.green;
m_BlueData[rowOffset + j] = c.blue;
}
}
}
break;
case PNG_COLOR_TYPE_GRAY: {
m_RedChannelPrecision = bitDepth;
m_RedData = new unsigned char[numPixels];
2013-10-15 00:56:55 +00:00
m_GreenChannelPrecision = bitDepth;
m_GreenData = new unsigned char[numPixels];
m_BlueChannelPrecision = bitDepth;
m_BlueData = new unsigned char[numPixels];
2012-11-07 22:10:26 +00:00
for(uint32 i = 0; i < m_Height; i++) {
png_read_row(png_ptr, rowData, NULL);
unsigned int rowOffset = i * m_Width;
unsigned int byteIdx = 0;
for(uint32 j = 0; j < m_Width; j++) {
2013-10-15 00:56:55 +00:00
m_RedData[rowOffset + j] = rowData[byteIdx];
m_GreenData[rowOffset + j] = rowData[byteIdx];
m_BlueData[rowOffset + j] = rowData[byteIdx];
byteIdx++;
}
assert(byteIdx == bpr);
}
}
break;
case PNG_COLOR_TYPE_RGB:
m_RedChannelPrecision = bitDepth;
m_RedData = new unsigned char[numPixels];
m_GreenChannelPrecision = bitDepth;
m_GreenData = new unsigned char[numPixels];
m_BlueChannelPrecision = bitDepth;
m_BlueData = new unsigned char[numPixels];
2012-11-07 22:10:26 +00:00
for(uint32 i = 0; i < m_Height; i++) {
png_read_row(png_ptr, rowData, NULL);
unsigned int rowOffset = i * m_Width;
unsigned int byteIdx = 0;
for(uint32 j = 0; j < m_Width; j++) {
m_RedData[rowOffset + j] = rowData[byteIdx++];
m_GreenData[rowOffset + j] = rowData[byteIdx++];
m_BlueData[rowOffset + j] = rowData[byteIdx++];
}
assert(byteIdx == bpr);
}
break;
case PNG_COLOR_TYPE_RGB_ALPHA:
m_RedChannelPrecision = bitDepth;
m_RedData = new unsigned char[numPixels];
m_GreenChannelPrecision = bitDepth;
m_GreenData = new unsigned char[numPixels];
m_BlueChannelPrecision = bitDepth;
m_BlueData = new unsigned char[numPixels];
m_AlphaChannelPrecision = bitDepth;
m_AlphaData = new unsigned char[numPixels];
2012-11-07 22:10:26 +00:00
for(uint32 i = 0; i < m_Height; i++) {
png_read_row(png_ptr, rowData, NULL);
unsigned int rowOffset = i * m_Width;
unsigned int byteIdx = 0;
for(uint32 j = 0; j < m_Width; j++) {
m_RedData[rowOffset + j] = rowData[byteIdx++];
m_GreenData[rowOffset + j] = rowData[byteIdx++];
m_BlueData[rowOffset + j] = rowData[byteIdx++];
m_AlphaData[rowOffset + j] = rowData[byteIdx++];
}
assert(byteIdx == bpr);
}
break;
case PNG_COLOR_TYPE_GRAY_ALPHA:
m_RedChannelPrecision = bitDepth;
m_RedData = new unsigned char[numPixels];
m_AlphaChannelPrecision = bitDepth;
m_AlphaData = new unsigned char[numPixels];
2012-11-07 22:10:26 +00:00
for(uint32 i = 0; i < m_Height; i++) {
png_read_row(png_ptr, rowData, NULL);
unsigned int rowOffset = i * m_Width;
unsigned int byteIdx = 0;
for(uint32 j = 0; j < m_Width; j++) {
m_RedData[rowOffset + j] = rowData[byteIdx++];
m_AlphaData[rowOffset + j] = rowData[byteIdx++];
}
assert(byteIdx == bpr);
}
break;
}
// Cleanup
delete [] rowData;
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
return true;
}