ohos_image_kit_sys/
lib.rs

1//! Image Kit
2//!
3//! Image development is the process of parsing, processing, and constructing image pixel data to
4//! achieve the required image effect. Image development mainly involves image decoding, processing,
5//! and encoding.
6//!
7//! See the official upstream documentation for more information:
8//!
9//! - [Introduction to Image Kit]
10//! - [Image NativeModule]
11//!
12//! [Introduction to Image Kit]: https://docs.openharmony.cn/pages/v5.0/en/application-dev/media/image/image-overview.md
13//! [Image NativeModule]: https://docs.openharmony.cn/pages/v5.0/en/application-dev/media/image/image-structure-c.md
14//!
15//! ## Feature flags
16#![cfg_attr(
17    feature = "document-features",
18    cfg_attr(doc, doc = ::document_features::document_features!())
19)]
20#![cfg_attr(docsrs, feature(doc_cfg))]
21
22#[cfg(feature = "api-12")]
23#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
24pub mod native_image;