diff --git a/en/application-dev/reference/apis/js-apis-image.md b/en/application-dev/reference/apis/js-apis-image.md
index c675e395d694b58c2d79bbc152344f98b2505e75..237fe420a6438e25bedc9089b508a86359e0502f 100644
--- a/en/application-dev/reference/apis/js-apis-image.md
+++ b/en/application-dev/reference/apis/js-apis-image.md
@@ -80,9 +80,9 @@ image.createPixelMap(color, opts, (error, pixelmap) => {
## PixelMap7+
-Provides APIs to read or write image pixel map data and obtain image pixel map information. Before calling any API in **PixelMap**, you must use **createPixelMap** to create a **PixelMap** object.
+Provides APIs to read or write image pixel map data and obtain image pixel map information. Before calling any API in **PixelMap**, you must use **createPixelMap** to create a **PixelMap** object. Currently, the maximum size of a serialized pixel map is 128 MB. A larger size will cause a display failure. The size is calculated as follows: Width * Height * Number of bytes occupied by each pixel.
- ### Attributes
+### Attributes
**System capability**: SystemCapability.Multimedia.Image.Core
@@ -949,7 +949,7 @@ Creates an **ImageSource** instance based on the URI.
```js
let context = featureAbility.getContext();
-let path = context.getCacheDir() + "test.jpg";
+let path = context.cacheDir() + "test.jpg";
const imageSourceApi = image.createImageSource(path);
```
@@ -2046,7 +2046,7 @@ Creates an **ImageCreator** instance by specifying the image width, height, form
| Type | Description |
| ------------------------------ | --------------------------------------- |
-| [ImageCreator](#imagecreator9) | Returns an **ImageCreator** instance if the operation is successful.|
+| [ImageCreator](#imagecreator9) | Returns an **ImageCreator** instance if the operation is successful.|
**Example**
@@ -2548,7 +2548,7 @@ Describes image properties.
## PropertyKey7+
-Describes the exchangeable image file format (EXIF) information of an image.
+Describes the exchangeable image file format (EXIF) data of an image.
**System capability**: SystemCapability.Multimedia.Image.Core