summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-src/goo/PNGWriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/poppler/poppler-src/goo/PNGWriter.h')
-rw-r--r--Build/source/libs/poppler/poppler-src/goo/PNGWriter.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/Build/source/libs/poppler/poppler-src/goo/PNGWriter.h b/Build/source/libs/poppler/poppler-src/goo/PNGWriter.h
deleted file mode 100644
index 93f54369290..00000000000
--- a/Build/source/libs/poppler/poppler-src/goo/PNGWriter.h
+++ /dev/null
@@ -1,62 +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, 2017 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
- * RGB48 - 6 bytes/pixel
- */
- enum Format { RGB, RGBA, GRAY, MONOCHROME, RGB48 };
-
- 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) override;
-
- bool writePointers(unsigned char **rowPointers, int rowCount) override;
- bool writeRow(unsigned char **row) override;
-
- bool close() override;
-
-private:
- PNGWriter(const PNGWriter &other);
- PNGWriter& operator=(const PNGWriter &other);
-
- PNGWriterPrivate *priv;
-};
-
-#endif
-
-#endif