[4.0] Exposing Exif Image metadata
[platform/core/uifw/dali-adaptor.git] / adaptors / common / pixel-buffer-impl.h
1 #ifndef DALI_INTERNAL_ADAPTOR_PIXEL_BUFFER_H
2 #define DALI_INTERNAL_ADAPTOR_PIXEL_BUFFER_H
3
4 /*
5  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <pixel-buffer.h>
23 #include <dali/public-api/images/image-operations.h> // For ImageDimensions
24 #include <dali/public-api/images/pixel-data.h>
25 #include <dali/public-api/object/base-object.h>
26 #include <dali/public-api/object/property-map.h>
27
28 // EXTERNAL INCLUDES
29 #include <memory>
30
31 namespace Dali
32 {
33
34 namespace Internal
35 {
36
37 namespace Adaptor
38 {
39
40 class PixelBuffer;
41 typedef IntrusivePtr<PixelBuffer> PixelBufferPtr;
42
43 class PixelBuffer : public BaseObject
44 {
45 public:
46
47   /**
48    * @brief Create a PixelBuffer object with a pre-allocated buffer.
49    * The PixelBuffer object owns this buffer, which may be retrieved
50    * and modified using GetBuffer().
51    *
52    * @param [in] width            Buffer width in pixels
53    * @param [in] height           Buffer height in pixels
54    * @param [in] pixelFormat      The pixel format
55    */
56   static PixelBufferPtr New( unsigned int width,
57                              unsigned int height,
58                              Pixel::Format pixelFormat );
59
60   /**
61    * @brief Create a PixelBuffer object. For internal use only.
62    *
63    * @param [in] buffer           The raw pixel data.
64    * @param [in] bufferSize       The size of the buffer in bytes
65    * @param [in] width            Buffer width in pixels
66    * @param [in] height           Buffer height in pixels
67    * @param [in] pixelFormat      The pixel format
68    * @param [in] releaseFunction  The function used to release the memory.
69    */
70   static PixelBufferPtr New( unsigned char* buffer,
71                              unsigned int bufferSize,
72                              unsigned int width,
73                              unsigned int height,
74                              Pixel::Format pixelFormat );
75
76   /**
77    * Convert a pixelBuffer object into a PixelData object.
78    * The new object takes ownership of the buffer data, and the
79    * mBuffer pointer is reset to NULL.
80    * @param[in] pixelBuffer The buffer to convert
81    * @return the pixelData
82    */
83   static Dali::PixelData Convert( PixelBuffer& pixelBuffer );
84
85   /**
86    * @brief Constructor.
87    *
88    * @param [in] buffer           The raw pixel data.
89    * @param [in] bufferSize       The size of the buffer in bytes
90    * @param [in] width            Buffer width in pixels
91    * @param [in] height           Buffer height in pixels
92    * @param [in] pixelFormat      The pixel format
93    */
94   PixelBuffer( unsigned char* buffer,
95                unsigned int bufferSize,
96                unsigned int width,
97                unsigned int height,
98                Pixel::Format pixelFormat );
99
100 protected:
101
102   /**
103    * @brief Destructor.
104    *
105    * Release the pixel buffer if exists.
106    */
107   ~PixelBuffer();
108
109 public:
110
111   /**
112    * Get the width of the buffer in pixels.
113    * @return The width of the buffer in pixels
114    */
115   unsigned int GetWidth() const;
116
117   /**
118    * Get the height of the buffer in pixels
119    * @return The height of the buffer in pixels
120    */
121   unsigned int GetHeight() const;
122
123   /**
124    * Get the pixel format
125    * @return The pixel format
126    */
127   Pixel::Format GetPixelFormat() const;
128
129   /**
130    * Get the pixel buffer if it's present.
131    * @return The buffer if exists, or NULL if there is no pixel buffer.
132    */
133   unsigned char* GetBuffer() const;
134
135   /**
136    * Get the size of the buffer in bytes
137    * @return The size of the buffer
138    */
139   unsigned int GetBufferSize() const;
140
141   /**
142    * Copy the buffer into a new PixelData
143    */
144   Dali::PixelData CreatePixelData() const;
145
146   /**
147    * @brief Apply the mask to the current buffer.
148    *
149    * This method may update the internal object - e.g. the new buffer
150    * may have a different pixel format - as an alpha channel may be
151    * added.
152    * @param[in] mask The mask to apply to this pixel buffer
153    * @param[in] contentScale The scaling factor to apply to the content
154    * @param[in] cropToMask Whether to crop the output to the mask size (true) or scale the
155    * mask to the content size (false)
156    */
157   void ApplyMask( const PixelBuffer& mask, float contentScale, bool cropToMask );
158
159   /**
160    * @brief Apply a Gaussian blur to the current buffer with the given radius.
161    *
162    * @param[in] blurRadius The radius for Gaussian blur
163    */
164   void ApplyGaussianBlur( const float blurRadius );
165
166   /**
167    * Crops this buffer to the given crop rectangle. Assumes the crop rectangle
168    * is within the bounds of this size.
169    * @param[in] x The top left corner's X
170    * @param[in] y The top left corner's y
171    * @param[in] cropDimensions The dimensions of the crop
172    */
173   void Crop( uint16_t x, uint16_t y, ImageDimensions cropDimensions );
174
175   /**
176    * Resizes the buffer to the given dimensions. Uses either Lanczos4 for downscaling
177    * or Mitchell for upscaling
178    * @param[in] outDimensions The new dimensions
179    */
180   void Resize( ImageDimensions outDimensions );
181
182   /**
183    * @brief Sets image metadata
184    *
185    * @param map Property map containing Exif fields
186    */
187   void SetMetadata( const Property::Map& map );
188
189   /**
190    * @brief Returns image metadata as a property map
191    * @param[out] outMetadata Property map to copy the data into
192    * @return True on success
193    */
194   bool GetMetadata(Property::Map& outMetadata) const;
195
196   /**
197    * @brief Sets metadata property map for the pixel buffer
198    * @note The function takes over the ownership of the property map
199    * @param[in] metadata Property map to copy the data into
200    */
201   void SetMetadata(std::unique_ptr<Property::Map> metadata);
202
203 private:
204   /*
205    * Undefined copy constructor.
206    */
207   PixelBuffer(const PixelBuffer& other);
208
209   /*
210    * Undefined assignment operator.
211    */
212   PixelBuffer& operator= (const PixelBuffer& other);
213
214   /**
215    * Internal method to apply the mask to this buffer. Expects that they are the same size.
216    */
217   void ApplyMaskInternal( const PixelBuffer& mask );
218
219   /**
220    * Takes ownership of the other object's pixel buffer.
221    */
222   void TakeOwnershipOfBuffer( PixelBuffer& pixelBuffer );
223
224   /**
225    * Release the buffer
226    */
227   void ReleaseBuffer();
228
229   /**
230    * Scales this buffer buffer by the given factor, and crops at the center to the
231    * given dimensions.
232    */
233   void ScaleAndCrop( float scaleFactor, ImageDimensions cropDimensions );
234
235   /**
236    * Creates a new buffer which is a crop of the passed in buffer,
237    * using the given crop rectangle. Assumes the crop rectangle is
238    * within the bounds of this size.
239    * @param[in] inBuffer The source buffer
240    * @param[in] x The top left corner's X
241    * @param[in] y The top left corner's y
242    * @param[in] cropDimensions The dimensions of the crop
243    * @return the new pixel buffer
244    */
245   static PixelBufferPtr NewCrop( const PixelBuffer& inBuffer, uint16_t x, uint16_t y, ImageDimensions cropDimensions );
246
247   /**
248    * Creates a new buffer which is a resized version of the passed in buffer.
249    * Uses either Lanczos4 for downscaling, or Mitchell for upscaling.
250    * @param[in] inBuffer The source buffer
251    * @param[in] outDimensions The new dimensions
252    * @return a new buffer of the given size.
253    */
254   static PixelBufferPtr NewResize( const PixelBuffer& inBuffer, ImageDimensions outDimensions );
255
256
257 private:
258
259   std::unique_ptr<Property::Map>  mMetadata;         ///< Metadata fields
260   unsigned char*                  mBuffer;           ///< The raw pixel data
261   unsigned int                    mBufferSize;       ///< Buffer sized in bytes
262   unsigned int                    mWidth;            ///< Buffer width in pixels
263   unsigned int                    mHeight;           ///< Buffer height in pixels
264   Pixel::Format                   mPixelFormat;      ///< Pixel format
265 };
266
267 } // namespace Adaptor
268
269 } // namespace Internal
270
271 /**
272  * Helper methods for public API
273  */
274 inline Internal::Adaptor::PixelBuffer& GetImplementation( Devel::PixelBuffer& handle )
275 {
276   DALI_ASSERT_ALWAYS( handle && "handle is empty" );
277
278   BaseObject& object = handle.GetBaseObject();
279
280   return static_cast<Internal::Adaptor::PixelBuffer&>( object );
281 }
282
283 inline const Internal::Adaptor::PixelBuffer& GetImplementation( const Devel::PixelBuffer& handle )
284 {
285   DALI_ASSERT_ALWAYS( handle && "handle is empty" );
286
287   const BaseObject& object = handle.GetBaseObject();
288
289   return static_cast<const Internal::Adaptor::PixelBuffer&>( object );
290 }
291
292 } // namespace Dali
293
294 #endif // __DALI_INTERNAL_ADAPTOR_PIXEL_BUFFER_H__