Go to file
yangfan 5017afa10e 屏蔽更新
Signed-off-by: yangfan <yangfan174@huawei.com>
Change-Id: Ic4a585233e7952bdecdaadf81c91322ac0885ee8
2024-03-12 20:57:28 +08:00
figures Modify static file permissions from 775 to 664 2022-04-12 14:36:21 +08:00
frameworks 解决门禁误报问题 2024-03-12 18:12:07 +08:00
ide Merge remote-tracking branch 'origin/master' into surface2 2024-01-03 10:04:14 +08:00
interfaces !1479 modify pixelmap_序列化 2024-03-04 02:42:43 +00:00
mock/native change HiLog::xx->HILOG_xx by IMAGE_LOGx 2024-01-26 19:05:45 +08:00
plugins 增加DNG格式解码 2024-03-12 14:31:18 +08:00
test/resource 增加DNG格式解码 2024-03-12 14:31:18 +08:00
.gitattributes update .gitattributes. 2021-12-24 02:46:43 +00:00
BUILD.gn enable hardware decode for jpeg pic 2023-09-06 09:46:21 +08:00
bundle.json 增加jpeg图片软解到Yuv格式 2024-02-26 16:45:38 +08:00
hisysevent.yaml add yaml file and config for ue 2023-11-24 16:59:48 +08:00
LICENSE Modify static file permissions from 775 to 664 2022-04-12 14:36:21 +08:00
OAT.xml 屏蔽更新 2024-03-12 20:57:28 +08:00
README_zh.md update README_zh.md. 2022-12-05 14:41:53 +00:00
README.md modify readme 2022-09-23 14:29:56 +08:00

Image

Introduction

The image repository provides easy-to-use APIs for developing image encoding and decoding features. Currently, the following image formats are supported: JPEG, PNG, BMP.

Figure 1 Image architecture

Directory Structure

The structure of the repository directory is as follows:

/foundation/multimedia/image   
├── frameworks                    # Framework code
│   ├── innerkitsimpl             # Native API implementation
│   └── jni                       # JNI implementation
├── ohos.build                    # Build configuration
├── interfaces                    # External APIs
│   ├── innerkits                 # APIs of other internal subsystems
│   └── kits                      # Java APIs
├── plugins                       # Image plug-in implementation
│   ├── common                    # Common image plug-ins
│   ├── manager                   # Image plug-in manager
├── test                          # Test resources

Repositories Involved

multimedia_image_framework