{
  "slug": "image-convert",
  "name": "gizza-ai/image-convert",
  "version": "0.1.0",
  "title": "Convert an Image Online — gizza.ai",
  "description": "Convert any image to JPEG, PNG, or WebP right in your browser — pick a target format and quality. No upload to a server, runs locally, free.",
  "tags": [
    "image",
    "convert",
    "format",
    "jpeg",
    "png",
    "webp",
    "transcode"
  ],
  "category": "image",
  "urls": {
    "page": "https://gizza.ai/tools/image-convert/",
    "markdown": "https://gizza.ai/tools/image-convert/index.md",
    "descriptor": "https://gizza.ai/tools/image-convert/tool.json",
    "deep_link_example": "https://gizza.ai/tools/image-convert/?url=https://example.com/input&format=jpeg&quality=85"
  },
  "cli": "gizza tool image-convert 'url=https://example.com/input' 'format=jpeg' 'quality=85'",
  "tool": {
    "description": "Convert an image at the given URL to a different format. Supported formats: jpeg, png, webp. Optional quality (1-100) controls JPEG/WebP compression; ignored for PNG. Use when the user asks to change the file format or compress an image.",
    "parameters": {
      "properties": {
        "format": {
          "description": "Target image format.",
          "enum": [
            "jpeg",
            "png",
            "webp"
          ],
          "type": "string"
        },
        "quality": {
          "description": "Quality 1-100 for jpeg/webp; ignored for png. Default 85.",
          "type": "integer"
        },
        "url": {
          "description": "Absolute http(s) URL to an image.",
          "type": "string"
        }
      },
      "required": [
        "url",
        "format"
      ],
      "type": "object"
    }
  }
}