summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-0.31.0/goo/PNGWriter.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2015-03-08 10:37:01 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2015-03-08 10:37:01 +0000
commitbb5c8957bd708c29d5c9d2e356326f19a4faf78f (patch)
tree46e216a4befb58eb1905220a4c78f2f97951374f /Build/source/libs/poppler/poppler-0.31.0/goo/PNGWriter.h
parent01d6e342250679c8c09bbd2a6f32db6036480fa4 (diff)
poppler 0.32.0
git-svn-id: svn://tug.org/texlive/trunk@36458 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/poppler/poppler-0.31.0/goo/PNGWriter.h')
-rw-r--r--Build/source/libs/poppler/poppler-0.31.0/goo/PNGWriter.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/Build/source/libs/poppler/poppler-0.31.0/goo/PNGWriter.h b/Build/source/libs/poppler/poppler-0.31.0/goo/PNGWriter.h
deleted file mode 100644
index 90a298e7ef3..00000000000
--- a/Build/source/libs/poppler/poppler-0.31.0/goo/PNGWriter.h
+++ /dev/null
@@ -1,61 +0,0 @@
-//========================================================================
-//
-// 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-2013 Albert Astals Cid <aacid@kde.org>
-// Copyright (C) 2009 Stefan Thomas <thomas@eload24.com>
-// Copyright (C) 2010, 2011, 2013 Adrian Johnson <ajohnson@redneon.com>
-// Copyright (C) 2012 Pino Toscano <pino@kde.org>
-//
-//========================================================================
-
-#ifndef PNGWRITER_H
-#define PNGWRITER_H
-
-#include "poppler-config.h"
-
-#ifdef ENABLE_LIBPNG
-
-#include "ImgWriter.h"
-
-struct PNGWriterPrivate;
-
-class PNGWriter : public ImgWriter
-{
-public:
-
- /* RGB - 3 bytes/pixel
- * RGBA - 4 bytes/pixel
- * GRAY - 1 byte/pixel
- * MONOCHROME - 8 pixels/byte
- */
- enum Format { RGB, RGBA, GRAY, MONOCHROME };
-
- PNGWriter(Format format = RGB);
- ~PNGWriter();
-
- void setICCProfile(const char *name, unsigned char *data, int size);
- void setSRGBProfile();
-
-
- 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:
- PNGWriter(const PNGWriter &other);
- PNGWriter& operator=(const PNGWriter &other);
-
- PNGWriterPrivate *priv;
-};
-
-#endif
-
-#endif