diff --git a/README.md b/README.md
index 3542250..517512f 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,6 @@
+
A modern React Canvas drawing component library built on Fabric.js, providing powerful 2D graphics rendering, interaction, and animation capabilities.
## ✨ Core Features
@@ -428,3 +429,442 @@ This project is open source under the [MIT](LICENSE) license.
---
**Made with ❤️ by the CS-Open team**
+
+
+
+
+
+一个基于 Fabric.js 构建的现代化 React Canvas 绘图组件库,提供强大的 2D 图形绘制、交互和动画功能。
+
+## ✨ 核心特性
+
+### 🎯 丰富的图形组件
+
+- **基础图形**: 矩形、圆形、椭圆、线条、多边形、路径
+- **文本组件**: 文本、可编辑文本、文本框
+- **图像组件**: 背景图片、普通图片
+- **组合组件**: 分组、对象集合
+- **自定义控件**: 可拖拽控制点、工具栏
+
+### 🖱️ 强大的交互功能
+
+- **自动缩放**: 支持鼠标滚轮缩放,自动适应容器大小
+- **平移操作**: 支持拖拽平移画布视图
+- **触摸支持**: 完整的触摸设备支持,包括双指缩放和拖拽
+- **选择系统**: 多选、框选、键盘快捷键支持
+- **拖拽操作**: 对象拖拽、批量操作
+
+### 📦 响应式设计
+
+- **自动适配**: 画布自动撑满父容器,响应式调整
+- **触摸优化**: 专为移动设备优化的触摸交互
+- **跨平台**: 支持桌面端和移动端浏览器
+
+### 💻 开发者友好
+
+- **TypeScript**: 完整的 TypeScript 类型支持
+- **React 风格**: 声明式 API,符合 React 开发习惯
+- **事件系统**: 完整的事件回调,支持所有 Fabric.js 事件
+- **状态管理**: 内置状态管理,支持受控和非受控模式
+
+## ✨ 快速开始
+
+### 安装
+
+```bash
+npm install @cs-open/react-fabric
+# 或者
+yarn add @cs-open/react-fabric
+# 或者
+pnpm add @cs-open/react-fabric
+```
+
+### 基础用法
+
+```tsx
+import React from 'react'
+import { ReactFabric, Rect, Text, Circle } from '@cs-open/react-fabric'
+
+function App() {
+ return (
+
+
+
+
+
+
+
+ )
+}
+
+export default App
+```
+
+## 🎯 核心功能
+
+### 自动缩放与平移
+
+```tsx
+import { ReactFabric, useReactFabric } from '@cs-open/react-fabric'
+
+function CanvasWithControls() {
+ const { zoomIn, zoomOut, resetViewport, zoom } = useReactFabric()
+
+ return (
+
+
+ 放大
+ 缩小
+ resetViewport()}>重置
+ 缩放: {Math.round(zoom * 100)}%
+
+
+
+ {/* 你的画布内容 */}
+
+
+ )
+}
+```
+
+### 触摸设备支持
+
+```tsx
+import { ReactFabric, PluginPinch } from '@cs-open/react-fabric'
+import { PluginPinch } from '@cs-open/react-fabric/plugins'
+
+function TouchCanvas() {
+ return (
+
+ {/* 你的画布内容 */}
+
+
+ )
+}
+```
+
+### 背景图片
+
+```tsx
+import { ReactFabric, BackgroundImage } from '@cs-open/react-fabric'
+
+function CanvasWithBackground() {
+ return (
+
+
+ {/* 其他图形元素 */}
+
+ )
+}
+```
+
+## 🔌 插件系统
+
+### 内置插件
+
+| 插件 | 功能 | 描述 |
+| ---------------- | -------- | ---------------------- |
+| `PluginPinch` | 触摸缩放 | 支持双指缩放和拖拽操作 |
+| `PluginFreeDraw` | 自由绘制 | 手绘路径和涂鸦功能 |
+| `PluginFreeRect` | 矩形绘制 | 交互式矩形绘制工具 |
+| `PluginFreeText` | 文本工具 | 点击添加可编辑文本 |
+| `PluginGridLine` | 网格辅助 | 显示网格线辅助对齐 |
+| `PluginMask` | 遮罩效果 | 创建遮罩和裁剪效果 |
+
+### 使用插件
+
+```tsx
+import { ReactFabric } from '@cs-open/react-fabric'
+import { PluginPinch, PluginFreeDraw, PluginFreeRect, PluginGridLine } from '@cs-open/react-fabric/plugins'
+
+function AdvancedCanvas() {
+ return (
+
+ {/* 触摸支持 */}
+
+
+ {/* 自由绘制 */}
+ {
+ console.log('绘制完成:', path)
+ }}
+ />
+
+ {/* 矩形绘制工具 */}
+ {
+ console.log('矩形绘制完成:', rect)
+ }}
+ />
+
+ {/* 网格线 */}
+
+
+ )
+}
+```
+
+## 📦 组件 API
+
+### ReactFabric 组件
+
+主要的画布容器组件,支持以下属性:
+
+```tsx
+interface ReactFabricProps {
+ // 基础属性
+ width?: number
+ height?: number
+ className?: string
+ style?: CSSProperties
+
+ // 交互控制
+ zoomable?: boolean // 是否可缩放
+ panAble?: boolean // 是否可平移
+ selection?: boolean // 是否可选择
+ defaultSelection?: boolean // 默认选择状态
+ defaultDraggable?: boolean // 默认拖拽状态
+
+ // 缩放控制
+ manualZoom?: number // 手动缩放倍数
+ minManualZoom?: number // 最小缩放倍数
+ maxManualZoom?: number // 最大缩放倍数
+ defaultCentered?: boolean // 背景图是否居中
+
+ // 事件回调
+ onMouseDown?: (e: FabricPublicEvent) => void
+ onMouseMove?: (e: FabricPublicEvent) => void
+ onMouseUp?: (e: FabricPublicEvent) => void
+ onMouseWheel?: (e: FabricPublicEvent) => void
+}
+```
+
+### 图形组件
+
+所有图形组件都支持对应的 Fabric.js 对象的所有属性和事件:
+
+```tsx
+// 矩形
+
console.log('矩形被修改', e.target)}
+/>
+
+// 圆形
+ console.log('圆形被选中')}
+/>
+
+// 文本
+
+
+// 图片
+
+```
+
+## 🎮 状态管理
+
+### useReactFabric Hook
+
+```tsx
+import { useReactFabric } from '@cs-open/react-fabric'
+
+function Toolbar() {
+ const {
+ // 状态
+ canvas,
+ zoom,
+ manualZoom,
+ isDragging,
+ selection,
+
+ // 方法
+ zoomIn,
+ zoomOut,
+ resetViewport,
+ setZoomable,
+ setSelection,
+ setDraggable,
+ } = useReactFabric()
+
+ return (
+
+ 放大
+ 缩小
+ resetViewport()}>重置
+ 缩放: {Math.round(zoom * 100)}%
+
+ )
+}
+```
+
+### 跨组件状态访问
+
+ReactFabricProvider 是一个上下文提供程序,允许您从组件树中的任何位置访问流的内部状态,例如子组件,甚至在 ReactFabric 之外 元件。它通常用于应用程序的顶层。
+在这种情况下,您可能需要使用 ReactFabricProvider 组件
+
+```tsx
+import { ReactFabricProvider, useReactFabric } from '@cs-open/react-fabric'
+
+function App() {
+ return (
+
+
+ {/* 画布内容 */}
+
+ )
+}
+
+function Toolbar() {
+ const { zoomIn, zoomOut, resetViewport } = useReactFabric()
+ // 可以在 ReactFabric 外部访问状态
+}
+```
+
+## 🎨 高级用法
+
+### 受控模式
+
+```tsx
+import { useState } from 'react'
+import { ReactFabric, Rect } from '@cs-open/react-fabric'
+
+function ControlledCanvas() {
+ const [rect, setRect] = useState({
+ left: 100,
+ top: 100,
+ width: 200,
+ height: 100,
+ fill: 'red',
+ })
+
+ return (
+
+ setRect(e.target)} />
+
+ )
+}
+```
+
+### 非受控模式
+
+```tsx
+import { ReactFabric, Rect, Group } from '@cs-open/react-fabric'
+
+function UncontrolledCanvas() {
+ return (
+
+
+
+
+
+ )
+}
+```
+
+### DOM 集成
+
+```tsx
+import { ReactFabric, Rect } from '@cs-open/react-fabric'
+
+function CanvasWithDOM() {
+ return (
+
+
+ 这是一个提示框
+
+
+ )
+}
+```
+
+## 📋 依赖要求
+
+### 必需依赖
+
+```json
+{
+ "react": ">=17.0.0",
+ "react-dom": ">=17.0.0",
+ "fabric": "^6.6.1",
+ "zustand": "^4.0.0 || ^5.0.0"
+}
+```
+
+### 可选依赖
+
+某些插件需要额外的依赖:
+
+```bash
+# 触摸手势支持
+npm install hammerjs
+npm install @types/hammerjs # TypeScript 用户
+
+# 浮动 UI 支持(用于 DOM 集成)
+npm install @floating-ui/react
+```
+
+## 🤝 贡献
+
+欢迎提交 Issue 和 Pull Request!
+
+1. Fork 本仓库
+2. 创建特性分支 (`git checkout -b feature/AmazingFeature`)
+3. 提交更改 (`git commit -m 'Add some AmazingFeature'`)
+4. 推送到分支 (`git push origin feature/AmazingFeature`)
+5. 开启 Pull Request
+
+## 📄 许可证
+
+本项目基于 [MIT](LICENSE) 许可证开源。
+
+## 🔗 相关链接
+
+- [Fabric.js 官方文档](http://fabricjs.com/)
+- [React 官方文档](https://reactjs.org/)
+- [项目主页](https://cs-open.github.io/react-fabric/)
+- [GitHub 仓库](https://github.com/cs-open/react-fabric)
+
+---
+
+**Made with ❤️ by the CS-Open team**
+
+
+
+**[⬆ Back to Top](#-cs-openreact-fabric) | [English](#english)**
+
+
+
+