generate_favicon_from_url
Download an image from a URL and generate a complete favicon set, including multiple sizes, ICO files, Apple touch icons, and a manifest.json for web applications.
Instructions
Download an image from a URL and generate a complete favicon set.
Args:
image_url: URL of the image to download.
output_path: Directory where favicon files will be generated.
Returns:
A message describing the generated files and output directory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_url | Yes | ||
output_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"image_url": {
"title": "Image Url",
"type": "string"
},
"output_path": {
"title": "Output Path",
"type": "string"
}
},
"required": [
"image_url",
"output_path"
],
"title": "generate_favicon_from_urlArguments",
"type": "object"
}