{"id":18852922,"url":"https://github.com/stellarsand/image-convert","last_synced_at":"2026-04-08T18:02:12.999Z","repository":{"id":183307569,"uuid":"669917533","full_name":"StellarSand/image-convert","owner":"StellarSand","description":"Convert images to different formats.","archived":false,"fork":false,"pushed_at":"2023-09-22T15:30:59.000Z","size":23,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-17T22:18:15.760Z","etag":null,"topics":["image","image-conversion","image-converter","image-manipulation","images","linux","macos","python","python-script","python3","script","terminal","windows"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StellarSand.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-07-23T21:09:26.000Z","updated_at":"2025-03-13T21:32:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"1d7af5c5-91b7-4d54-bee6-eebdf217c524","html_url":"https://github.com/StellarSand/image-convert","commit_stats":null,"previous_names":["the-weird-aquarian/image-convert","stellarsand/image-convert"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/StellarSand/image-convert","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StellarSand%2Fimage-convert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StellarSand%2Fimage-convert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StellarSand%2Fimage-convert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StellarSand%2Fimage-convert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StellarSand","download_url":"https://codeload.github.com/StellarSand/image-convert/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StellarSand%2Fimage-convert/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31567227,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["image","image-conversion","image-converter","image-manipulation","images","linux","macos","python","python-script","python3","script","terminal","windows"],"created_at":"2024-11-08T03:42:06.392Z","updated_at":"2026-04-08T18:02:12.968Z","avatar_url":"https://github.com/StellarSand.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# image-convert\n\n**image-convert** tool allows you to convert images to different formats on GNU/Linux, macOS and Windows systems.\n\n\n\n## Contents\n- [Supported OS](#supported-os)\n- [Prerequisites](#prerequisites)\n- [Supported formats](#supported-formats)\n- [Installation](#installation)\n- [Available options](#available-options)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [License](#license)\n\n\n\n## Supported OS\n- GNU/Linux\n- Windows\n- macOS\n\n\n\n## Prerequisites\n- [Python3](https://www.python.org/downloads/)\n- [Pillow](https://pypi.org/project/Pillow/): Install using `pip install Pillow`\n\n\n\n## Supported formats\n- JPEG\n- PNG\n- WEBP\n- TIFF\n- BMP\n- ICO\n- ICNS\n- PBM\n- PGM\n- PPM\n\n\n\n## Installation\n**1. Clone this repo:**\n```\ngit clone https://github.com/StellarSand/image-convert.git\n```\n\n**2. Move into the project directory:**\n```\ncd image-convert\n```\n\n**3. Give executable permissions to the script (Not required for Windows):**\n```\nchmod +x image-convert\n```\n\n\n\n## Available options:\n```\n-h, --help              Show this help message and exit\n-f, --formats           Show a list of supported output formats\n-i, --input-files       Path to the input image files\n-o, --output-format     Output format (e.g.: png, jpeg, etc.)\n-d, --directory         Output directory for converted images\n-l, --lossy             Perform lossy conversion (default: lossless, except for JPEG)\n-p, --parallel          Convert images in parallel\n```\n\n**NOTE**:\nIf -p/--parallel option is used, multiple images will be converted in parallel.\nThis will be faster, however, it might use a lot of system resources if too many images are provided.\n\n\n\n## Usage\n```\npython3 image-convert -i \u003cimage\u003e -o \u003coutput format\u003e\n```\n\n```\npython3 image-convert -i \u003cimage1\u003e \u003cimage2\u003e \u003cimage3\u003e -o \u003coutput format\u003e\n```\n\n**Examples:**\n```\npython3 image-convert -i icon.png -o jpeg\n```\n\n```\npython3 image-convert -i icon1.png icon2.jpg icon3.webp -o tiff -d /home/user/Downloads\n```\n\n```\npython3 image-convert -i icon1.png icon2.jpg -o webp -l -p\n```\n\n**Convert all images with a specified format:**\n```\npython3 img-pdf-convert -i *.png *.jpg -o webp\n```\n\n\n\n## Contributing\nPull requests can be submitted [here](https://github.com/StellarSand/image-convert/pulls).\n\n\n\n## License\nThis project is licensed under the terms of [GPLv3 license](https://github.com/StellarSand/image-convert/blob/main/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstellarsand%2Fimage-convert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstellarsand%2Fimage-convert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstellarsand%2Fimage-convert/lists"}