-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathImgWriter.h
39 lines (31 loc) · 1.13 KB
/
ImgWriter.h
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
//========================================================================
//
// ImgWriter.h
//
// This file is licensed under the GPLv2 or later
//
// Copyright (C) 2009 Stefan Thomas <[email protected]>
// Copyright (C) 2009, 2011, 2018, 2022 Albert Astals Cid <[email protected]>
// Copyright (C) 2010 Adrian Johnson <[email protected]>
// Copyright (C) 2010 Brian Cameron <[email protected]>
// Copyright (C) 2011 Thomas Freitag <[email protected]>
//
//========================================================================
#ifndef IMGWRITER_H
#define IMGWRITER_H
#include "poppler_private_export.h"
#include <cstdio>
class POPPLER_PRIVATE_EXPORT ImgWriter
{
public:
ImgWriter() = default;
ImgWriter(const ImgWriter &) = delete;
ImgWriter &operator=(const ImgWriter &other) = delete;
virtual ~ImgWriter();
virtual bool init(FILE *f, int width, int height, double hDPI, double vDPI) = 0;
virtual bool writePointers(unsigned char **rowPointers, int rowCount) = 0;
virtual bool writeRow(unsigned char **row) = 0;
virtual bool close() = 0;
virtual bool supportCMYK() { return false; }
};
#endif