Go to file
openharmony_ci b7622e00e2
!2582 add pac 20240924 手动挑单5.0release
Merge pull request !2582 from 何光耀/5.0rel_add_pac_20240924
2024-09-29 10:46:47 +00:00
figures Modify static file permissions from 775 to 664 2022-04-12 14:36:21 +08:00
frameworks !2582 add pac 20240924 手动挑单5.0release 2024-09-29 10:46:47 +00:00
ide add heif encode 2024-08-01 22:26:13 +08:00
interfaces !2582 add pac 20240924 手动挑单5.0release 2024-09-29 10:46:47 +00:00
mock/native 5.0rel add pac 20240924 update001 Signed-off-by heguangyao <heguangyao1@h-partners.com> 2024-09-24 10:57:47 +08:00
plugins !2582 add pac 20240924 手动挑单5.0release 2024-09-29 10:46:47 +00:00
test/resource !2436 fix TDD 2024-08-29 11:10:05 +00: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 image framework independent compile 2024-07-30 14:32:41 +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