Go to file
openharmony_ci 6e578be22d
!1058 astc encoder osdep
Merge pull request !1058 from yifan-cui/master
2023-11-04 18:19:02 +00:00
figures Modify static file permissions from 775 to 664 2022-04-12 14:36:21 +08:00
frameworks !1054 新增bmp_decoder测试用例 2023-11-03 14:34:13 +00:00
ide fix formatcheck. 2023-09-04 11:48:37 +00:00
interfaces fix getpixelmap 2023-11-03 18:41:40 +08:00
mock/native !881 修复codecheck 2023-08-11 03:09:17 +00:00
plugins !1058 astc encoder osdep 2023-11-04 18:19:02 +00:00
test/resource enable hardware decode for jpeg pic 2023-09-06 09:46:21 +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 purgeable 2023-09-21 19:34:55 +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