generate_image
Create custom images using AI models by providing a text prompt. Specify dimensions, model type, and quality enhancements to generate and download tailored visuals on demand.
Instructions
使用Pollinations.ai生成图像
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| enhance | No | 提高图像质量(应用增强滤镜) | |
| height | No | 图像高度(像素) | |
| model | No | 要使用的模型(如flux、variation等) | flux | 
| nologo | No | 设置为true可去除水印 | |
| private | No | 设置为true可使图像私有 | |
| prompt | Yes | 图像描述提示词 | |
| safe | No | 启用安全过滤(过滤不适内容) | |
| seed | No | 随机种子值(用于生成一致的图像) | |
| width | No | 图像宽度(像素) | 
Input Schema (JSON Schema)
{
  "properties": {
    "enhance": {
      "default": false,
      "description": "提高图像质量(应用增强滤镜)",
      "type": "boolean"
    },
    "height": {
      "default": 1024,
      "description": "图像高度(像素)",
      "type": "number"
    },
    "model": {
      "default": "flux",
      "description": "要使用的模型(如flux、variation等)",
      "type": "string"
    },
    "nologo": {
      "default": true,
      "description": "设置为true可去除水印",
      "type": "boolean"
    },
    "private": {
      "default": false,
      "description": "设置为true可使图像私有",
      "type": "boolean"
    },
    "prompt": {
      "description": "图像描述提示词",
      "type": "string"
    },
    "safe": {
      "default": false,
      "description": "启用安全过滤(过滤不适内容)",
      "type": "boolean"
    },
    "seed": {
      "description": "随机种子值(用于生成一致的图像)",
      "type": "number"
    },
    "width": {
      "default": 1024,
      "description": "图像宽度(像素)",
      "type": "number"
    }
  },
  "required": [
    "prompt"
  ],
  "type": "object"
}