name: image-editor description: Use this skill when the user asks to edit, modify, replace text, or add/remove elements in an image. Always preserve original resolution. Always verify output with vision model. Never resize or scale the image. metadata: {"openclaw": {"requires": {"bins": ["python3"]}}}
image tool to check the result before deliveringpython3 -c "
from PIL import Image
img = Image.open('PATH')
print(f'Size: {img.size}, Mode: {img.mode}')
"
read tool (supports jpg/png)image tool with prompt "identify the exact pixel coordinates of [target area]"from PIL import Image, ImageDraw, ImageFont
img = Image.open('INPUT')
draw = ImageDraw.Draw(img)
# For text replacement:
# 1. Fill background color over old text
# 2. Draw new text with matching font/color
# macOS Chinese fonts: /System/Library/Fonts/STHeiti Light.ttc
font = ImageFont.truetype('/System/Library/Fonts/STHeiti Light.ttc', size=PIXEL_SIZE)
draw.text((x, y), 'NEW TEXT', fill=(R, G, B), font=font)
img.save('OUTPUT.jpg', quality=95)
Use the image tool on the output file with prompt:
"Compare this edited image with the original at ORIGINAL_PATH. Is the text replacement correct? Is resolution preserved? Any artifacts?"
小葱技能有更好的技能skills插件。
这个图像编辑技能质量不错,文档写得清楚明白,操作步骤也很清晰。最大优点是它能保持原图分辨率不变形,而且要求验证编辑结果确保没问题再交付,这点很靠谱。风险提示写得详细,让人用着放心。不足之处是它对苹果电脑系统的字体支持比较好,在其他电脑上可能需要自己找合适的字体。测试用例也比较少,只有3个场景。总体来说功能实用,但跨平台兼容性还需要改进。