diff --git a/src/content/docs/zh-cn/guides/images.mdx b/src/content/docs/zh-cn/guides/images.mdx
index 00f12f7cbd0ff..c881e61013fe5 100644
--- a/src/content/docs/zh-cn/guides/images.mdx
+++ b/src/content/docs/zh-cn/guides/images.mdx
@@ -40,12 +40,12 @@ import { Image } from 'astro:assets';
import localBirdImage from '../../images/subfolder/localBirdImage.png';
---
-
-
+
+
-
-
+
+
```
要从 `src/` 文件夹中动态导入图像,请参阅下面的操作指南:
@@ -495,11 +495,11 @@ export default defineConfig({
-
+
-
+
@@ -525,15 +525,18 @@ import rocket from '../assets/rocket.png';
# 我的 MDX 页面
+// 存储在同一文件夹中的本地图像
+
+
// 存储在 src/assets/ 中的本地图像
-
-
-
+
+
+
// 存储在 public/images/ 中的图像
-
-
-
+
+
+
// 其他服务上的远程图像
@@ -839,10 +842,10 @@ import rocket from '../images/rocket.svg';
# 我的 Markdown 页面
-
+
-
+
```
如果你需要对图像属性做更多的控制,我们建议使用 `.mdx` 文件格式,除了 Markdown 语法,你还可以使用 Astro 的 `` 组件或 JSX `
` 标签。使用 [MDX 集成](/zh-cn/guides/integrations-guide/mdx/) 为 Astro 添加对 MDX 的支持。