Go to file
openharmony_ci 5e95b3b4fe
!1343 oh fix arkui-x build failed
Merge pull request !1343 from 0116_2
2024-01-24 08:31:31 +00:00
figures Modify static file permissions from 775 to 664 2022-04-12 14:36:21 +08:00
frameworks !1343 oh fix arkui-x build failed 2024-01-24 08:31:31 +00:00
ide Merge remote-tracking branch 'origin/master' into surface2 2024-01-03 10:04:14 +08:00
interfaces fixed 3a7f52c from https://gitee.com/zhu-jingruH/multimedia_image_framework_2/pulls/1330 2024-01-23 12:43:21 +00:00
mock/native fix codeCheck 2023-12-18 10:09:46 +08:00
plugins Merge remote-tracking branch 'origin/master' into surface2 2024-01-04 14:32:46 +08:00
test/resource add astc software encode 2023-12-29 14:10:38 +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 Merge remote-tracking branch 'origin/master' into surface2 2024-01-03 10:04:14 +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 Modify static file permissions from 775 to 664 2022-04-12 14:36:21 +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