Skip to main content

Documentation Index

Fetch the complete documentation index at: https://tech.illasoft.com/llms.txt

Use this file to discover all available pages before exploring further.

路径

GET /image/:imageId

认证

无(签名 URL 本身已授权)

响应

{
  imageId: string,
  width: number,
  height: number,
  url: string,          // Supabase 签名 URL(30 天有效,Redis 缓存)
  blurUrl: string,      // imgproxy: rs:fit:20:0 + bl:5
  thumbUrl: string,     // imgproxy: rs:fit:400:0
  blurhash: string      // 客户端即时解码占位
}

缓存

  • Supabase signed URL 缓存在 Redis signed_url:{fileId},TTL 30 天 - 1 小时
  • imgproxy URL 由后端签名,Cloudflare CDN TTL 30 天

src/hono/image/index.ts

相关