Go to file
oh_ci beae556231
!2693 arkui-x update master OH to weekly_20241014 and OH fix build bug
Merge pull request !2693 from mufeng521/mufeng_master_oh_weekly_20241014
2024-10-21 01:42:32 +00:00
figures Modify static file permissions from 775 to 664 2022-04-12 14:36:21 +08:00
frameworks arkui-x update master OH to weekly_20241014 and OH fix build bug 2024-10-17 10:49:03 +08:00
ide Fix: fix BUILD.gn marco 2024-08-27 16:43:43 +08:00
interfaces !2623 Heif增加fragment metadata解封装 2024-10-13 12:39:13 +00:00
mock/native add pac 20240914 update001 Signed-off-by heguangyao <heguangyao1@h-partners.com> 2024-09-14 17:24:08 +08:00
plugins arkui-x update master OH to weekly_20241014 and OH fix build bug 2024-10-17 10:49:03 +08:00
test/resource Test: Add picture fuzz test. 2024-09-24 17:21:37 +08:00
.gitattributes update .gitattributes. 2021-12-24 02:46:43 +00:00
BUILD.gn enable heif hardware decode 2024-05-27 09:26:32 +08:00
bundle.json Add class Picture and AuxiliaryPicture for multi-picture function 2024-08-03 11:03:52 +08:00
hisysevent.yaml add DFT 2024-04-12 21:12:53 +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