{"id":14995793,"url":"https://github.com/fnands/mimage","last_synced_at":"2025-09-25T15:31:29.882Z","repository":{"id":237956933,"uuid":"795573631","full_name":"fnands/mimage","owner":"fnands","description":"A library for parsing images in Mojo","archived":false,"fork":false,"pushed_at":"2025-04-09T15:55:09.000Z","size":356,"stargazers_count":13,"open_issues_count":4,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T16:46:57.322Z","etag":null,"topics":["image","image-processing","mojo"],"latest_commit_sha":null,"homepage":"","language":"Mojo","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fnands.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-03T15:14:34.000Z","updated_at":"2025-04-09T15:54:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"2cbf1e85-cb8c-4108-9d8d-9abe28d641e7","html_url":"https://github.com/fnands/mimage","commit_stats":null,"previous_names":["fnands/mimage"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/fnands/mimage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnands%2Fmimage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnands%2Fmimage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnands%2Fmimage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnands%2Fmimage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fnands","download_url":"https://codeload.github.com/fnands/mimage/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnands%2Fmimage/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276940143,"owners_count":25732250,"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-09-25T02:00:09.612Z","response_time":80,"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":["image","image-processing","mojo"],"created_at":"2024-09-24T16:19:49.246Z","updated_at":"2025-09-25T15:31:29.870Z","avatar_url":"https://github.com/fnands.png","language":"Mojo","readme":"\u003cbr/\u003e\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/fnands/mimage\"\u003e\n    \u003cimg src=\"assets/mimage_logo.png\" alt=\"Logo\" width=\"200\" height=\"200\"\u003e\n  \u003c/a\u003e\n\n  \u003ch1 align=\"center\"\u003eMimage\u003c/h1\u003e\n\n  \u003cp align=\"center\"\u003e\n    A library for reading images in pure* Mojo 🔥\n\n  ![Language Badge](https://img.shields.io/badge/language-mojo-orange)\n  ![CodeQL](https://github.com/fnands/mimage/workflows/CodeQL/badge.svg)\n  \u003c/p\u003e\n\u003c/div\u003e\n\n\n\n\n*Not pure Mojo yet, but hopefully soon.\n## About The Project\n\nMimage is a image manipulation library loosely based on Python's [Pillow](https://github.com/python-pillow/Pillow). The goal is to be able to read and write the most popular image formats directly from Mojo.\n\n## Quick Start\n\nBasic usage:\n\n```mojo\nimport mimage as mi\n\ndef main():\n\n  tensor = mi.imread(\"my/png/image.png\")\n\n```\n\nTry out the tests yourself:\n\n```sh\nmojo -I .  tests/test_open_png.mojo\n```\n\n## Roadmap\n\n### v0.1.0 ✅\n- [x] Read simple 8-bit PNGs\n\n### Near term\n- [ ] Read jpegs\n\n### Medium term\n- [ ] Read more complex PNGs\n- [ ] Write PNGs\n- [ ] Write jpegs\n\n### Long term\n- [ ] v1.0.0 will be achieved when Mimage can open all the same images as Pillow.\n\n\n## Contributing\n\nBefore creating a new issue, please:\n* Check if the issue already exists. If an issue is already reported, you can contribute by commenting on the existing issue.\n* If not, create a new issue and include all the necessary details to understand/recreate the problem or feature request.\n\n### Creating A Pull Request\n\n1. Fork the Project\n2. Create your Feature Branch\n3. Commit your Changes\n4. Push to the Branch\n5. Open a Pull Request\n\u003e Once your changes are pushed, navigate to your fork on GitHub. And create a pull request against the original fnands/mimage repository.\n\u003e - Before creating a PR make sure it doesn't break any of the unit-tests. (e.g. `mojo -I .  tests/test_open_png.mojo`)\n\u003e - Introducing new big features requires a new test!\n\u003e - In the pull request, provide a detailed description of the changes and why they're needed. Link any relevant issues.\n\u003e - If there are any specific instructions for testing or validating your changes, include those as well.\n\n## License\n\nDistributed under the Apache 2.0 License with LLVM Exceptions. See [LICENSE](https://github.com/fnands/mimage/blob/main/LICENSE) and the LLVM [License](https://llvm.org/LICENSE.txt) for more information.\n\n## Acknowledgements\n\n* Built with [Mojo](https://github.com/modularml/mojo) created by [Modular](https://github.com/modularml)","funding_links":[],"categories":["Image Processing","🗂️ Libraries\u003ca id='libraries'\u003e\u003c/a\u003e"],"sub_categories":["Image Processing"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffnands%2Fmimage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffnands%2Fmimage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffnands%2Fmimage/lists"}