Initial commit with translated description

This commit is contained in:
2026-03-29 14:37:58 +08:00
commit a533fca9e8
2 changed files with 48 additions and 0 deletions

42
SKILL.md Normal file
View File

@@ -0,0 +1,42 @@
---
name: image-ocr
description: "使用Tesseract OCR从图像中提取文本。"
metadata:
{
"openclaw":
{
"emoji": "👁️",
"requires": { "bins": ["tesseract"] },
"install":
[
{
"id": "dnf",
"kind": "dnf",
"package": "tesseract",
"bins": ["tesseract"],
"label": "Install via dnf",
},
],
},
}
---
# Image OCR
Extract text from images using Tesseract OCR. Supports multiple languages and image formats including PNG, JPEG, TIFF, and BMP.
## Commands
```bash
# Extract text from an image (default: English)
image-ocr "screenshot.png"
# Extract text with a specific language
image-ocr "document.jpg" --lang eng
```
## Install
```bash
sudo dnf install tesseract
```