Support YUV decoding for JPEG
[platform/core/uifw/dali-adaptor.git] / dali / internal / imaging / common / image-loader.h
1 #ifndef DALI_TIZEN_PLATFORM_IMAGE_LOADER_H
2 #define DALI_TIZEN_PLATFORM_IMAGE_LOADER_H
3
4 /*
5  * Copyright (c) 2022 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 // EXTERNAL INCLUDES
21 #include <dali/devel-api/adaptor-framework/pixel-buffer.h>
22 #include <dali/integration-api/bitmap.h>
23 #include <dali/integration-api/resource-types.h>
24 #include <dali/public-api/images/image-operations.h>
25 #include <dali/public-api/images/pixel-data.h>
26 #include <string>
27
28 namespace Dali
29 {
30 namespace Integration
31 {
32 typedef IntrusivePtr<Dali::RefObject> ResourcePointer;
33 } // namespace Integration
34
35 namespace TizenPlatform
36 {
37 namespace ImageLoader
38 {
39 /**
40  * Convert a file stream into a bitmap.
41  * @param[in] resource The resource to convert.
42  * @param[in] path The path to the resource.
43  * @param[in] fp File Pointer. Closed on exit.
44  * @param[out] bitmap Pointer to write bitmap to
45  * @return true on success, false on failure
46  */
47 bool ConvertStreamToBitmap(const Integration::BitmapResourceType& resource, const std::string& path, FILE* const fp, Dali::Devel::PixelBuffer& pixelBuffer);
48
49 /**
50  * Convert a file stream into image planes.
51  * @param[in] resource The resource to convert.
52  * @param[in] path The path to the resource.
53  * @param[in] fp File Pointer. Closed on exit.
54  * @param[out] pixelBuffers Pointer to write buffer to
55  * @return true on success, false on failure
56  * @note If the image file doesn't support to load planes, this method returns one RGB bitmap image.
57  */
58 bool ConvertStreamToPlanes(const Integration::BitmapResourceType& resource, const std::string& path, FILE* const fp, std::vector<Dali::Devel::PixelBuffer>& pixelBuffers);
59
60 /**
61  * Loads an image synchronously
62  * @param resource details of the image
63  * @param path to the image
64  * @return bitmap
65  */
66 Integration::ResourcePointer LoadImageSynchronously(const Integration::BitmapResourceType& resource, const std::string& path);
67
68 /**
69  * @returns the closest image size
70  */
71 ImageDimensions GetClosestImageSize(const std::string& filename,
72                                     ImageDimensions    size,
73                                     FittingMode::Type  fittingMode,
74                                     SamplingMode::Type samplingMode,
75                                     bool               orientationCorrection);
76
77 /**
78  * @returns the closest image size
79  */
80 ImageDimensions GetClosestImageSize(Integration::ResourcePointer resourceBuffer,
81                                     ImageDimensions              size,
82                                     FittingMode::Type            fittingMode,
83                                     SamplingMode::Type           samplingMode,
84                                     bool                         orientationCorrection);
85
86 /**
87  * @brief Set the maximum texture size. Then size can be kwown by GL_MAX_TEXTURE_SIZE.
88  *
89  * @param [in] size The maximum texture size to set
90  */
91 void SetMaxTextureSize(unsigned int size);
92
93 /**
94  * @brief Get the maximum texture size.
95  *
96  * @return The maximum texture size
97  */
98 unsigned int GetMaxTextureSize();
99
100 /**
101  * @brief Check the gMaxTextureSize is updated or not.
102  *
103  * @return Whether the gMaxTextureSize is updated or not.
104  */
105 bool MaxTextureSizeUpdated();
106
107 } // namespace ImageLoader
108 } // namespace TizenPlatform
109 } // namespace Dali
110
111 #endif // DALI_TIZEN_PLATFORM_IMAGE_LOADER_H