{"id":15567000,"url":"https://github.com/c1m50c/image-modifier","last_synced_at":"2025-10-05T13:41:45.020Z","repository":{"id":50254398,"uuid":"468506760","full_name":"c1m50c/image-modifier","owner":"c1m50c","description":"Command line tool to simply modify image files with various filters.","archived":false,"fork":false,"pushed_at":"2022-07-27T22:43:23.000Z","size":36,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-23T03:53:19.279Z","etag":null,"topics":["binary","cli","crates-io","exectuable","image","image-manipulation","images","modifier","rust","rustlang"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/imgmod","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/c1m50c.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}},"created_at":"2022-03-10T20:52:27.000Z","updated_at":"2022-03-10T23:02:29.000Z","dependencies_parsed_at":"2022-08-25T13:20:55.564Z","dependency_job_id":null,"html_url":"https://github.com/c1m50c/image-modifier","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/c1m50c/image-modifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c1m50c%2Fimage-modifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c1m50c%2Fimage-modifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c1m50c%2Fimage-modifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c1m50c%2Fimage-modifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/c1m50c","download_url":"https://codeload.github.com/c1m50c/image-modifier/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c1m50c%2Fimage-modifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278464314,"owners_count":25991176,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["binary","cli","crates-io","exectuable","image","image-manipulation","images","modifier","rust","rustlang"],"created_at":"2024-10-02T17:09:32.760Z","updated_at":"2025-10-05T13:41:44.985Z","avatar_url":"https://github.com/c1m50c.png","language":"Rust","readme":"# **image-modifier**\n\n![Build Status](https://img.shields.io/github/workflow/status/c1m50c/image-modifier/Build?style=for-the-badge)\n![Crates.io Version](https://img.shields.io/crates/v/imgmod?color=orange\u0026style=for-the-badge)\n![Crates.io License](https://img.shields.io/crates/l/imgmod?style=for-the-badge)\n![Lines of Code](https://img.shields.io/tokei/lines/github/c1m50c/image-modifier?style=for-the-badge)\n![GitHub Stars](https://img.shields.io/github/stars/c1m50c/image-modifier?color=yellow\u0026style=for-the-badge)\n\nCommand line tool to simply modify image files with various filters.\n\n\n---\n\n\n## **Installing**\nYou can directly install the binary exectuable from \u003ca href=\"https://crates.io/crates/imgmod\"\u003ecrates.io\u003c/a\u003e with \u003ca href=\"https://doc.rust-lang.org/cargo/\"\u003eCargo\u003c/a\u003e by running the following command.\n\n```bash\n$ cargo install imgmod\n```\n\n## **Running**\nAfter installation running is just as easy, run `imgmod` in your command line with the following argument pattern.\n\n```bash\n$ imgmod [MODIFIER] [INPUT_IMAGE_PATH] [OUTPUT_IMAGE_PATH]\n```\n\n\n---\n\n\n## **Modifiers**\n\u003cdetails\u003e\n\u003csummary\u003eGreyscale\u003c/summary\u003e\nConverts the input image into its greyscaled counterpart.\n\n**Valid Modifier Names**\n- greyscale\n- grayscale\n- gs\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eInvert\u003c/summary\u003e\nInverses all the colors of the input image.\n\n**Valid Modifier Names**\n- invert\n- inverse\n- inv\n- i\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eRed\u003c/summary\u003e\nIsolates the colors to only the red channel.\n\n**Valid Modifier Names**\n- red\n- r\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eGreen\u003c/summary\u003e\nIsolates the colors to only the green channel.\n\n**Valid Modifier Names**\n- green\n- g\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eBlue\u003c/summary\u003e\nIsolates the colors to only the blue channel.\n\n**Valid Modifier Names**\n- blue\n- b\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eAlpha\u003c/summary\u003e\nConverts the value of all color channels to the value of their alpha channel within the input image.\n\n**Valid Modifier Names**\n- alpha\n- a\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eBlur\u003c/summary\u003e\nBlurs the image by a fixed amount.\n\n**Valid Modifier Names**\n- blur\n\u003c/details\u003e","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc1m50c%2Fimage-modifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fc1m50c%2Fimage-modifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc1m50c%2Fimage-modifier/lists"}