← 返回 Skills 市场
lnj22

image_editing

作者 lnj22 · GitHub ↗ · v0.1.0 · MIT-0
cross-platform ✓ 安全检测通过
81
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install mario-coin-counting-image-editing
功能描述
Comprehensive command-line tools for modifying and manipulating images, such as resize, blur, crop, flip, and many more.
使用说明 (SKILL.md)

Command-line Tools: Convert

Overview

This guide covers essential image processing operations using ImageMagick, a collection of command-line tools that can be applied to modify and manipulate images. With this toolkit, you can edit images in batch on Linux command-line.

Image Operations

Use the convert command to resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more.

Example Usage We list a few examples of the command here to illustrate its usefulness and ease of use. To get started, let's reduce the size of our rose:

convert -resize 50% rose.jpg

You can resize all your JPEG images in a folder to a maximum dimension of 256x256 with this command:

convert -resize 256x256 *.jpg

Finally, we convert all our PNG images in a folder to the JPEG format:

convert -format jpg *.png

Here image files 1.png, 2.png, etc., are left untouched and files 1.jpg, 2.jpg, etc., are created. They are copies of their respective PNG images except are stored in the JPEG image format.

Useful image operations and their corresponding command:

-auto-orient Adjusts an image so that its orientation is suitable for viewing (i.e. top-left orientation). This operator reads and resets the EXIF image profile setting 'Orientation' and then performs the appropriate 90 degree rotation on the image to orient the image, for correct viewing.

-background \x3Ccolor> Set the background color. The color is specified using the format described under the -fill option. The default background color (if none is specified or found in the image) is white.

-blend \x3Cgeometry> Blend an image into another by the given absolute value or percent. Blend will average the images together ('plus') according to the percentages given and each pixels transparency. If only a single percentage value is given it sets the weight of the composite or 'source' image, while the background image is weighted by the exact opposite amount. That is a -blend 30% merges 30% of the 'source' image with 70% of the 'destination' image. Thus it is equivalent to -blend 30x70%.

-blue-shift \x3Cfactor> Simulate a scene at nighttime in the moonlight. Start with a factor of 1.5

-blur radius -blur radius{xsigma} Reduce image noise and reduce detail levels. Convolve the image with a Gaussian or normal distribution using the given Sigma value. The formula is: $$ G(u, v) = \frac{1}{2\pi\sigma^2}e^{-(u^2+v^2)/(2\sigma^2)} $$ The sigma value is the important argument, and determines the actual amount of blurring that will take place.

-bordercolor color Set the border color. The color is specified using the format described under the -fill option. The default border color is #DFDFDF, this shade of gray.

-border \x3Cvalue%> Surround the image with a border of color. value % of width is added to left/right and value % of height is added to top/bottom

-brightness-contrast brightness -brightness-contrast brightness{xcontrast}{%} Adjust the brightness and/or contrast of the image. Brightness and Contrast values apply changes to the input image. They are not absolute settings. A brightness or contrast value of zero means no change. The range of values is -100 to +100 on each. Positive values increase the brightness or contrast and negative values decrease the brightness or contrast. To control only contrast, set the brightness=0. To control only brightness, set contrast=0 or just leave it off. You may also use -channel to control which channels to apply the brightness and/or contrast change. The default is to apply the same transformation to all channels.

-channel type Specify those image color channels to which subsequent operators are limited. Choose from: Red, Green, Blue, Alpha, Gray, Cyan, Magenta, Yellow, Black, Opacity, Index, RGB, RGBA, CMYK, or CMYKA.

-contrast Enhance or reduce the image contrast.

-colorspace value Set the image colorspace.

Dependencies

Required dependencies (install if not available):

  • convert: Run sudo apt install imagemagick to install. After that, you can use convert command.
安全使用建议
This skill is essentially a cheat-sheet for using ImageMagick's 'convert' tool and appears internally consistent. Before installing/using it: (1) verify you have 'convert' on PATH (run 'convert -version') — the SKILL.md expects this even though registry metadata omitted it; (2) installing imagemagick with 'sudo apt install' requires admin rights — review that package and your system policy before granting sudo; (3) inspect any convert commands before running them (wildcards and in-place conversions can overwrite files); (4) note SKILL.md's claim of a proprietary LICENSE.txt but no license file is bundled — if licensing matters to you, ask the publisher for the license text; (5) no credentials or network calls are requested by this skill, so the usual cautions about running arbitrary shell commands apply but there are no additional credential-exfiltration signals.
功能分析
Type: OpenClaw Skill Name: mario-coin-counting-image-editing Version: 0.1.0 The skill bundle provides standard documentation and usage examples for the ImageMagick 'convert' utility for image processing tasks. It contains no evidence of malicious intent, data exfiltration, or prompt injection, and its instructions (including the dependency installation for imagemagick via apt) are consistent with its stated purpose in SKILL.md.
能力评估
Purpose & Capability
The name and description match the instructions (ImageMagick/convert usage). Minor inconsistencies: registry metadata lists no required binaries, yet SKILL.md explicitly requires the 'convert' binary (imagemagick). SKILL.md also claims a proprietary LICENSE.txt but no license file accompanies the skill bundle.
Instruction Scope
Runtime instructions are limited to running ImageMagick 'convert' commands on local image files and a suggestion to install imagemagick via the system package manager. There are no instructions to read unrelated files, exfiltrate data, call external endpoints, or access secrets.
Install Mechanism
No install spec is included (instruction-only). The document simply instructs the user to install imagemagick with 'sudo apt install imagemagick' if 'convert' is missing — this is a normal, low-risk recommendation and does not pull code from unknown URLs.
Credentials
The skill declares no required environment variables, credentials, or config paths, which is appropriate for a local image-processing guidance document.
Persistence & Privilege
The skill is not always-enabled and does not request any persistent privileges or modify other skills or system-wide settings. Autonomous invocation is allowed by default (platform normal), but there is nothing in the skill that suggests a need for elevated privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install mario-coin-counting-image-editing
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /mario-coin-counting-image-editing 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
Bulk publish from all-task-skills-dedup
元数据
Slug mario-coin-counting-image-editing
版本 0.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

image_editing 是什么?

Comprehensive command-line tools for modifying and manipulating images, such as resize, blur, crop, flip, and many more. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 81 次。

如何安装 image_editing?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install mario-coin-counting-image-editing」即可一键安装,无需额外配置。

image_editing 是免费的吗?

是的,image_editing 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

image_editing 支持哪些平台?

image_editing 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 image_editing?

由 lnj22(@lnj22)开发并维护,当前版本 v0.1.0。

💬 留言讨论