Go to file
openharmony_ci cad9b1a628
!1257 Add new test cases
Merge pull request !1257 from 王飘/master
2023-12-28 08:21:46 +00:00
figures Modify static file permissions from 775 to 664 2022-04-12 14:36:21 +08:00
frameworks !1257 Add new test cases 2023-12-28 08:21:46 +00:00
ide Modify image napi and capi 2023-12-08 11:43:00 +08:00
interfaces !1217 错误码修改 2023-12-27 03:03:05 +00:00
mock/native fix codeCheck 2023-12-18 10:09:46 +08:00
plugins astcBasedCL fix 2023-12-27 18:28:52 +08:00
test/resource jpeg ut 2023-12-20 11:53:15 +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 add egl_image_bundle 2023-12-25 20:53:43 +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