summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-0.26.3/goo/PNGWriter.h
blob: 90a298e7ef32f3bf574241c6f56a46b2a8b470e3 (plain)
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
//========================================================================
//
// 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