WPGBitmap.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* libwpg
3  * Version: MPL 2.0 / LGPLv2.1+
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * Major Contributor(s):
10  * Copyright (C) 2007 Ariya Hidayat (ariya@kde.org)
11  * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org)
12  *
13  * For minor contributions see the git repository.
14  *
15  * Alternatively, the contents of this file may be used under the terms
16  * of the GNU Lesser General Public License Version 2.1 or later
17  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
18  * applicable instead of those above.
19  *
20  * For further information visit http://libwpg.sourceforge.net
21  */
22 
23 /* "This product is not manufactured, approved, or supported by
24  * Corel Corporation or Corel Corporation Limited."
25  */
26 
27 #ifndef __WPGBITMAP_H__
28 #define __WPGBITMAP_H__
29 
30 #include <memory>
31 
32 #include "WPGColor.h"
33 #include <librevenge/librevenge.h>
34 
35 namespace libwpg
36 {
37 
38 class WPGBitmap
39 {
40 public:
41  WPGBitmap(int width, int height, int verticalResolution, int horizontalResolution, bool verticalFlip=false, bool horizontalFlip=false);
42 
43  WPGBitmap(const WPGBitmap &);
44 
45  WPGBitmap &operator=(const WPGBitmap &);
46 
47  void copyFrom(const WPGBitmap &);
48 
49  ~WPGBitmap();
50 
51  // return width in pixel
52  int width() const;
53 
54  // return height in pixel
55  int height() const;
56 
57  // return vertical resolution in pixels per inch
58  int vres() const;
59 
60  // return horizontal resolution in pixels per inch
61  int hres() const;
62 
63  void setPixel(int x, int y, const WPGColor &color);
64 
65  const librevenge::RVNGBinaryData &getDIB() const;
66 
67 private:
68  class Private;
69  std::unique_ptr<Private> const d;
70 };
71 
72 } // namespace libwpg
73 
74 #endif // __WPGBITMAP_H__
75 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
void setPixel(int x, int y, const WPGColor &color)
Definition: WPGBitmap.cpp:143
const librevenge::RVNGBinaryData & getDIB() const
Definition: WPGBitmap.cpp:151
Definition: WPGColor.h:34
int height() const
Definition: WPGBitmap.cpp:128
Definition: WPGBitmap.cpp:68
int width() const
Definition: WPGBitmap.cpp:123
std::unique_ptr< Private > const d
Definition: WPGBitmap.h:68
void copyFrom(const WPGBitmap &)
Definition: WPGBitmap.cpp:114
WPGBitmap(int width, int height, int verticalResolution, int horizontalResolution, bool verticalFlip=false, bool horizontalFlip=false)
Definition: WPGBitmap.cpp:87
~WPGBitmap()
Definition: WPGBitmap.cpp:99
Definition: libwpg_utils.cpp:25
int vres() const
Definition: WPGBitmap.cpp:133
int hres() const
Definition: WPGBitmap.cpp:138
WPGBitmap & operator=(const WPGBitmap &)
Definition: WPGBitmap.cpp:108
Definition: WPGBitmap.h:38

Generated for libwpg by doxygen 1.8.8