]>
Commit | Line | Data |
---|---|---|
3ed3a1c8 BP |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: rawbmp.h | |
3 | // Purpose: interface of wxPixelData | |
4 | // Author: wxWidgets team | |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
de022e4f RR |
8 | |
9 | /** | |
10 | @class wxPixelData | |
11 | @wxheader{rawbmp.h} | |
12 | ||
13 | A class template with ready to use implementations for getting | |
14 | direct and efficient access to wxBitmap's internal data and | |
15 | wxImage's internal data through a standard interface. It is | |
16 | possible to extend this class (interface) to other types of | |
17 | image content. | |
3ed3a1c8 | 18 | |
de022e4f | 19 | Implemented on Windows, GTK+ and OS X: |
3ed3a1c8 BP |
20 | @li wxNativePixelData: Class to access to wxBitmap's internal data |
21 | without alpha channel (RGB). | |
22 | @li wxAlphaPixelData: Class to access to wxBitmap's internal data with | |
23 | alpha channel (RGBA). | |
24 | ||
de022e4f | 25 | Implemented everywhere: |
3ed3a1c8 BP |
26 | @li wxImagePixelData: Class to access to wxImage's internal data with |
27 | alpha channel (RGBA). | |
28 | ||
29 | Example: | |
30 | ||
de022e4f RR |
31 | @code |
32 | wxBitmap bmp; | |
33 | wxNativePixelData data(bmp); | |
34 | if ( !data ) | |
35 | { | |
4e2cddc4 | 36 | // ... raw access to bitmap data unavailable, do something else ... |
de022e4f RR |
37 | return; |
38 | } | |
39 | ||
40 | if ( data.GetWidth() < 20 || data.GetHeight() < 20 ) | |
41 | { | |
4e2cddc4 | 42 | // ... complain: the bitmap it too small ... |
de022e4f RR |
43 | return; |
44 | } | |
45 | ||
46 | wxNativePixelData::Iterator p(data); | |
47 | ||
48 | // we draw a (10, 10)-(20, 20) rect manually using the given r, g, b | |
49 | p.Offset(data, 10, 10); | |
50 | ||
51 | for ( int y = 0; y < 10; ++y ) | |
52 | { | |
53 | wxNativePixelData::Iterator rowStart = p; | |
54 | ||
55 | for ( int x = 0; x < 10; ++x, ++p ) | |
56 | { | |
57 | p.Red() = r; | |
58 | p.Green() = g; | |
59 | p.Blue() = b; | |
60 | } | |
61 | ||
62 | p = rowStart; | |
63 | p.OffsetY(data, 1); | |
64 | } | |
65 | @endcode | |
66 | ||
67 | @library{wxcore} | |
68 | @category{gdi} | |
3ed3a1c8 | 69 | |
de022e4f RR |
70 | @see wxBitmap, wxImage |
71 | */ | |
72 | template <class Image, class PixelFormat = wxPixelFormatFor<Image> > | |
73 | class wxPixelData : | |
74 | public wxPixelDataOut<Image>::template wxPixelDataIn<PixelFormat> | |
75 | { | |
76 | public: | |
3ed3a1c8 BP |
77 | /** |
78 | The type of the class we're working with. | |
de022e4f RR |
79 | */ |
80 | typedef Image ImageType; | |
3ed3a1c8 | 81 | |
de022e4f | 82 | /** |
3ed3a1c8 | 83 | Create pixel data object representing the entire image. |
de022e4f RR |
84 | */ |
85 | wxPixelData(Image& image); | |
3ed3a1c8 BP |
86 | |
87 | ||
de022e4f | 88 | /** |
3ed3a1c8 BP |
89 | Create pixel data object representing the area of the image defined by |
90 | @a rect. | |
de022e4f RR |
91 | */ |
92 | wxPixelData(Image& i, const wxRect& rect); | |
3ed3a1c8 | 93 | |
de022e4f | 94 | /** |
3ed3a1c8 BP |
95 | Create pixel data object representing the area of the image defined by |
96 | @a pt and @a sz. | |
de022e4f RR |
97 | */ |
98 | wxPixelData(Image& i, const wxPoint& pt, const wxSize& sz) | |
3ed3a1c8 | 99 | |
de022e4f | 100 | /** |
3ed3a1c8 | 101 | Return @true of if we could get access to bitmap data successfully. |
de022e4f RR |
102 | */ |
103 | operator bool() const: | |
104 | ||
3ed3a1c8 BP |
105 | /** |
106 | Return the iterator pointing to the origin of the image. | |
de022e4f RR |
107 | */ |
108 | Iterator GetPixels() const; | |
109 | ||
110 | /** | |
3ed3a1c8 | 111 | Returns origin of the rectangular region this wxPixelData represents. |
de022e4f RR |
112 | */ |
113 | wxPoint GetOrigin() const; | |
114 | ||
3ed3a1c8 BP |
115 | /** |
116 | Return width of the region this wxPixelData represents. | |
de022e4f RR |
117 | */ |
118 | int GetWidth() const; | |
119 | ||
3ed3a1c8 BP |
120 | /** |
121 | Return height of the region this wxPixelData represents. | |
de022e4f RR |
122 | */ |
123 | int GetHeight() const; | |
124 | ||
3ed3a1c8 BP |
125 | /** |
126 | Return the area which this wxPixelData represents in the image. | |
de022e4f RR |
127 | */ |
128 | wxSize GetSize() const; | |
129 | ||
130 | /** | |
3ed3a1c8 | 131 | Return the distance between two rows. |
de022e4f RR |
132 | */ |
133 | int GetRowStride() const; | |
134 | ||
135 | ||
136 | /** | |
3ed3a1c8 | 137 | The iterator of class wxPixelData. |
de022e4f | 138 | */ |
3ed3a1c8 BP |
139 | class Iterator |
140 | { | |
141 | public: | |
142 | ||
143 | /** | |
144 | Reset the iterator to point to (0, 0). | |
145 | */ | |
146 | void Reset(const PixelData& data); | |
147 | ||
148 | /** | |
149 | Initializes the iterator to point to the origin of the given pixel | |
150 | data. | |
151 | */ | |
152 | Iterator(PixelData& data); | |
153 | ||
154 | /** | |
155 | Initializes the iterator to point to the origin of the given Bitmap. | |
156 | */ | |
157 | Iterator(wxBitmap& bmp, PixelData& data); | |
158 | ||
159 | /** | |
160 | Default constructor. | |
161 | */ | |
162 | Iterator(); | |
163 | ||
164 | /** | |
165 | Return @true if this iterator is valid. | |
166 | */ | |
167 | bool IsOk() const; | |
168 | ||
169 | /** | |
170 | Advance the iterator to the next pixel, prefix version. | |
171 | */ | |
172 | Iterator& operator++(); | |
173 | ||
174 | /** | |
175 | Advance the iterator to the next pixel, postfix (hence less | |
176 | efficient -- don't use it unless you absolutely must) version. | |
177 | */ | |
178 | Iterator operator++(int); | |
179 | ||
180 | /** | |
181 | Move @a x pixels to the right and @a y down. | |
182 | ||
183 | @note The rows won't wrap automatically. | |
184 | */ | |
185 | void Offset(const PixelData& data, int x, int y); | |
186 | ||
187 | /** | |
188 | Move @a x pixels to the right. | |
189 | ||
190 | @note The rows won't wrap automatically. | |
191 | */ | |
192 | void OffsetX(const PixelData&data, int x); | |
193 | ||
194 | /** | |
195 | Move @a y rows to the bottom | |
196 | */ | |
197 | void OffsetY(const PixelData& data, int y); | |
198 | ||
199 | /** | |
200 | Go to the given position | |
201 | */ | |
202 | void MoveTo(const PixelData& data, int x, int y); | |
203 | ||
204 | //@{ | |
205 | /** | |
206 | Data Access: Access to invidividual colour components. | |
207 | */ | |
208 | ChannelType& Red(); | |
209 | ChannelType& Green(); | |
210 | ChannelType& Blue(); | |
211 | ChannelType& Alpha(); | |
212 | //@} | |
213 | }; | |
de022e4f RR |
214 | }; |
215 |