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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
/* ============================================================
*
* This file is a part of digiKam project
* http://www.digikam.org
*
* Date : 2005-06-14
* Description : digiKam 8/16 bits image management API
*
* Copyright (C) 2005 by Renchi Raju <[email protected]>
* Copyright (C) 2005-2007 by Gilles Caulier <caulier dot gilles at gmail dot com>
* Copyright (C) 2006-2007 by Marcel Wiesweg <[email protected]>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundation;
* either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* ============================================================ */
#ifndef DIMG_H
#define DIMG_H
// TQt includes.
#include <tqcstring.h>
#include <tqsize.h>
#include <tqrect.h>
#include <tqimage.h>
#include <tqpixmap.h>
#include <tqvariant.h>
// Local includes.
#include "digikam_export.h"
#include "drawdecoding.h"
#include "dcolor.h"
#include "dcolorcomposer.h"
class TQString;
namespace Digikam
{
class ExposureSettingsContainer;
class DImgPrivate;
class IccTransform;
class DImgLoaderObserver;
class DIGIKAM_EXPORT DImg
{
public:
enum FORMAT
{
NONE = 0,
JPEG,
PNG,
TIFF,
RAW,
PPM,
JP2K,
TQIMAGE
};
enum METADATA
{
COM, // JFIF comments section data.
EXIF, // EXIF meta-data.
IPTC, // IPTC meta-data.
ICC // ICC color profile.
};
enum ANGLE
{
ROT90,
ROT180,
ROT270
};
enum FLIP
{
HORIZONTAL,
VERTICAL
};
/** Identify file format */
static FORMAT fileFormat(const TQString& filePath);
/** Create null image */
DImg();
/** Load image using TQCString as file path */
DImg(const TQCString& filePath, DImgLoaderObserver *observer = 0,
DRawDecoding rawDecodingSettings=DRawDecoding());
/** Load image using TQString as file path */
DImg(const TQString& filePath, DImgLoaderObserver *observer = 0,
DRawDecoding rawDecodingSettings=DRawDecoding());
/** Copy image: Creates a shallow copy that refers to the same shared data.
The two images will be equal. Call detach() or copy() to create deep copies.
*/
DImg(const DImg& image);
/** Copy image: Creates a copy of a TQImage object. If the TQImage is null, a
null DImg will be created.
*/
DImg(const TQImage& image);
/** Create image from data.
If data is 0, a new buffer will be allocated, otherwise the given data will be used:
If copydata is true, the data will be copied to a newly allocated buffer.
If copyData is false, this DImg object will take ownership of the data pointer.
If there is an alpha channel, the data shall be in non-premultiplied form (unassociated alpha).
*/
DImg(uint width, uint height, bool sixteenBit, bool alpha=false, uchar* data = 0, bool copyData = true);
~DImg();
/** Equivalent to the copy constructor */
DImg& operator=(const DImg& image);
/** Detaches from shared data and makes sure that this image
is the only one referring to the data.
If multiple images share common data, this image makes a copy
of the data and detaches itself from the sharing mechanism.
Nothing is done if there is just a single reference.
*/
void detach();
/** Returns whether two images are equal.
Two images are equal if and only if they refer to the same shared data.
(Thus, DImg() == DImg() is not true, both instances refer two their
own shared data. image == DImg(image) is true.)
If two or more images refer to the same data, they have the same
image data, bits() returns the same data, they have the same metadata,
and a change to one image also affects the others.
Call detach() to split one image from the group of equal images.
*/
bool operator==(const DImg& image) const;
/** Replaces image data of this object. Metadata is unchanged. Parameters like constructor above. */
void putImageData(uint width, uint height, bool sixteenBit, bool alpha, uchar *data, bool copyData = true);
/** Overloaded function, provided for convenience, behaves essentially
like the function above if data is not 0.
Uses current width, height, sixteenBit, and alpha values.
If data is 0, the current data is deleted and the image is set to null
(But metadata unchanged).
*/
void putImageData(uchar *data, bool copyData = true);
/** Reset metadata and image data to null image */
void reset(void);
/** Reset metadata, but do not change image data */
void resetMetaData(void);
/** Returns the data of this image.
Ownership of the buffer is passed to the caller, this image will be null afterwards.
*/
uchar* stripImageData();
bool load(const TQString& filePath, DImgLoaderObserver *observer = 0,
DRawDecoding rawDecodingSettings=DRawDecoding());
bool save(const TQString& filePath, const TQString& format, DImgLoaderObserver *observer = 0);
bool isNull() const;
uint width() const;
uint height() const;
TQSize size() const;
uchar* bits() const;
uchar* scanLine(uint i) const;
bool hasAlpha() const;
bool sixteenBit() const;
uint numBytes() const;
uint numPixels() const;
/** Return the number of bytes depth of one pixel : 4 (non sixteenBit) or 8 (sixteen) */
int bytesDepth() const;
/** Return the number of bits depth of one color component for one pixel : 8 (non sixteenBit) or 16 (sixteen) */
int bitsDepth() const;
/** Access a single pixel of the image.
These functions add some safety checks and then use the methods from DColor.
In optimized code working directly on the data,
better use the inline methods from DColor.
*/
DColor getPixelColor(uint x, uint y) const;
void setPixelColor(uint x, uint y, DColor color);
/**
Return true if the original image file format cannot be saved.
This is depending of DImgLoader::save() implementation. For example
RAW file formats are supported by DImg uing dcraw than cannot support
writing operations.
*/
bool isReadOnly() const;
/** Metadata manipulation methods */
TQByteArray getComments() const;
TQByteArray getExif() const;
TQByteArray getIptc() const;
TQByteArray getICCProfil() const;
void setComments(const TQByteArray& commentsData);
void setExif(const TQByteArray& exifData);
void setIptc(const TQByteArray& iptcData);
void setICCProfil(const TQByteArray& profile);
TQByteArray metadata(METADATA key) const;
bool getICCProfilFromFile(const TQString& filePath);
bool setICCProfilToFile(const TQString& filePath);
void setAttribute(const TQString& key, const TQVariant& value);
TQVariant attribute(const TQString& key) const;
void setEmbeddedText(const TQString& key, const TQString& text);
TQString embeddedText(const TQString& key) const;
/** Return a deep copy of full image */
DImg copy();
/** Return a deep copy of the image, but do not include metadata. */
DImg copyImageData();
/** Return an image that containes a deep copy of
this image's metadata and the information associated
with the image data (width, height, hasAlpha, sixteenBit),
but no image data, i.e. isNull() is true.
*/
DImg copyMetaData();
/** Return a region of image */
DImg copy(TQRect rect);
DImg copy(int x, int y, int w, int h);
/** Copy a region of pixels from a source image to this image.
Parameters:
sx|sy Coordinates in the source image of the rectangle to be copied
w h Width and height of the rectangle (Default, or when both are -1: whole source image)
dx|dy Coordinates in this image of the rectangle in which the region will be copied
(Default: 0|0)
The bit depth of source and destination must be identical.
*/
void bitBltImage(const DImg* src, int dx, int dy);
void bitBltImage(const DImg* src, int sx, int sy, int dx, int dy);
void bitBltImage(const DImg* src, int sx, int sy, int w, int h, int dx, int dy);
void bitBltImage(const uchar* src, int sx, int sy, int w, int h, int dx, int dy,
uint swidth, uint sheight, int sdepth);
/** Blend src image on this image (this is dest) with the specified composer
and multiplication flags. See documentation of DColorComposer for more info.
For the other arguments, see documentation of bitBltImage above.
*/
void bitBlendImage(DColorComposer *composer, const DImg* src,
int sx, int sy, int w, int h, int dx, int dy,
DColorComposer::MultiplicationFlags multiplicationFlags =
DColorComposer::NoMultiplication);
/** TQImage wrapper methods */
TQImage copyTQImage();
TQImage copyTQImage(TQRect rect);
TQImage copyTQImage(int x, int y, int w, int h);
/** Crop image to the specified region */
void crop(TQRect rect);
void crop(int x, int y, int w, int h);
/** Set width and height of this image, smoothScale it to the given size */
void resize(int w, int h);
/** Return a version of this image scaled to the specified size with the specified mode.
See TQSize documentation for information on available modes
*/
DImg smoothScale(int width, int height, TQSize::ScaleMode scaleMode=TQSize::ScaleFree);
/** Take the region specified by the rectangle sx|sy, width and height sw * sh,
and scale it to an image with size dw * dh
*/
DImg smoothScaleSection(int sx, int sy, int sw, int sh,
int dw, int dh);
void rotate(ANGLE angle);
void flip(FLIP direction);
TQPixmap convertToPixmap();
TQPixmap convertToPixmap(IccTransform* monitorICCtrans);
/** Return a mask image where pure white and pure black pixels are over-colored.
This way is used to identify over and under exposed pixels.
*/
TQImage pureColorMask(ExposureSettingsContainer *expoSettings);
/** Convert depth of image. Depth is bytesDepth * bitsDepth.
If depth is 32, converts to 8 bits,
if depth is 64, converts to 16 bits.
*/
void convertDepth(int depth);
/** Wrapper methods for convertDepth */
void convertToSixteenBit();
void convertToEightBit();
void convertToDepthOfImage(const DImg *otherImage);
/** Fill whole image with specified color.
The bit depth of the color must be identical to the depth of this image.
*/
void fill(DColor color);
private:
DImgPrivate *m_priv;
private:
void copyMetaData(const DImgPrivate *src);
void copyImageData(const DImgPrivate *src);
void setImageData(bool null, uint width, uint height, bool sixteenBit, bool alpha);
void setImageDimension(uint width, uint height);
int allocateData();
DImg(const DImg &image, int w, int h);
static void bitBlt(const uchar *src, uchar *dest,
int sx, int sy, int w, int h, int dx, int dy,
uint swidth, uint sheight, uint dwidth, uint dheight,
bool sixteenBit, int sdepth, int ddepth);
static void bitBlend(DColorComposer *composer, const uchar *src, uchar *dest,
int sx, int sy, int w, int h, int dx, int dy,
uint swidth, uint sheight, uint dwidth, uint dheight,
bool sixteenBit, int sdepth, int ddepth,
DColorComposer::MultiplicationFlags multiplicationFlags);
static bool normalizeRegionArguments(int &sx, int &sy, int &w, int &h, int &dx, int &dy,
uint swidth, uint sheight, uint dwidth, uint dheight);
friend class DImgLoader;
};
} // NameSpace Digikam
#endif /* DIMG_H */
|