blob: 0f79bf95325baad4430a4f9160795957e6fcea21 [file] [log] [blame]
//========================================================================
//
// PNGWriter.h
//
// This file is licensed under the GPLv2 or later
//
// Copyright (C) 2009 Warren Toomey <wkt@tuhs.org>
// Copyright (C) 2009 Shen Liang <shenzhuxi@gmail.com>
// Copyright (C) 2009, 2011 Albert Astals Cid <aacid@kde.org>
// Copyright (C) 2009 Stefan Thomas <thomas@eload24.com>
// Copyright (C) 2010 Adrian Johnson <ajohnson@redneon.com>
//
//========================================================================
#ifndef PNGWRITER_H
#define PNGWRITER_H
#include "poppler/poppler-config.h"
#ifdef ENABLE_LIBPNG
#include <cstdio>
#include <png.h>
#include "ImgWriter.h"
class PNGWriter : public ImgWriter
{
public:
PNGWriter();
~PNGWriter();
bool init(FILE *f, int width, int height, int hDPI, int vDPI);
bool writePointers(unsigned char **rowPointers, int rowCount);
bool writeRow(unsigned char **row);
bool close();
private:
png_structp png_ptr;
png_infop info_ptr;
};
#endif
#endif