mirror of
https://github.com/openharmony/ace_ace_engine.git
synced 2026-07-22 02:15:27 -04:00
032b9130a1
Signed-off-by: chenxuankai1 <chenxuankai1@huawei.com> Change-Id: Id5c7fd2db2abfa9e4715febd80be7709ead4ffdc Signed-off-by: chenxuankai1 <chenxuankai1@huawei.com>
65 lines
2.3 KiB
C++
65 lines
2.3 KiB
C++
/*
|
|
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef FOUNDATION_ACE_FRAMEWORKS_BASE_IMAGE_ACE_PIXEL_MAP_H
|
|
#define FOUNDATION_ACE_FRAMEWORKS_BASE_IMAGE_ACE_PIXEL_MAP_H
|
|
|
|
#include "base/memory/ace_type.h"
|
|
|
|
namespace OHOS::Ace {
|
|
|
|
enum class PixelFormat : int32_t {
|
|
UNKNOWN = 0,
|
|
ARGB_8888 = 1, // Each pixel is stored on 4 bytes.
|
|
RGB_565 = 2, // Each pixel is stored on 2 bytes
|
|
RGBA_8888 = 3,
|
|
BGRA_8888 = 4,
|
|
RGB_888 = 5,
|
|
ALPHA_8 = 6,
|
|
RGBA_F16 = 7,
|
|
NV21 = 8, // Each pixel is sotred on 3/2 bytes.
|
|
NV12 = 9,
|
|
CMYK = 10,
|
|
};
|
|
|
|
enum class AlphaType : int32_t {
|
|
IMAGE_ALPHA_TYPE_UNKNOWN = 0,
|
|
IMAGE_ALPHA_TYPE_OPAQUE = 1, // image pixels are stored as opaque.
|
|
IMAGE_ALPHA_TYPE_PREMUL = 2, // image have alpha component, and all pixels have premultiplied by alpha value.
|
|
IMAGE_ALPHA_TYPE_UNPREMUL = 3, // image have alpha component, and all pixels stored without premultiply alpha value.
|
|
};
|
|
|
|
class ACE_EXPORT PixelMap : public AceType {
|
|
DECLARE_ACE_TYPE(PixelMap, AceType)
|
|
|
|
public:
|
|
static RefPtr<PixelMap> CreatePixelMap(void* sptrAddr);
|
|
static RefPtr<PixelMap> CreatePixelMapFromDataAbility(void* uniquePtr);
|
|
virtual int32_t GetWidth() const = 0;
|
|
virtual int32_t GetHeight() const = 0;
|
|
virtual const uint8_t* GetPixels() const = 0;
|
|
virtual PixelFormat GetPixelFormat() const = 0;
|
|
virtual AlphaType GetAlphaType() const = 0;
|
|
virtual int32_t GetRowBytes() const = 0;
|
|
virtual int32_t GetByteCount() const = 0;
|
|
virtual void* GetPixelManager() const = 0;
|
|
virtual void* GetRawPixelMapPtr() const = 0;
|
|
virtual std::string GetId() = 0;
|
|
virtual std::string GetModifyId() = 0;
|
|
};
|
|
|
|
} // namespace OHOS::Ace
|
|
|
|
#endif // FOUNDATION_ACE_FRAMEWORKS_BASE_IMAGE_ACE_PIXEL_MAP_H
|