Token导航 LogoToken导航TokenDH.com
图像处理操作浏览器github未标认证来源可访问许可证需确认审计提醒

cloudflare-imagescloudflare 图片

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

428

周安装

18

GitHub Stars

14

下载量

150
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cloudflare-images(cloudflare 图片)
来源仓库:https://github.com/itechmeat/llm-code
仓库路径:skills/cloudflare-images
安装命令:
npx skills add https://github.com/itechmeat/llm-code --skill cloudflare-images
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/itechmeat/llm-code --skill cloudflare-images

简介

cloudflare-images 用于辅助图像生成、图片编辑和视觉素材处理,适合在 Codex、Claude、Cursor、Gemini CLI 中进行图像处理工作。

  • 适用于根据文本生成图片、处理背景和整理视觉提示词的场景。
  • 通过图像模型调用、格式转换和视觉优化来完成图像处理任务。
  • 安装命令:npx skills add https://github.com/itechmeat/llm-code --skill cloudflare-images
  • 建议确认输入图片版权、输出格式限制,注意人物和品牌内容的授权问题

SKILL.md

Cloudflare Images

End-to-end image storage, transformation, and delivery solution on Cloudflare's global network.

Quick Navigation

  • Upload methods → references/upload.md
  • Transformations → references/transformations.md
  • Variants → references/variants.md
  • Workers binding → references/binding.md
  • Polish → references/polish.md
  • Signed URLs → references/security.md
  • Pricing → references/pricing.md

When to Use

  • Storing and delivering optimized images at scale
  • Transforming remote images on-the-fly
  • Resizing, cropping, converting image formats
  • Adding watermarks to images
  • Serving responsive images with srcset
  • Protecting images with signed URLs
  • Optimizing images from R2 storage

Two Usage Modes

ModeDescriptionBilling
Storage in ImagesUpload images to Cloudflare, serve via variantsImages Stored + Images Delivered
Transform remoteOptimize images from any origin (R2, S3, etc.)Images Transformed (unique/30d)

Quick Start

Upload an Image (API)

curl --request POST \
  --url https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_ID>/images/v1 \
  --header 'Authorization: Bearer <API_TOKEN>' \
  --header 'Content-Type: multipart/form-data' \
  --form file=@./image.jpg

Transform via URL

<img src="/cdn-cgi/image/width=400,quality=80,format=auto/uploads/hero.jpg" />

Transform via Workers

fetch(imageURL, {
  cf: {
    image: {
      width: 800,
      height: 600,
      fit: "cover",
      format: "auto",
    },
  },
});

URL Format

https://<ZONE>/cdn-cgi/image/<OPTIONS>/<SOURCE-IMAGE>
  • <ZONE> — your Cloudflare domain
  • /cdn-cgi/image/ — fixed prefix for image transformations
  • <OPTIONS> — comma-separated: width=400,quality=80,format=auto
  • <SOURCE-IMAGE> — absolute path or full URL

Stored Images Delivery

https://imagedelivery.net/<ACCOUNT_HASH>/<IMAGE_ID>/<VARIANT_NAME>

Transformation Options

OptionDescriptionExample
widthMax width in pixelswidth=800
heightMax height in pixelsheight=600
fitResize modefit=cover
formatOutput formatformat=auto
qualityJPEG/WebP/AVIF quality 1-100quality=85
gravityCrop focus pointgravity=face, gravity=auto
blurBlur radius 1-250blur=50
sharpenSharpening 0-10sharpen=1
rotateRotation degreesrotate=90
trimRemove pixels from edgestrim=20;30;20;0

Fit Modes

ModeBehavior
scale-downShrink only, never enlarge
containFit within dimensions, preserve aspect ratio
coverFill dimensions, crop if needed
cropLike cover but never enlarges
padFit within, add background color

Format Auto

format=auto serves WebP or AVIF based on browser support. Use with Accept header parsing in Workers.

Supported Formats

Input

  • JPEG, PNG, GIF (animated), WebP (animated), SVG, HEIC

Output

  • JPEG, PNG, GIF, WebP, AVIF, SVG (passthrough)

Note: HEIC must be served as AVIF/WebP/JPEG/PNG. SVG is not resized (inherently scalable).

Limits

ConstraintLimit
Max image dimension12,000 pixels
Max image area100 megapixels
Max file size (transformations)70 MB
Max file size (storage)10 MB
GIF/WebP animation50 megapixels total
AVIF output hard limit1,200 px (1,600 explicit)
Variants per account100

Workers Integration

Images Binding Setup

# wrangler.toml
[images]
binding = "IMAGES"

Transform with Binding

const response = (await env.IMAGES.input(stream).transform({ width: 800 }).transform({ blur: 20 }).output({ format: "image/avif" })).response();

Draw Watermark

const watermark = await fetch("https://example.com/watermark.png");
const image = await fetch("https://example.com/photo.jpg");

const response = (
  await env.IMAGES.input(image.body)
    .draw(env.IMAGES.input(watermark.body).transform({ width: 100 }), { bottom: 10, right: 10, opacity: 0.75 })
    .output({ format: "image/avif" })
).response();

Get Image Info

const info = await env.IMAGES.info(stream);
// { format, fileSize, width, height }

Recipes

Responsive Images with srcset

<img srcset="/cdn-cgi/image/width=320/photo.jpg 320w, /cdn-cgi/image/width=640/photo.jpg 640w, /cdn-cgi/image/width=1280/photo.jpg 1280w" sizes="(max-width: 640px) 100vw, 640px" src="/cdn-cgi/image/width=640/photo.jpg" alt="Responsive image" />

Face-Aware Cropping

fetch(imageURL, {
  cf: {
    image: {
      width: 200,
      height: 200,
      fit: "cover",
      gravity: "face",
      zoom: 0.5, // 0 = more background, 1 = tight crop
    },
  },
});

Direct Creator Upload

# Get one-time upload URL
curl --request POST \
  https://api.cloudflare.com/client/v4/accounts/{account_id}/images/v2/direct_upload \
  --header "Authorization: Bearer <API_TOKEN>"

# Response: { "uploadURL": "https://upload.imagedelivery.net/..." }

Upload from Worker

const image = await fetch("https://example.com/image.png");
const bytes = await image.bytes();

const formData = new FormData();
formData.append("file", new File([bytes], "image.png"));

await fetch(`https://api.cloudflare.com/client/v4/accounts/${ACCOUNT_ID}/images/v1`, {
  method: "POST",
  headers: { Authorization: `Bearer ${TOKEN}` },
  body: formData,
});

Critical Prohibitions

  1. NEVER set up Image Resizing Worker for entire zone (/*) — blocks non-image requests
  2. NEVER activate Polish and image transformations simultaneously — redundant compression
  3. NEVER use flexible variants with signed URL tokens — incompatible
  4. NEVER use custom ID paths with requireSignedURLs=true — not supported
  5. NEVER expect SVG resizing — SVGs are passed through as-is
  6. NEVER include resizing options in cacheKey — fragments cache

Troubleshooting

No Cf-Resized Header

  • Transformations not enabled on zone
  • Another Worker intercepting request
  • Using dashboard preview (doesn't simulate transforms)

Common Error Codes

CodeMeaning
9401Invalid transformation options
9402Image too large
9403Request loop detected
9422Free tier limit exceeded (5,000/month)
9520Unsupported format

Links

Related Skills

  • cloudflare-workers - For serverless compute
  • cloudflare-pages - For full-stack apps
  • cloudflare-r2 - R2 object storage

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34%
按下载量换算51

Claude

30.55%
按下载量换算46

Cursor

18.19%
按下载量换算27

Gemini CLI

10.49%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills