generate_favicon_from_png
Convert a PNG image into a complete favicon set with multiple sizes, ICO files, Apple touch icons, and manifest.json for web application deployment.
Instructions
Generate a complete favicon set from a PNG image file.
Args:
image_path: Path to the PNG image file.
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_path | Yes | ||
output_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"image_path": {
"title": "Image Path",
"type": "string"
},
"output_path": {
"title": "Output Path",
"type": "string"
}
},
"required": [
"image_path",
"output_path"
],
"title": "generate_favicon_from_pngArguments",
"type": "object"
}