Go to file
openharmony_ci 963a944251
!2622 revert pack errCode
Merge pull request !2622 from 姚星宇/revertPackErrCode
2024-09-30 09:59:34 +00:00
figures Modify static file permissions from 775 to 664 2022-04-12 14:36:21 +08:00
frameworks !2622 revert pack errCode 2024-09-30 09:59:34 +00:00
ide Fix: fix BUILD.gn marco 2024-08-27 16:43:43 +08:00
interfaces Revert "!2554 packing接口错误码修改" 2024-09-30 12:04:54 +08:00
mock/native add pac 20240914 update001 Signed-off-by heguangyao <heguangyao1@h-partners.com> 2024-09-14 17:24:08 +08:00
plugins add ColorSpaceName::NONE protection 2024-09-28 16:43:44 +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