Go to file
lee 42c3d977da use static pixelmap in cross platform
Signed-off-by: lee <liwei576@huawei.com>
2023-04-18 09:18:02 +08:00
figures Modify static file permissions from 775 to 664 2022-04-12 14:36:21 +08:00
frameworks !611 fix pixelmap unmarshlling SIGBUS 2023-04-14 10:02:05 +00:00
ide !615 跨平台适配commonlibrary 2023-04-13 06:32:55 +00:00
interfaces use static pixelmap in cross platform 2023-04-18 09:18:02 +08:00
mock/native use static pixelmap in cross platform 2023-04-18 09:18:02 +08:00
plugins !626 fix codecheck 2023-04-17 11:32:09 +00:00
test/resource update test/resource/image/ohos_test.xml. 2023-04-03 07:01:53 +00:00
.gitattributes update .gitattributes. 2021-12-24 02:46:43 +00:00
BUILD.gn 跨平台so合编后,删除插件so中的冗余编译 2023-04-14 16:01:06 +08:00
bundle.json update bundle.json. 2023-03-17 08:47:51 +00: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