Go to file
openharmony_ci d2b7835903
!1328 日志等级修改
Merge pull request !1328 from 姚星宇/1_6_fix_log_repeat
2024-01-20 08:56:00 +00:00
figures Modify static file permissions from 775 to 664 2022-04-12 14:36:21 +08:00
frameworks !1308 1.12新增用例 2024-01-19 09:01:04 +00:00
ide Merge remote-tracking branch 'origin/master' into surface2 2024-01-03 10:04:14 +08:00
interfaces Signed-off-by:fandongyu<fandongyu.30044153@huawei.com> 2024-01-18 09:36:38 +08:00
mock/native fix codeCheck 2023-12-18 10:09:46 +08:00
plugins fix log repeat 2024-01-20 16:06:21 +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