diff --git a/README.md b/README.md
index 44f5e9a1de..110cc37c98 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
-# @react-native-oh-tpl/react-native-skia
+# 迁移声明
-This project is based on [react-native-skia v1.3.7](https://github.com/Shopify/react-native-skia/releases/tag/v1.3.7)
+- 本仓库已迁移至 GitCode:[OpenHarmony-SIG/rntpc_react-native-skia](https://gitcode.com/openharmony-sig/rntpc_react-native-skia)。
+- 包名已更改为 `@react-native-ohos/react-native-skia`,支持直接从 npm 下载。
+- 更多详情请查阅新仓库的 README 文件。
+- 本仓库旧版本的文档已归档:[链接](/doc/zh-cn.md)
-## Documentation
+# Migration Announcement
-- [中文](https://gitee.com/react-native-oh-library/usage-docs/blob/master/zh-cn/react-native-skia.md)
-
-- [English](https://gitee.com/react-native-oh-library/usage-docs/blob/master/en/react-native-skia.md)
-
-## License
-
-This library is licensed under [The MIT License (MIT)](https://github.com/Shopify/react-native-skia/blob/main/LICENSE.md)
+- This repository has been migrated to GitCode:[OpenHarmony-SIG/rntpc_react-native-skia](https://gitcode.com/openharmony-sig/rntpc_react-native-skia)
+- The package name has been changed to `@react-native-ohos/react-native-skia` and is now available for direct download from npm.
+- For more details, please refer to the README in the new repository.
+- Archived documentation for versions in this repository can be found here: [Link](/doc/en.md)
diff --git a/doc/en.md b/doc/en.md
new file mode 100644
index 0000000000..21e7c52e2c
--- /dev/null
+++ b/doc/en.md
@@ -0,0 +1,1067 @@
+Template version: v0.2.2
+
+
+
react-native-skia
+
+
+
+
+
+
+
+
+
+
+
+> [!TIP] [GitHub address](https://github.com/react-native-oh-library/react-native-skia)
+
+## Installation and Usage
+
+Find the matching version information in the release address of a third-party library: [@react-native-oh-tpl/react-native-skia Releases](https://github.com/react-native-oh-library/react-native-skia/releases).For older versions that are not published to npm, please refer to the [installation guide](/en/tgz-usage-en.md) to install the tgz package.
+
+Go to the project directory and execute the following instruction:
+
+
+
+
+
+#### **npm**
+
+```bash
+npm install @react-native-oh-tpl/react-native-skia
+```
+
+#### **yarn**
+
+```bash
+yarn add @react-native-oh-tpl/react-native-skia
+```
+
+
+
+The following code shows the basic use scenario of the repository:
+
+> [!WARNING] The name of the imported repository remains unchanged.
+
+```js
+import React from "react";
+import { Canvas, Circle, Group } from "@shopify/react-native-skia";
+
+const App = () => {
+ const width = 256;
+ const height = 256;
+ const r = width * 0.33;
+ return (
+
+ );
+};
+
+export default App;
+```
+
+## Link
+
+Currently, HarmonyOS does not support AutoLink. Therefore, you need to manually configure the linking.
+
+Open the `harmony` directory of the HarmonyOS project in DevEco Studio.
+
+### 1. Adding the overrides Field to oh-package.json5 File in the Root Directory of the Project
+
+```json
+{
+ ...
+ "overrides": {
+ "@rnoh/react-native-openharmony" : "./react_native_openharmony"
+ }
+}
+```
+
+### 2. Introducing Native Code
+
+Currently, two methods are available:
+
+Method 1 (recommended): Use the HAR file.
+
+> [!TIP] The HAR file is stored in the `harmony` directory in the installation path of the third-party library.
+
+Open `entry/oh-package.json5` file and add the following dependencies:
+
+```json
+"dependencies": {
+ "@rnoh/react-native-openharmony": "file:../react_native_openharmony",
+ "@react-native-oh-tpl/react-native-skia": "file:../../node_modules/@react-native-oh-tpl/react-native-skia/harmony/skia.har"
+ }
+```
+
+Click the `sync` button in the upper right corner.
+
+Alternatively, run the following instruction on the terminal:
+
+```bash
+cd entry
+ohpm install
+```
+
+Method 2: Directly link to the source code.
+
+> [!TIP] For details, see [Directly Linking Source Code](/zh-cn/link-source-code.md).
+
+### 3. Configuring CMakeLists and Introducing SkiaPackage
+
+Open `entry/src/main/cpp/CMakeLists.txt` and add the following code:
+
+```diff
+project(rnapp)
+cmake_minimum_required(VERSION 3.4.1)
+set(CMAKE_SKIP_BUILD_RPATH TRUE)
+set(RNOH_APP_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
+set(NODE_MODULES "${CMAKE_CURRENT_SOURCE_DIR}/../../../../../node_modules")
++ set(OH_MODULES "${CMAKE_CURRENT_SOURCE_DIR}/../../../oh_modules")
+set(RNOH_CPP_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../../../../../react-native-harmony/harmony/cpp")
+set(LOG_VERBOSITY_LEVEL 1)
+set(CMAKE_ASM_FLAGS "-Wno-error=unused-command-line-argument -Qunused-arguments")
+set(CMAKE_CXX_FLAGS "-fstack-protector-strong -Wl,-z,relro,-z,now,-z,noexecstack -s -fPIE -pie")
+set(WITH_HITRACE_SYSTRACE 1) # for other CMakeLists.txt files to use
+add_compile_definitions(WITH_HITRACE_SYSTRACE)
+
+add_subdirectory("${RNOH_CPP_DIR}" ./rn)
+
+# RNOH_BEGIN: manual_package_linking_1
+add_subdirectory("../../../../sample_package/src/main/cpp" ./sample-package)
++ add_subdirectory("${OH_MODULES}/@react-native-oh-tpl/react-native-skia/src/main/cpp" ./skia)
+# RNOH_END: manual_package_linking_1
+
+file(GLOB GENERATED_CPP_FILES "./generated/*.cpp")
+
+add_library(rnoh_app SHARED
+ ${GENERATED_CPP_FILES}
+ "./PackageProvider.cpp"
+ "${RNOH_CPP_DIR}/RNOHAppNapiBridge.cpp"
+)
+target_link_libraries(rnoh_app PUBLIC rnoh)
+
+# RNOH_BEGIN: manual_package_linking_2
+target_link_libraries(rnoh_app PUBLIC rnoh_sample_package)
++ target_link_libraries(rnoh_app PUBLIC rnoh_skia)
+# RNOH_END: manual_package_linking_2
+```
+
+Open `entry/src/main/cpp/PackageProvider.cpp` and add the following code:
+
+```diff
+#include "RNOH/PackageProvider.h"
+#include "generated/RNOHGeneratedPackage.h"
+#include "SamplePackage.h"
++ #include "SkiaPackage.h"
+
+using namespace rnoh;
+
+std::vector> PackageProvider::getPackages(Package::Context ctx) {
+ return {
+ std::make_shared(ctx),
+ std::make_shared(ctx),
++ std::make_shared(ctx),
+ };
+}
+```
+
+### 4. Introducing SkiaDomView Component to ArkTS
+
+Find `function buildCustomRNComponent()`, which is usually located in `entry/src/main/ets/pages/index.ets` or `entry/src/main/ets/rn/LoadBundle.ets`, and add the following code:
+
+```diff
+ ...
++ import { RNCSkiaDomView, SKIA_DOM_VIEW_TYPE } from '@react-native-oh-tpl/react-native-skia';
+
+@Builder
+export function buildCustomRNComponent(ctx: ComponentBuilderContext) {
+ ...
++ if (ctx.componentName === SKIA_DOM_VIEW_TYPE) {
++ RNCSkiaDomView({
++ ctx: ctx.rnComponentContext,
++ tag: ctx.tag
++ })
++ }
+...
+}
+...
+```
+
+> [!TIP] If the repository uses a mixed solution, the component name needs to be added.
+
+Find the constant `arkTsComponentNames` in `entry/src/main/ets/pages/index.ets` or `entry/src/main/ets/rn/LoadBundle.ets` and add the component name to the array.
+
+```diff
+const arkTsComponentNames: Array = [
+ SampleView.NAME,
+ GeneratedSampleView.NAME,
+ PropsDisplayer.NAME,
++ SKIA_DOM_VIEW_TYPE
+ ];
+```
+
+### 5. Introducing RNSkiaPackage to ArkTS
+
+Open the `entry/src/main/ets/RNPackagesFactory.ts` file and add the following code:
+
+```diff
+ ...
++ import {RNSkiaPackage} from '@react-native-oh-tpl/react-native-skia/ts';
+
+export function createRNPackages(ctx: RNPackageContext): RNPackage[] {
+ return [
+ new SamplePackage(ctx),
++ new RNSkiaPackage(ctx)
+ ];
+}
+```
+
+### 6. Running
+
+Click the `sync` button in the upper right corner.
+
+Alternatively, run the following instruction on the terminal:
+
+```bash
+cd entry
+ohpm install
+```
+
+Then build and run the code.
+
+## Constraints
+
+### Compatibility
+
+To use this repository, you need to use the correct React-Native and RNOH versions. In addition, you need to use DevEco Studio and the ROM on your phone.
+
+Check the release version information in the release address of the third-party library: [@react-native-oh-tpl/react-native-skia Releases](https://github.com/react-native-oh-library/react-native-skia/releases)
+
+[!TIP] [skia Official ducoments](https://shopify.github.io/react-native-skia/docs/getting-started/installation)
+
+[!TIP] To use this library, you need to configure [@react-native-oh-tpl/react-native-reanimated](https://gitee.com/react-native-oh-library/usage-docs/blob/master/en/react-native-reanimated.md)
+
+## Components
+
+### Canvas
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+>
+> | Name | Description | Type | Required | Platform | HarmonyOS Support |
+> | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------ | -------- | ----------- | ----------------- |
+> | style | View style | ViewStyle | no | android/ios | yes |
+> | ref | Reference to the SkiaView object | Ref | no | android/ios | yes |
+> | mode | By default, the canvas is only updated when the drawing tree or animation values change. With mode="continuous", the canvas will redraw on every frame | default \| continuous | no | android/ios | yes |
+> | onSize | Reanimated value to which the canvas size will be assigned | SharedValue | no | android/ios | yes |
+> | onLayout | Invoked on mount and on layout changes | NativeEvent | no | android/ios | yes |
+
+### Group
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------- | -------- | ----------- | ----------------- |
+| transform | [ Same API that's in React Native](https://reactnative.dev/docs/transforms). The default origin of the transformation is, however, different. It is the center object in React Native and the top-left corner in Skia. | Transform2d | no | android/ios | yes |
+| origin | Sets the origin of the transformation. This property is not inherited by its children. | Point | no | android/ios | yes |
+| clip | Rectangle, rounded rectangle, or Path to use to clip the children. | RectOrRRectOrPath | no | android/ios | yes |
+| invertClip | Invert the clipping region: parts outside the clipping region will be shown and, inside will be hidden. | boolean | no | android/ios | yes |
+| layer | Draws the children as a bitmap and applies the effects provided by the paint. | RefObject | no | android/ios | yes |
+
+### Path
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------- | -------- | ----------- | ----------------- |
+| path | Path to draw. Can be a string using the [SVG Path notation](https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths#line_commands) or an object created with `Skia.Path.Make()`. | SkPath`or`string | no | android/ios | yes |
+| start | Trims the start of the path. Value is in the range `[0, 1]` (default is 0). | number | no | android/ios | yes |
+| end | Trims the end of the path. Value is in the range `[0, 1]` (default is 1). | number | no | android/ios | yes |
+| stroke | Turns this path into the filled equivalent of the stroked path. This will fail if the path is a hairline. `StrokeOptions` describes how the stroked path should look. It contains three properties: `width`, `strokeMiterLimit` and, `precision` | StrokeOptions | no | android/ios | yes |
+
+### Rect
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | ------------------------ | ---------------- | -------- | ----------- | ----------------- |
+| x | X coordinate. | number | yes | android/ios | yes |
+| y | Y coordinate. | number | yes | android/ios | yes |
+| width | Width of the rectangle. | number | yes | android/ios | yes |
+| height | Height of the rectangle. | number | yes | android/ios | yes |
+
+### RoundedRect
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | -------------------------------------------------- | ---------------- | -------- | ----------- | ----------------- |
+| x | X coordinate. | SkPath`or`string | yes | android/ios | yes |
+| y | Y coordinate. | number | yes | android/ios | yes |
+| width | Width of the rectangle. | number | yes | android/ios | yes |
+| height | Height of the rectangle. | StrokeOptions | yes | android/ios | yes |
+| r | Corner radius. Defaults to `ry` if specified or 0. | number`or`Vector | no | android/ios | yes |
+
+### DiffRect
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ----- | ---------------- | ------------- | -------- | ----------- | ----------------- |
+| outer | Outer rectangle. | Rect \| RRect | yes | android/ios | yes |
+| inner | Inner rectangle. | Rect \| RRect | yes | android/ios | yes |
+
+### Line
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | ------------ | ----- | -------- | ----------- | ----------------- |
+| p1 | Start point. | Point | yes | android/ios | yes |
+| p2 | End point. | Point | yes | android/ios | yes |
+
+### Points
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | ------------------------------------------------------------ | --------- | -------- | ----------- | ----------------- |
+| points | Points to draw. | Point | yes | android/ios | yes |
+| mode | How should the points be connected. Can be `points` (no connection), `lines` (connect pairs of points), or `polygon` (connect lines). Default is `points`. | PointMode | yes | android/ios | yes |
+
+### Circle
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platfor | HarmonyOS Support |
+| ---- | ------------ | ------ | -------- | ----------- | ----------------- |
+| cx | Start point. | number | yes | android/ios | yes |
+| cy | End point. | number | yes | android/ios | yes |
+| r | Radius. | number | yes | android/ios | yes |
+
+### Oval
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platfor | HarmonyOS Support |
+| ------ | --------------------------------------- | ------ | -------- | ----------- | ----------------- |
+| x | X coordinate of the bounding rectangle. | number | yes | android/ios | yes |
+| y | Y coordinate of the bounding rectangle. | number | yes | android/ios | yes |
+| width | Width of the bounding rectangle. | number | yes | android/ios | yes |
+| height | Height of the bounding rectangle. | number | yes | android/ios | yes |
+
+### Atlas
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| ---------- | ----------------- | ------------------------------------------------------------------------- | -------- | ----------- | ----------------- |
+| image | `SkImage or null` | Altas: image containing the sprites. | yes | android/ios | yes |
+| sprites | `SkRect[]` | locations of sprites in atlas. | yes | android/ios | yes |
+| transforms | `RSXform[]` | Rotation/scale transforms to be applied for each sprite. | yes | android/ios | yes |
+| colors | `SkColor[]` | Optional. Color to blend the sprites with. | no | android/ios | yes |
+| blendMode | `BlendMode` | Optional. Blend mode used to combine sprites and colors together. | no | android/ios | yes |
+
+### Vertices
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| --------- | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ----------- | ----------------- |
+| vertices | `Point[]` | Vertices to draw | yes | android/ios | yes |
+| mode | `VertexMode` | Can be `triangles`, `trianglesStrip` or `triangleFan`. Default is `triangles` | no | android/ios | yes |
+| indices | `number[]` | Indices of the vertices that form the triangles. If not provided, the order of the vertices will be taken. Using this property enables you not to duplicate vertices. | no | android/ios | yes |
+| textures | `Point[]`. | [Texture mapping](https://en.wikipedia.org/wiki/Texture_mapping). The texture is the shader provided by the paint. | yes | android/ios | yes |
+| colors | `string[]` | Optional colors to be associated to each vertex | no | android/ios | yes |
+| blendMode | `BlendMode` | If `colors` is provided, colors are blended with the paint using the blend mode. Default is `dstOver` if colors are provided, `srcOver` if not. | no | android/ios | yes |
+
+### Patch
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| --------- | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ----------- | ----------------- |
+| patch | `CubicBezier[4]` | Specifies four cubic Bezier starting at the top-left corner, in clockwise order, sharing every fourth point. The last cubic Bezier ends at the first point. | yes | android/ios | yes |
+| textures | `Point[]`. | [Texture mapping](https://en.wikipedia.org/wiki/Texture_mapping). The texture is the shader provided by the paint | yes | android/ios | yes |
+| colors | `string[]` | Optional colors to be associated to each corner | no | android/ios | yes |
+| blendMode | `BlendMode` | If `colors` is provided, colors are blended with the paint using the blend mode. Default is `dstOver` if colors are provided, `srcOver` if not | no | android/ios | yes |
+
+### Picture
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| ------- | --------- | ----------------- | -------- | ----------- | ----------------- |
+| picture | SkPicture | Picture to render | yes | android/ios | yes |
+
+### Box
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| ---- | ----------------- | ------------------------- | -------- | ----------- | ----------------- |
+| box | SkRRect \| SkRect | The destination rectangle | yes | android/ios | yes |
+
+### BoxShadow
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| ------ | ------- | ----------------------------------------------- | -------- | ----------- | ----------------- |
+| dx | number | The X offset of the shadow. | no | android/ios | yes |
+| dy | number | The Y offset of the shadow. | no | android/ios | yes |
+| spread | number | Optional colors to be associated to each corner | no | android/ios | yes |
+| blur | number | The blur radius for the shadow | yes | android/ios | yes |
+| color | Color | The color of the drop shadow | no | android/ios | yes |
+| inner | boolean | Shadows are drawn within the input content | no | android/ios | yes |
+
+### Shader
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| -------- | ------------------------------------------------------------ | ----------------------------- | -------- | ----------- | ----------------- |
+| source | RuntimeEffect | Compiled shaders | yes | android/ios | yes |
+| uniforms | { [name: string]: number \| Vector \| Vector[] \| number[] \| number[][] } | uniform values | yes | android/ios | yes |
+| children | Shader | Shaders to be used as uniform | yes | android/ios | yes |
+
+### ImageShader
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | android/ios | HarmonyOS Support |
+| --------- | ------------------------------------------------------------ | ----------------- | -------- | ----------- | ----------------- |
+| image | Image instance. | SkImage | yes | android/ios | yes |
+| tx | Can be `clamp`, `repeat`, `mirror`, or `decal`. | TileMode shaders | no | android/ios | yes |
+| ty | Can be `clamp`, `repeat`, `mirror`, or `decal`. | TileMode values | no | android/ios | yes |
+| fm | Can be `linear` or `nearest`. | FilterMode values | no | android/ios | yes |
+| mm | Can be `none` or `last`. | MipmapMode | no | android/ios | yes |
+| fit | Calculate the transformation matrix to fit the rectangle defined by `fitRect`. | Fit | no | android/ios | yes |
+| rect | The destination rectangle to calculate the transformation matrix via the `fit` property. | SkRect | no | android/ios | yes |
+| transform | The origin property is a helper to set the origin of the transformation. This property is not inherited by its children. | Transforms2d | no | android/ios | yes |
+
+### Gradients Public properties
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------ | -------- | ----------- | ----------------- |
+| colors | Colors to be distributed between start and end. | string[] | yes | android/ios | yes |
+| positions | The relative positions of colors. If supplied, it must be of the same length as colors. | number[] | no | android/ios | yes |
+| mode | Can be `clamp`, `repeat`, `mirror`, or `decal`. | TileMode | no | android/ios | yes |
+| flags | By default, gradients will interpolate their colors in unpremultiplied space and then premultiply each of the results. By setting this to 1, the gradients will premultiply their colors first and then interpolate between them. | number | no | android/ios | yes |
+| transform | The transform property is identical to its [homonymous property in React Native](https://reactnative.dev/docs/transforms) except for one significant difference: in React Native, the origin of transformation is the center of the object, whereas it is the top-left position of the object in Skia. | Transforms2d | no | android/ios | yes |
+
+### LinearGradient
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ----- | ------------------------------- | ----- | -------- | ----------- | ----------------- |
+| start | Start position of the gradient. | Point | yes | android/ios | yes |
+| end | End position of the gradient. | Point | yes | android/ios | yes |
+
+### RadialGradient
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | ----------------------- | ------ | -------- | ----------- | ----------------- |
+| c | Center of the gradient. | Point | yes | android/ios | yes |
+| r | Radius of the gradient. | number | yes | android/ios | yes |
+
+### TwoPointConicalGradient
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | --------------------------- | ------ | -------- | ----------- | ----------------- |
+| start | Center of the start circle. | Point | yes | android/ios | yes |
+| startR | Radius of the start circle. | number | yes | android/ios | yes |
+| end | Center of the end circle. | number | yes | android/ios | yes |
+| endR | Radius of the end circle. | number | yes | android/ios | yes |
+
+### SweepGradient
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ----- | -------------------------------------- | ------ | -------- | ----------- | ----------------- |
+| c | Center of the gradient. | Point | yes | android/ios | yes |
+| start | Start angle in degrees (default is 0). | number | no | android/ios | yes |
+| end | End angle in degrees (default is 360). | number | no | android/ios | yes |
+
+### FractalNoise
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---------- | ------------------------------------------------------------------------------------------------------------------------------ | ------ | -------- | ----------- | ----------------- |
+| freqX | base frequency in the X direction; range [0.0, 1.0] | number | yes | android/ios | yes |
+| freqY | base frequency in the Y direction; range [0.0, 1.0] | number | yes | android/ios | yes |
+| octaves | octaves | number | no | android/ios | yes |
+| seed | seed | number | no | android/ios | yes |
+| tileWidth | if this and `tileHeight` are non-zero, the frequencies will be modified so that the noise will be tileable for the given size. | number | no | android/ios | yes |
+| tileHeight | if this and `tileWidth` are non-zero, the frequencies will be modified so that the noise will be tileable for the given size. | number | no | android/ios | yes |
+
+### Turbulence
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---------- | ------------------------------------------------------------------------------------------------------------------------------ | ------ | -------- | ----------- | ----------------- |
+| freqX | base frequency in the X direction; range [0.0, 1.0] | number | yes | android/ios | yes |
+| freqY | base frequency in the Y direction; range [0.0, 1.0] | number | yes | android/ios | yes |
+| octaves | octaves | number | no | android/ios | yes |
+| seed | seed | number | no | android/ios | yes |
+| tileWidth | if this and `tileHeight` are non-zero, the frequencies will be modified so that the noise will be tileable for the given size. | number | no | android/ios | yes |
+| tileHeight | if this and `tileWidth` are non-zero, the frequencies will be modified so that the noise will be tileable for the given size. | number | no | android/ios | yes |
+
+### Blend
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | -------- | ----------- | ----------------- |
+| mode | Sets the blend mode that is, the mode used to combine source color with destination color. The following values are available: `clear`, `src`, `dst`, `srcOver`, `dstOver`, `srcIn`, `dstIn`, `srcOut`, `dstOut`, `srcATop`, `dstATop`, `xor`, `plus`, `modulate`, `screen`, `overlay`, `darken`, `lighten`, `colorDodge`, `colorBurn`, `hardLight`, `softLight`, `difference`, `exclusion`, `multiply`, `hue`, `saturation`, `color`, `luminosity`. | BlendMode | yes | android/ios | yes |
+| children | Shaders to blend | ReactNode | yes | android/ios | yes |
+
+### ColorShader
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ----- | ----------- | ------ | -------- | ----------- | ----------------- |
+| color | Color | string | yes | android/ios | yes |
+
+### DiscretePathEffect
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| --------- | ------------------------------------------------------------- | ---------- | -------- | ----------- | ----------------- |
+| length | length of the subsegments. | number | yes | android/ios | yes |
+| deviation | limit of the movement of the endpoints. | number | yes | android/ios | yes |
+| seed | modifies the randomness. See SkDiscretePathEffect.h for more. | number | no | android/ios | yes |
+| children | Optional path effect to apply. | PathEffect | no | android/ios | yes |
+
+### DashPathEffect
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| --------- | --------------------------------------------------------------------------------------------------------------------------------------- | ---------- | -------- | ----------- | ----------------- |
+| intervals | even number of entries with even indices specifying the length of the "on" intervals, and the odd index specifying the length of "off". | number[] | yes | android/ios | yes |
+| phase | offset into the intervals array. Defaults to 0. | number | no | android/ios | yes |
+| children | Optional path effect to apply. | PathEffect | no | android/ios | yes |
+
+### CornerPathEffect
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------ | ---------- | -------- | ----------- | ----------------- |
+| r | Radius. | number | yes | android/ios | yes |
+| children | Optional path effect to apply. | PathEffect | no | android/ios | yes |
+
+### Path1DPathEffect
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------------------------------------------- | ----------------- | -------- | ----------- | ----------------- |
+| path | The path to replicate (dash) | PathDef | yes | android/ios | yes |
+| advance | The space between instances of path | number | yes | android/ios | yes |
+| phase | distance (mod advance) along the path for its initial position | number | yes | android/ios | yes |
+| style | how to transform path at each point (based on the current position and tangent) | Path1DEffectStyle | yes | android/ios | yes |
+| children | Optional path effect to apply. | PathEffect | no | android/ios | yes |
+
+### Path2DPathEffect
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ----------------------------- | ---------- | -------- | ----------- | ----------------- |
+| path | The path to use | PathDef | yes | android/ios | yes |
+| matrix | Matrix to be applied | SkMatrix | yes | android/ios | yes |
+| children | Optional path effect to apply | PathEffect | no | android/ios | yes |
+
+### Line2DPathEffect
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ----------------------------- | ---------- | -------- | ----------- | ----------------- |
+| width | The path to use | PathDef | yes | android/ios | yes |
+| matrix | Matrix to be applied | IMatrix | yes | android/ios | yes |
+| children | Optional path effect to apply | PathEffect | no | android/ios | yes |
+
+### Shadow
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---------- | ------------------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| dx | The X offset of the shadow. | number | yes | android/ios | yes |
+| dy | The Y offset of the shadow. | number | no | android/ios | yes |
+| blur | The blur radius for the shadow | number | no | android/ios | yes |
+| color | The color of the drop shadow | Color | no | android/ios | yes |
+| inner | Shadows are drawn within the input content | boolean | no | android/ios | yes |
+| shadowOnly | If true, the result does not include the input content | boolean | no | android/ios | yes |
+| children | Optional image filter to be applied first | ImageFilter | no | android/ios | yes |
+
+### Blur
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------------------------ | ---------------- | -------- | ----------- | ----------------- |
+| blur | The Gaussian sigma blur value | number`or`Vector | yes | android/ios | yes |
+| mode | `mirror`, `repeat`, `clamp`, or `decal` (default is `decal`). | TileMode | no | android/ios | yes |
+| children | Optional image filter to be applied first. | ImageFilter | no | android/ios | yes |
+
+### DisplacementMap
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------------------------ | ------------ | -------- | ----------- | ----------------- |
+| channelX | Color channel to be used along the X axis. Possible values are `r`, `g`, `b`, or `a` | ColorChannel | yes | android/ios | yes |
+| channelY | Color channel to be used along the Y axis. Possible values are `r`, `g`, `b`, or `a` | ColorChannel | no | android/ios | yes |
+| scale | Displacement scale factor to be used | number | no | android/ios | yes |
+| children | Optional image filter to be applied first | ImageFilter | no | android/ios | yes |
+
+### Offset
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| x | Offset along the X axis. | number | yes | android/ios | yes |
+| y | Offset along the Y axis. | number | yes | android/ios | yes |
+| children | Optional image filter to be applied first. | ImageFilter | no | android/ios | yes |
+
+### Morphology
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------------------------ | ---------------- | -------- | ----------- | ----------------- |
+| operator | whether to erode (i.e., thin) or dilate (fatten). Default is dilate | erode`or`dilate | yes | android/ios | yes |
+| radius | Radius of the effect. | number`or`Vector | yes | android/ios | yes |
+| children | Optional image filter to be applied first. | ImageFilter | no | android/ios | yes |
+
+### RuntimeShader
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | --------------- | -------- | ----------- | ----------------- |
+| source | Shader to use as an image filter | SkRuntimeEffect | yes | android/ios | yes |
+| children | Optional image filter to be applied first. | ImageFilter | no | android/ios | yes |
+
+### BlurMask
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---------- | ------------------------------------------------------------ | --------- | -------- | ----------- | ----------------- |
+| blur | Standard deviation of the Gaussian blur. Must be > 0. | number | yes | android/ios | yes |
+| style | Can be `normal`, `solid`, `outer`, or `inner` (default is `normal`). | BlurStyle | no | android/ios | yes |
+| respectCTM | if true the blur's sigma is modified by the CTM (default is `false`). | bool | no | android/ios | yes |
+
+### ColorMatrix
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| matrix | Color Matrix (5x4) | number[] | yes | android/ios | yes |
+| children | Optional color filter to be applied first. | ColorFilter | no | android/ios | yes |
+
+### BlendColor
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| color | Color | Color | yes | android/ios | yes |
+| mode | Sets the blend mode that is, the mode used to combine source color with destination color | BlendMode | yes | android/ios | yes |
+| children | Optional color filter to be applied first. | ColorFilter | no | android/ios | yes |
+
+### Lerp
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| t | Value between 0 and 1. | number | yes | android/ios | yes |
+| children | Optional color filter to be applied first. | ColorFilter | yes | android/ios | yes |
+
+### LinearToSRGBGamma
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| children | Optional color filter to be applied first. | ColorFilter | no | android/ios | yes |
+
+### SRGBToLinearGamma
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| children | Optional color filter to be applied first. | ColorFilter | no | android/ios | yes |
+
+### Mask
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ---------------------------------------------------- | ------------------ | -------- | ----------- | ----------------- |
+| mode | Is it a luminance or alpha mask (default is `alpha`) | alpha \| luminance | no | android/ios | yes |
+| clip | clip the mask so it doesn't exceed the content | boolean | no | android/ios | yes |
+| mask | ReactNode | ReactNode[] | yes | android/ios | yes |
+| children | ReactNode | ReactNode[] | yes | android/ios | yes |
+
+### Image
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | -------- | ----------- | ----------------- |
+| image | An instance of the image. | SkImage | yes | android/ios | yes |
+| x | The left position of the destination image. | number | yes | android/ios | yes |
+| y | The top position of the destination image. | number | yes | android/ios | yes |
+| width | The width of the destination image. | number | yes | android/ios | yes |
+| height | The height of the destination image. | number | yes | android/ios | yes |
+| fit | The method used to fit the image into the rectangle. Values can be `contain`, `fill`, `cover`, `fitHeight`, `fitWidth`, `scaleDown`, or `none` (the default is `contain`). | Fit | no | android/ios | yes |
+
+### ImageSVG
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | ------------------------------------------- | ------ | -------- | ----------- | ----------------- |
+| svg | SVG Image. | SVG | yes | android/ios | yes |
+| x | The left position of the destination image. | number | no | android/ios | yes |
+| y | The top position of the destination image. | number | no | android/ios | yes |
+| width | The width of the destination image. | number | no | android/ios | yes |
+| height | The height of the destination image. | number | no | android/ios | yes |
+
+### Paragraph
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| --------- | --------------------------------------------- | ----------- | -------- | ----------- | ----------------- |
+| paragraph | text paragraph | skParagraph | yes | android/ios | yes |
+| x | Left position of the text (default is 0) | number | yes | android/ios | yes |
+| y | Bottom position the text (default is 0, the ) | number | yes | android/ios | yes |
+| width | The width of the paragraph. | number | yes | android/ios | yes |
+
+### Text
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | --------------------------------------------- | ------ | -------- | ----------- | ----------------- |
+| text | Text to draw | string | yes | android/ios | yes |
+| x | Left position of the text (default is 0) | number | yes | android/ios | yes |
+| y | Bottom position the text (default is 0, the ) | number | yes | android/ios | yes |
+| font | Font to use | SkFont | yes | android/ios | yes |
+
+### Glyphs
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | ---------------------------------------------------------- | ------- | -------- | ----------- | ----------------- |
+| glyphs | Glyphs to draw | Glyph[] | yes | android/ios | yes |
+| x | x coordinate of the origin of the entire run. Default is 0 | number | no | android/ios | yes |
+| y | y coordinate of the origin of the entire run. Default is 0 | number | no | android/ios | yes |
+| font | Font to use | SkFont | yes | android/ios | yes |
+
+### TextPath
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | -------- | ----------- | ----------------- |
+| path | Path to draw. Can be a string using the [SVG Path notation](https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths#line_commands) or an object created with `Skia.Path.Make()` | Path \| string | yes | android/ios | yes |
+| text | Text to draw | string | yes | android/ios | yes |
+| font | Font to use | SkFont | yes | android/ios | yes |
+
+### TextBlob
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | ---------------------------------------------------------- | -------- | -------- | ----------- | ----------------- |
+| blob | Text blob | TextBlob | yes | android/ios | yes |
+| x | x coordinate of the origin of the entire run. Default is 0 | number | no | android/ios | yes |
+| y | y coordinate of the origin of the entire run. Default is 0 | number | no | android/ios | yes |
+
+### BackdropFilter
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | ------------------------------------------------------------ | ------------------------ | -------- | ----------- | ----------------- |
+| filter | Applies an image filter to the area behind the canvas or behind a defined clipping mask | ReactNode \| ReactNode[] | yes | android/ios | yes |
+
+### BackdropBlur
+
+#### Properties
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | ----------- | ------ | -------- | ----------- | ----------------- |
+| blur | Blur radius | number | yes | android/ios | yes |
+
+## RNSkiaModule API
+
+> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
+
+> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------- | ---------------- | -------- | -------- | ----------- | ----------------- |
+| install | initialized skia | function | yes | android/ios | yes |
+
+## Known Issues
+
+- [x] Text component can't be used Issue: [issue#Text is currently not supported](https://github.com/react-native-oh-library/react-native-skia/issues/5)
+- [ ] Video component can't be used Issue: [issue#Video is currently not supported](https://github.com/react-native-oh-library/react-native-skia/issues/6)
+- [x] Image component can't be used Issue: [issue#Image is currently not supported](https://github.com/react-native-oh-library/react-native-skia/issues/7)
+
+## Others
+
+## License
+
+This project is licensed under [The MIT License (MIT)](https://github.com/Shopify/react-native-skia/blob/main/LICENSE.md).
diff --git a/doc/zh-cn.md b/doc/zh-cn.md
new file mode 100644
index 0000000000..1d06a7ce1f
--- /dev/null
+++ b/doc/zh-cn.md
@@ -0,0 +1,1068 @@
+模板版本:v0.2.2
+
+
+
react-native-skia
+
+
+
+
+
+
+
+
+
+
+
+> [!TIP] [Github 地址](https://github.com/react-native-oh-library/react-native-skia)
+
+## 安装与使用
+
+请到三方库的 Releases 发布地址查看配套的版本信息:[@react-native-oh-tpl/react-native-skia Releases](https://github.com/react-native-oh-library/react-native-skia/releases) 。对于未发布到npm的旧版本,请参考[安装指南](/zh-cn/tgz-usage.md)安装tgz包。
+
+进入到工程目录并输入以下命令:
+
+
+
+#### **npm**
+
+```bash
+npm install @react-native-oh-tpl/react-native-skia
+```
+
+#### **yarn**
+
+```bash
+yarn add @react-native-oh-tpl/react-native-skia
+```
+
+
+
+下面的代码展示了这个库的基本使用场景:
+
+> [!WARNING] 使用时 import 的库名不变。
+
+```js
+import React from "react";
+import { Canvas, Circle, Group } from "@shopify/react-native-skia";
+
+const App = () => {
+ const width = 256;
+ const height = 256;
+ const r = width * 0.33;
+ return (
+
+ );
+};
+
+export default App;
+```
+
+## Link
+
+目前 HarmonyOS 暂不支持 AutoLink,所以 Link 步骤需要手动配置。
+
+首先需要使用 DevEco Studio 打开项目里的 HarmonyOS 工程 `harmony`
+
+### 1.在工程根目录的 `oh-package.json5` 添加 overrides 字段
+
+```json
+{
+ ...
+ "overrides": {
+ "@rnoh/react-native-openharmony" : "./react_native_openharmony"
+ }
+}
+```
+
+### 2.引入原生端代码
+
+目前有两种方法:
+
+1. 通过 har 包引入(在 IDE 完善相关功能后该方法会被遗弃,目前首选此方法);
+2. 直接链接源码。
+
+方法一:通过 har 包引入(推荐)
+
+> [!TIP] har 包位于三方库安装路径的 `harmony` 文件夹下。
+
+打开 `entry/oh-package.json5`,添加以下依赖
+
+```json
+"dependencies": {
+ "@rnoh/react-native-openharmony": "file:../react_native_openharmony",
+ "@react-native-oh-tpl/react-native-skia": "file:../../node_modules/@react-native-oh-tpl/react-native-skia/harmony/skia.har"
+ }
+```
+
+点击右上角的 `sync` 按钮
+
+或者在终端执行:
+
+```bash
+cd entry
+ohpm install
+```
+
+方法二:直接链接源码
+
+> [!TIP] 如需使用直接链接源码,请参考[直接链接源码说明](/zh-cn/link-source-code.md)
+
+### 3.配置 CMakeLists 和引入 SkiaPackage
+
+打开 `entry/src/main/cpp/CMakeLists.txt`,添加:
+
+```diff
+project(rnapp)
+cmake_minimum_required(VERSION 3.4.1)
+set(CMAKE_SKIP_BUILD_RPATH TRUE)
+set(RNOH_APP_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
+set(NODE_MODULES "${CMAKE_CURRENT_SOURCE_DIR}/../../../../../node_modules")
++ set(OH_MODULES "${CMAKE_CURRENT_SOURCE_DIR}/../../../oh_modules")
+set(RNOH_CPP_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../../../../../react-native-harmony/harmony/cpp")
+set(LOG_VERBOSITY_LEVEL 1)
+set(CMAKE_ASM_FLAGS "-Wno-error=unused-command-line-argument -Qunused-arguments")
+set(CMAKE_CXX_FLAGS "-fstack-protector-strong -Wl,-z,relro,-z,now,-z,noexecstack -s -fPIE -pie")
+set(WITH_HITRACE_SYSTRACE 1) # for other CMakeLists.txt files to use
+add_compile_definitions(WITH_HITRACE_SYSTRACE)
+
+add_subdirectory("${RNOH_CPP_DIR}" ./rn)
+
+# RNOH_BEGIN: manual_package_linking_1
+add_subdirectory("../../../../sample_package/src/main/cpp" ./sample-package)
++ add_subdirectory("${OH_MODULES}/@react-native-oh-tpl/react-native-skia/src/main/cpp" ./skia)
+# RNOH_END: manual_package_linking_1
+
+file(GLOB GENERATED_CPP_FILES "./generated/*.cpp")
+
+add_library(rnoh_app SHARED
+ ${GENERATED_CPP_FILES}
+ "./PackageProvider.cpp"
+ "${RNOH_CPP_DIR}/RNOHAppNapiBridge.cpp"
+)
+target_link_libraries(rnoh_app PUBLIC rnoh)
+
+# RNOH_BEGIN: manual_package_linking_2
+target_link_libraries(rnoh_app PUBLIC rnoh_sample_package)
++ target_link_libraries(rnoh_app PUBLIC rnoh_skia)
+# RNOH_END: manual_package_linking_2
+```
+
+打开 `entry/src/main/cpp/PackageProvider.cpp`,添加:
+
+```diff
+#include "RNOH/PackageProvider.h"
+#include "generated/RNOHGeneratedPackage.h"
+#include "SamplePackage.h"
++ #include "SkiaPackage.h"
+
+using namespace rnoh;
+
+std::vector> PackageProvider::getPackages(Package::Context ctx) {
+ return {
+ std::make_shared(ctx),
+ std::make_shared(ctx),
++ std::make_shared(ctx),
+ };
+}
+```
+
+### 4.在 ArkTs 侧引入 SkiaDomView 组件
+
+找到 `function buildCustomRNComponent()`,一般位于 `entry/src/main/ets/pages/index.ets` 或 `entry/src/main/ets/rn/LoadBundle.ets`,添加:
+
+```diff
+ ...
++ import { RNCSkiaDomView, SKIA_DOM_VIEW_TYPE } from '@react-native-oh-tpl/react-native-skia';
+
+@Builder
+export function buildCustomRNComponent(ctx: ComponentBuilderContext) {
+ ...
++ if (ctx.componentName === SKIA_DOM_VIEW_TYPE) {
++ RNCSkiaDomView({
++ ctx: ctx.rnComponentContext,
++ tag: ctx.tag
++ })
++ }
+...
+}
+...
+```
+
+> [!TIP] 本库使用了混合方案,需要添加组件名。
+
+在`entry/src/main/ets/pages/index.ets` 或 `entry/src/main/ets/rn/LoadBundle.ets` 找到常量 `arkTsComponentNames` 在其数组里添加组件名
+
+```diff
+const arkTsComponentNames: Array = [
+ SampleView.NAME,
+ GeneratedSampleView.NAME,
+ PropsDisplayer.NAME,
++ SKIA_DOM_VIEW_TYPE
+ ];
+```
+
+### 5.在 ArkTs 侧引入 RNSkiaPackage
+
+打开 `entry/src/main/ets/RNPackagesFactory.ts`,添加:
+
+```diff
+ ...
++ import {RNSkiaPackage} from '@react-native-oh-tpl/react-native-skia/ts';
+
+export function createRNPackages(ctx: RNPackageContext): RNPackage[] {
+ return [
+ new SamplePackage(ctx),
++ new RNSkiaPackage(ctx)
+ ];
+}
+```
+
+### 6.运行
+
+点击右上角的 `sync` 按钮
+
+或者在终端执行:
+
+```bash
+cd entry
+ohpm install
+```
+
+然后编译、运行即可。
+
+## 约束与限制
+
+### 兼容性
+
+要使用此库,需要使用正确的 React-Native 和 RNOH 版本。另外,还需要使用配套的 DevEco Studio 和 手机 ROM。
+
+请到三方库相应的 Releases 发布地址查看 Release 配套的版本信息:[@react-native-oh-tpl/react-native-skia Releases](https://github.com/react-native-oh-library/react-native-skia/releases)
+
+> [!TIP] [skia 官方文档](https://shopify.github.io/react-native-skia/docs/getting-started/installation)
+
+> [!TIP] 使用此库需要配置 [@react-native-oh-tpl/react-native-reanimated](https://gitee.com/react-native-oh-library/usage-docs/blob/master/zh-cn/react-native-reanimated.md)
+
+## 组件
+
+### Canvas
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------ | -------- | ----------- | ----------------- |
+| style | View style | ViewStyle | no | android/ios | yes |
+| ref | Reference to the SkiaView object | Ref | no | android/ios | yes |
+| mode | By default, the canvas is only updated when the drawing tree or animation values change. With mode="continuous", the canvas will redraw on every frame | default \| continuous | no | android/ios | yes |
+| onSize | Reanimated value to which the canvas size will be assigned | SharedValue | no | android/ios | yes |
+| onLayout | Invoked on mount and on layout changes | NativeEvent | no | android/ios | yes |
+
+### Group
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------- | -------- | ----------- | ----------------- |
+| transform | [ Same API that's in React Native](https://reactnative.dev/docs/transforms). The default origin of the transformation is, however, different. It is the center object in React Native and the top-left corner in Skia. | Transform2d | no | android/ios | yes |
+| origin | Sets the origin of the transformation. This property is not inherited by its children. | Point | no | android/ios | yes |
+| clip | Rectangle, rounded rectangle, or Path to use to clip the children. | RectOrRRectOrPath | no | android/ios | yes |
+| invertClip | Invert the clipping region: parts outside the clipping region will be shown and, inside will be hidden. | boolean | no | android/ios | yes |
+| layer | Draws the children as a bitmap and applies the effects provided by the paint. | RefObject | no | android/ios | yes |
+
+### Path
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------- | -------- | ----------- | ----------------- |
+| path | Path to draw. Can be a string using the [SVG Path notation](https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths#line_commands) or an object created with `Skia.Path.Make()`. | SkPath`or`string | no | android/ios | yes |
+| start | Trims the start of the path. Value is in the range `[0, 1]` (default is 0). | number | no | android/ios | yes |
+| end | Trims the end of the path. Value is in the range `[0, 1]` (default is 1). | number | no | android/ios | yes |
+| stroke | Turns this path into the filled equivalent of the stroked path. This will fail if the path is a hairline. `StrokeOptions` describes how the stroked path should look. It contains three properties: `width`, `strokeMiterLimit` and, `precision` | StrokeOptions | no | android/ios | yes |
+
+### Rect
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | ------------------------ | ------ | -------- | ----------- | ----------------- |
+| x | X coordinate. | number | yes | android/ios | yes |
+| y | Y coordinate. | number | yes | android/ios | yes |
+| width | Width of the rectangle. | number | yes | android/ios | yes |
+| height | Height of the rectangle. | number | yes | android/ios | yes |
+
+### RoundedRect
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | -------------------------------------------------- | ---------------- | -------- | ----------- | ----------------- |
+| x | X coordinate. | SkPath`or`string | yes | android/ios | yes |
+| y | Y coordinate. | number | yes | android/ios | yes |
+| width | Width of the rectangle. | number | yes | android/ios | yes |
+| height | Height of the rectangle. | StrokeOptions | yes | android/ios | yes |
+| r | Corner radius. Defaults to `ry` if specified or 0. | number`or`Vector | no | android/ios | yes |
+
+### DiffRect
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ----- | ---------------- | ------------- | -------- | ----------- | ----------------- |
+| outer | Outer rectangle. | Rect \| RRect | yes | android/ios | yes |
+| inner | Inner rectangle. | Rect \| RRect | yes | android/ios | yes |
+
+### Line
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | ------------ | ----- | -------- | ----------- | ----------------- |
+| p1 | Start point. | Point | yes | android/ios | yes |
+| p2 | End point. | Point | yes | android/ios | yes |
+
+### Points
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | -------- | ----------- | ----------------- |
+| points | Points to draw. | Point | yes | android/ios | yes |
+| mode | How should the points be connected. Can be `points` (no connection), `lines` (connect pairs of points), or `polygon` (connect lines). Default is `points`. | PointMode | yes | android/ios | yes |
+
+### Circle
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platfor | HarmonyOS Support |
+| ---- | ------------ | ------ | -------- | ----------- | ----------------- |
+| cx | Start point. | number | yes | android/ios | yes |
+| cy | End point. | number | yes | android/ios | yes |
+| r | Radius. | number | yes | android/ios | yes |
+
+### Oval
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platfor | HarmonyOS Support |
+| ------ | --------------------------------------- | ------ | -------- | ----------- | ----------------- |
+| x | X coordinate of the bounding rectangle. | number | yes | android/ios | yes |
+| y | Y coordinate of the bounding rectangle. | number | yes | android/ios | yes |
+| width | Width of the bounding rectangle. | number | yes | android/ios | yes |
+| height | Height of the bounding rectangle. | number | yes | android/ios | yes |
+
+### Atlas
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| ---------- | ----------------- | ----------------------------------------------------------------- | -------- | ----------- | ----------------- |
+| image | `SkImage or null` | Altas: image containing the sprites. | yes | android/ios | yes |
+| sprites | `SkRect[]` | locations of sprites in atlas. | yes | android/ios | yes |
+| transforms | `RSXform[]` | Rotation/scale transforms to be applied for each sprite. | yes | android/ios | yes |
+| colors | `SkColor[]` | Optional. Color to blend the sprites with. | no | android/ios | yes |
+| blendMode | `BlendMode` | Optional. Blend mode used to combine sprites and colors together. | no | android/ios | yes |
+
+### Vertices
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| --------- | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ----------- | ----------------- |
+| vertices | `Point[]` | Vertices to draw | yes | android/ios | yes |
+| mode | `VertexMode` | Can be `triangles`, `trianglesStrip` or `triangleFan`. Default is `triangles` | no | android/ios | yes |
+| indices | `number[]` | Indices of the vertices that form the triangles. If not provided, the order of the vertices will be taken. Using this property enables you not to duplicate vertices. | no | android/ios | yes |
+| textures | `Point[]`. | [Texture mapping](https://en.wikipedia.org/wiki/Texture_mapping). The texture is the shader provided by the paint. | yes | android/ios | yes |
+| colors | `string[]` | Optional colors to be associated to each vertex | no | android/ios | yes |
+| blendMode | `BlendMode` | If `colors` is provided, colors are blended with the paint using the blend mode. Default is `dstOver` if colors are provided, `srcOver` if not. | no | android/ios | yes |
+
+### Patch
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| --------- | ---------------- | ------------------------------------------------------------ | -------- | ----------- | ----------------- |
+| patch | `CubicBezier[4]` | Specifies four cubic Bezier starting at the top-left corner, in clockwise order, sharing every fourth point. The last cubic Bezier ends at the first point. | yes | android/ios | yes |
+| textures | `Point[]`. | [Texture mapping](https://en.wikipedia.org/wiki/Texture_mapping). The texture is the shader provided by the paint | yes | android/ios | yes |
+| colors | `string[]` | Optional colors to be associated to each corner | no | android/ios | yes |
+| blendMode | `BlendMode` | If `colors` is provided, colors are blended with the paint using the blend mode. Default is `dstOver` if colors are provided, `srcOver` if not | no | android/ios | yes |
+
+### Picture
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| ------- | --------- | ----------------- | -------- | ----------- | ----------------- |
+| picture | SkPicture | Picture to render | yes | android/ios | yes |
+
+### Box
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| ---- | ----------------- | ------------------------- | -------- | ----------- | ----------------- |
+| box | SkRRect \| SkRect | The destination rectangle | yes | android/ios | yes |
+
+### BoxShadow
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| ------ | ------- | ----------------------------------------------- | -------- | ----------- | ----------------- |
+| dx | number | The X offset of the shadow. | no | android/ios | yes |
+| dy | number | The Y offset of the shadow. | no | android/ios | yes |
+| spread | number | Optional colors to be associated to each corner | no | android/ios | yes |
+| blur | number | The blur radius for the shadow | yes | android/ios | yes |
+| color | Color | The color of the drop shadow | no | android/ios | yes |
+| inner | boolean | Shadows are drawn within the input content | no | android/ios | yes |
+
+### Shader
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Type | Description | Required | android/ios | HarmonyOS Support |
+| -------- | -------------------------------------------------------------------------- | ----------------------------- | -------- | ----------- | ----------------- |
+| source | RuntimeEffect | Compiled shaders | yes | android/ios | yes |
+| uniforms | { [name: string]: number \| Vector \| Vector[] \| number[] \| number[][] } | uniform values | yes | android/ios | yes |
+| children | Shader | Shaders to be used as uniform | yes | android/ios | yes |
+
+### ImageShader
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | android/ios | HarmonyOS Support |
+| --------- | ------------------------------------------------------------------------------------------------------------------------ | ----------------- | -------- | ----------- | ----------------- |
+| image | Image instance. | SkImage | yes | android/ios | yes |
+| tx | Can be `clamp`, `repeat`, `mirror`, or `decal`. | TileMode shaders | no | android/ios | yes |
+| ty | Can be `clamp`, `repeat`, `mirror`, or `decal`. | TileMode values | no | android/ios | yes |
+| fm | Can be `linear` or `nearest`. | FilterMode values | no | android/ios | yes |
+| mm | Can be `none` or `last`. | MipmapMode | no | android/ios | yes |
+| fit | Calculate the transformation matrix to fit the rectangle defined by `fitRect`. | Fit | no | android/ios | yes |
+| rect | The destination rectangle to calculate the transformation matrix via the `fit` property. | SkRect | no | android/ios | yes |
+| transform | The origin property is a helper to set the origin of the transformation. This property is not inherited by its children. | Transforms2d | no | android/ios | yes |
+
+### Gradients 公共属性
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------ | -------- | ----------- | ----------------- |
+| colors | Colors to be distributed between start and end. | string[] | yes | android/ios | yes |
+| positions | The relative positions of colors. If supplied, it must be of the same length as colors. | number[] | no | android/ios | yes |
+| mode | Can be `clamp`, `repeat`, `mirror`, or `decal`. | TileMode | no | android/ios | yes |
+| flags | By default, gradients will interpolate their colors in unpremultiplied space and then premultiply each of the results. By setting this to 1, the gradients will premultiply their colors first and then interpolate between them. | number | no | android/ios | yes |
+| transform | The transform property is identical to its [homonymous property in React Native](https://reactnative.dev/docs/transforms) except for one significant difference: in React Native, the origin of transformation is the center of the object, whereas it is the top-left position of the object in Skia. | Transforms2d | no | android/ios | yes |
+
+### LinearGradient
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ----- | ------------------------------- | ----- | -------- | ----------- | ----------------- |
+| start | Start position of the gradient. | Point | yes | android/ios | yes |
+| end | End position of the gradient. | Point | yes | android/ios | yes |
+
+### RadialGradient
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | ----------------------- | ------ | -------- | ----------- | ----------------- |
+| c | Center of the gradient. | Point | yes | android/ios | yes |
+| r | Radius of the gradient. | number | yes | android/ios | yes |
+
+### TwoPointConicalGradient
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | --------------------------- | ------ | -------- | ----------- | ----------------- |
+| start | Center of the start circle. | Point | yes | android/ios | yes |
+| startR | Radius of the start circle. | number | yes | android/ios | yes |
+| end | Center of the end circle. | number | yes | android/ios | yes |
+| endR | Radius of the end circle. | number | yes | android/ios | yes |
+
+### SweepGradient
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ----- | -------------------------------------- | ------ | -------- | ----------- | ----------------- |
+| c | Center of the gradient. | Point | yes | android/ios | yes |
+| start | Start angle in degrees (default is 0). | number | no | android/ios | yes |
+| end | End angle in degrees (default is 360). | number | no | android/ios | yes |
+
+### FractalNoise
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---------- | ------------------------------------------------------------------------------------------------------------------------------ | ------ | -------- | ----------- | ----------------- |
+| freqX | base frequency in the X direction; range [0.0, 1.0] | number | yes | android/ios | yes |
+| freqY | base frequency in the Y direction; range [0.0, 1.0] | number | yes | android/ios | yes |
+| octaves | octaves | number | no | android/ios | yes |
+| seed | seed | number | no | android/ios | yes |
+| tileWidth | if this and `tileHeight` are non-zero, the frequencies will be modified so that the noise will be tileable for the given size. | number | no | android/ios | yes |
+| tileHeight | if this and `tileWidth` are non-zero, the frequencies will be modified so that the noise will be tileable for the given size. | number | no | android/ios | yes |
+
+### Turbulence
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---------- | ------------------------------------------------------------------------------------------------------------------------------ | ------ | -------- | ----------- | ----------------- |
+| freqX | base frequency in the X direction; range [0.0, 1.0] | number | yes | android/ios | yes |
+| freqY | base frequency in the Y direction; range [0.0, 1.0] | number | yes | android/ios | yes |
+| octaves | octaves | number | no | android/ios | yes |
+| seed | seed | number | no | android/ios | yes |
+| tileWidth | if this and `tileHeight` are non-zero, the frequencies will be modified so that the noise will be tileable for the given size. | number | no | android/ios | yes |
+| tileHeight | if this and `tileWidth` are non-zero, the frequencies will be modified so that the noise will be tileable for the given size. | number | no | android/ios | yes |
+
+### Blend
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | -------- | ----------- | ----------------- |
+| mode | Sets the blend mode that is, the mode used to combine source color with destination color. The following values are available: `clear`, `src`, `dst`, `srcOver`, `dstOver`, `srcIn`, `dstIn`, `srcOut`, `dstOut`, `srcATop`, `dstATop`, `xor`, `plus`, `modulate`, `screen`, `overlay`, `darken`, `lighten`, `colorDodge`, `colorBurn`, `hardLight`, `softLight`, `difference`, `exclusion`, `multiply`, `hue`, `saturation`, `color`, `luminosity`. | BlendMode | yes | android/ios | yes |
+| children | Shaders to blend | ReactNode | yes | android/ios | yes |
+
+### ColorShader
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ----- | ----------- | ------ | -------- | ----------- | ----------------- |
+| color | Color | string | yes | android/ios | yes |
+
+### DiscretePathEffect
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| --------- | ------------------------------------------------------------- | ---------- | -------- | ----------- | ----------------- |
+| length | length of the subsegments. | number | yes | android/ios | yes |
+| deviation | limit of the movement of the endpoints. | number | yes | android/ios | yes |
+| seed | modifies the randomness. See SkDiscretePathEffect.h for more. | number | no | android/ios | yes |
+| children | Optional path effect to apply. | PathEffect | no | android/ios | yes |
+
+### DashPathEffect
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| --------- | --------------------------------------------------------------------------------------------------------------------------------------- | ---------- | -------- | ----------- | ----------------- |
+| intervals | even number of entries with even indices specifying the length of the "on" intervals, and the odd index specifying the length of "off". | number[] | yes | android/ios | yes |
+| phase | offset into the intervals array. Defaults to 0. | number | no | android/ios | yes |
+| children | Optional path effect to apply. | PathEffect | no | android/ios | yes |
+
+### CornerPathEffect
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------ | ---------- | -------- | ----------- | ----------------- |
+| r | Radius. | number | yes | android/ios | yes |
+| children | Optional path effect to apply. | PathEffect | no | android/ios | yes |
+
+### Path1DPathEffect
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------------------------------------------- | ----------------- | -------- | ----------- | ----------------- |
+| path | The path to replicate (dash) | PathDef | yes | android/ios | yes |
+| advance | The space between instances of path | number | yes | android/ios | yes |
+| phase | distance (mod advance) along the path for its initial position | number | yes | android/ios | yes |
+| style | how to transform path at each point (based on the current position and tangent) | Path1DEffectStyle | yes | android/ios | yes |
+| children | Optional path effect to apply. | PathEffect | no | android/ios | yes |
+
+### Path2DPathEffect
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ----------------------------- | ---------- | -------- | ----------- | ----------------- |
+| path | The path to use | PathDef | yes | android/ios | yes |
+| matrix | Matrix to be applied | SkMatrix | yes | android/ios | yes |
+| children | Optional path effect to apply | PathEffect | no | android/ios | yes |
+
+### Line2DPathEffect
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ----------------------------- | ---------- | -------- | ----------- | ----------------- |
+| width | The path to use | PathDef | yes | android/ios | yes |
+| matrix | Matrix to be applied | IMatrix | yes | android/ios | yes |
+| children | Optional path effect to apply | PathEffect | no | android/ios | yes |
+
+### Shadow
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---------- | ------------------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| dx | The X offset of the shadow. | number | yes | android/ios | yes |
+| dy | The Y offset of the shadow. | number | no | android/ios | yes |
+| blur | The blur radius for the shadow | number | no | android/ios | yes |
+| color | The color of the drop shadow | Color | no | android/ios | yes |
+| inner | Shadows are drawn within the input content | boolean | no | android/ios | yes |
+| shadowOnly | If true, the result does not include the input content | boolean | no | android/ios | yes |
+| children | Optional image filter to be applied first | ImageFilter | no | android/ios | yes |
+
+### Blur
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------------------------- | ---------------- | -------- | ----------- | ----------------- |
+| blur | The Gaussian sigma blur value | number`or`Vector | yes | android/ios | yes |
+| mode | `mirror`, `repeat`, `clamp`, or `decal` (default is `decal`). | TileMode | no | android/ios | yes |
+| children | Optional image filter to be applied first. | ImageFilter | no | android/ios | yes |
+
+### DisplacementMap
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------------------------------------------------ | ------------ | -------- | ----------- | ----------------- |
+| channelX | Color channel to be used along the X axis. Possible values are `r`, `g`, `b`, or `a` | ColorChannel | yes | android/ios | yes |
+| channelY | Color channel to be used along the Y axis. Possible values are `r`, `g`, `b`, or `a` | ColorChannel | no | android/ios | yes |
+| scale | Displacement scale factor to be used | number | no | android/ios | yes |
+| children | Optional image filter to be applied first | ImageFilter | no | android/ios | yes |
+
+### Offset
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| x | Offset along the X axis. | number | yes | android/ios | yes |
+| y | Offset along the Y axis. | number | yes | android/ios | yes |
+| children | Optional image filter to be applied first. | ImageFilter | no | android/ios | yes |
+
+### Morphology
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------------------------------- | ---------------- | -------- | ----------- | ----------------- |
+| operator | whether to erode (i.e., thin) or dilate (fatten). Default is dilate | erode`or`dilate | yes | android/ios | yes |
+| radius | Radius of the effect. | number`or`Vector | yes | android/ios | yes |
+| children | Optional image filter to be applied first. | ImageFilter | no | android/ios | yes |
+
+### RuntimeShader
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | --------------- | -------- | ----------- | ----------------- |
+| source | Shader to use as an image filter | SkRuntimeEffect | yes | android/ios | yes |
+| children | Optional image filter to be applied first. | ImageFilter | no | android/ios | yes |
+
+### BlurMask
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---------- | --------------------------------------------------------------------- | --------- | -------- | ----------- | ----------------- |
+| blur | Standard deviation of the Gaussian blur. Must be > 0. | number | yes | android/ios | yes |
+| style | Can be `normal`, `solid`, `outer`, or `inner` (default is `normal`). | BlurStyle | no | android/ios | yes |
+| respectCTM | if true the blur's sigma is modified by the CTM (default is `false`). | bool | no | android/ios | yes |
+
+### ColorMatrix
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| matrix | Color Matrix (5x4) | number[] | yes | android/ios | yes |
+| children | Optional color filter to be applied first. | ColorFilter | no | android/ios | yes |
+
+### BlendColor
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ----------------------------------------------------------------------------------------- | ----------- | -------- | ----------- | ----------------- |
+| color | Color | Color | yes | android/ios | yes |
+| mode | Sets the blend mode that is, the mode used to combine source color with destination color | BlendMode | yes | android/ios | yes |
+| children | Optional color filter to be applied first. | ColorFilter | no | android/ios | yes |
+
+### Lerp
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| t | Value between 0 and 1. | number | yes | android/ios | yes |
+| children | Optional color filter to be applied first. | ColorFilter | yes | android/ios | yes |
+
+### LinearToSRGBGamma
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| children | Optional color filter to be applied first. | ColorFilter | no | android/ios | yes |
+
+### SRGBToLinearGamma
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ------------------------------------------ | ----------- | -------- | ----------- | ----------------- |
+| children | Optional color filter to be applied first. | ColorFilter | no | android/ios | yes |
+
+### Mask
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| -------- | ---------------------------------------------------- | ------------------ | -------- | ----------- | ----------------- |
+| mode | Is it a luminance or alpha mask (default is `alpha`) | alpha \| luminance | no | android/ios | yes |
+| clip | clip the mask so it doesn't exceed the content | boolean | no | android/ios | yes |
+| mask | ReactNode | ReactNode[] | yes | android/ios | yes |
+| children | ReactNode | ReactNode[] | yes | android/ios | yes |
+
+### Image
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | -------- | ----------- | ----------------- |
+| image | An instance of the image. | SkImage | yes | android/ios | yes |
+| x | The left position of the destination image. | number | yes | android/ios | yes |
+| y | The top position of the destination image. | number | yes | android/ios | yes |
+| width | The width of the destination image. | number | yes | android/ios | yes |
+| height | The height of the destination image. | number | yes | android/ios | yes |
+| fit | The method used to fit the image into the rectangle. Values can be `contain`, `fill`, `cover`, `fitHeight`, `fitWidth`, `scaleDown`, or `none` (the default is `contain`). | Fit | no | android/ios | yes |
+
+### ImageSVG
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | ------------------------------------------- | ------ | -------- | ----------- | ----------------- |
+| svg | SVG Image. | SVG | yes | android/ios | yes |
+| x | The left position of the destination image. | number | no | android/ios | yes |
+| y | The top position of the destination image. | number | no | android/ios | yes |
+| width | The width of the destination image. | number | no | android/ios | yes |
+| height | The height of the destination image. | number | no | android/ios | yes |
+
+### Paragraph
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| --------- | --------------------------------------------- | ----------- | -------- | ----------- | ----------------- |
+| paragraph | text paragraph | skParagraph | yes | android/ios | yes |
+| x | Left position of the text (default is 0) | number | yes | android/ios | yes |
+| y | Bottom position the text (default is 0, the ) | number | yes | android/ios | yes |
+| width | The width of the paragraph. | number | yes | android/ios | yes |
+
+### Text
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | --------------------------------------------- | ------ | -------- | ----------- | ----------------- |
+| text | Text to draw | string | yes | android/ios | yes |
+| x | Left position of the text (default is 0) | number | yes | android/ios | yes |
+| y | Bottom position the text (default is 0, the ) | number | yes | android/ios | yes |
+| font | Font to use | SkFont | yes | android/ios | yes |
+
+### Glyphs
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | ---------------------------------------------------------- | ------- | -------- | ----------- | ----------------- |
+| glyphs | Glyphs to draw | Glyph[] | yes | android/ios | yes |
+| x | x coordinate of the origin of the entire run. Default is 0 | number | no | android/ios | yes |
+| y | y coordinate of the origin of the entire run. Default is 0 | number | no | android/ios | yes |
+| font | Font to use | SkFont | yes | android/ios | yes |
+
+### TextPath
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | -------- | ----------- | ----------------- |
+| path | Path to draw. Can be a string using the [SVG Path notation](https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths#line_commands) or an object created with `Skia.Path.Make()` | Path \| string | yes | android/ios | yes |
+| text | Text to draw | string | yes | android/ios | yes |
+| font | Font to use | SkFont | yes | android/ios | yes |
+
+### TextBlob
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | ---------------------------------------------------------- | -------- | -------- | ----------- | ----------------- |
+| blob | Text blob | TextBlob | yes | android/ios | yes |
+| x | x coordinate of the origin of the entire run. Default is 0 | number | no | android/ios | yes |
+| y | y coordinate of the origin of the entire run. Default is 0 | number | no | android/ios | yes |
+
+### BackdropFilter
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------ | --------------------------------------------------------------------------------------- | ------------------------ | -------- | ----------- | ----------------- |
+| filter | Applies an image filter to the area behind the canvas or behind a defined clipping mask | ReactNode \| ReactNode[] | yes | android/ios | yes |
+
+### BackdropBlur
+
+#### 属性
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ---- | ----------- | ------ | -------- | ----------- | ----------------- |
+| blur | Blur radius | number | yes | android/ios | yes |
+
+## RNSkiaModule API
+
+> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------- | ---------------- | -------- | -------- | ----------- | ----------------- |
+| install | initialized skia | function | yes | android/ios | yes |
+
+## 遗留问题
+
+- [x] Text 组件无法使用 问题: [issue#Text 暂不支持](https://github.com/react-native-oh-library/react-native-skia/issues/5)
+- [ ] Video 组件无法使用 问题: [issue#Video 暂不支持](https://github.com/react-native-oh-library/react-native-skia/issues/6)
+- [x] Image 组件无法使用 问题: [issue#Image 暂不支持](https://github.com/react-native-oh-library/react-native-skia/issues/7)
+
+## 其他
+
+## 开源协议
+
+本项目基于 [The MIT License (MIT)](https://github.com/Shopify/react-native-skia/blob/main/LICENSE.md) ,请自由地享受和参与开源。
\ No newline at end of file