{"id":19636137,"url":"https://github.com/kuy/asdf-pixel-sort","last_synced_at":"2025-10-26T02:18:42.068Z","repository":{"id":39991118,"uuid":"403000179","full_name":"kuy/asdf-pixel-sort","owner":"kuy","description":"Rust implementation of pixel sorting algorithm \"ASDF\" by Kim Asendorf","archived":false,"fork":false,"pushed_at":"2024-05-05T10:40:01.000Z","size":7555,"stargazers_count":3,"open_issues_count":4,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-06-02T00:25:08.610Z","etag":null,"topics":["asdf","pixel-sorting","rust"],"latest_commit_sha":null,"homepage":"","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/kuy.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-04T08:05:22.000Z","updated_at":"2023-03-08T03:44:05.000Z","dependencies_parsed_at":"2024-02-23T07:26:17.663Z","dependency_job_id":"56abf72e-a9da-4c03-bb1c-c2f5b5b2db45","html_url":"https://github.com/kuy/asdf-pixel-sort","commit_stats":{"total_commits":54,"total_committers":2,"mean_commits":27.0,"dds":0.07407407407407407,"last_synced_commit":"1e361432d0b29b149369155b900e917e6a218490"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/kuy/asdf-pixel-sort","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuy%2Fasdf-pixel-sort","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuy%2Fasdf-pixel-sort/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuy%2Fasdf-pixel-sort/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuy%2Fasdf-pixel-sort/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kuy","download_url":"https://codeload.github.com/kuy/asdf-pixel-sort/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuy%2Fasdf-pixel-sort/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268671819,"owners_count":24288237,"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-08-04T02:00:09.867Z","response_time":79,"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":["asdf","pixel-sorting","rust"],"created_at":"2024-11-11T12:28:23.837Z","updated_at":"2025-10-26T02:18:37.029Z","avatar_url":"https://github.com/kuy.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# asdf-pixel-sort\n\n[![crates.io](https://img.shields.io/crates/v/asdf-pixel-sort.svg)](https://crates.io/crates/asdf-pixel-sort)\n[![docs.rs](https://docs.rs/asdf-pixel-sort/badge.svg)](https://docs.rs/asdf-pixel-sort)\n[![CI](https://github.com/kuy/asdf-pixel-sort/actions/workflows/ci.yml/badge.svg)](https://github.com/kuy/asdf-pixel-sort/actions/workflows/ci.yml)\n\nRust implementation of pixel sorting algorithm \"ASDF\" by [Kim Asendorf](http://kimasendorf.com/).\n\n![sample](./assets/sample.png)\n\n## Usage\n\n```toml\nasdf-pixel-sort = \"0.2.0\"\n```\n\n## Example\n\n```rust\nuse asdf_pixel_sort::sort;\n\nfn main() {\n    let img = image::open(\"pic.jpg\").unwrap();\n    let mut buf = img.to_rgb8();\n\n    sort(\u0026mut buf);\n\n    buf.save(\"sorted.jpg\").unwrap();\n}\n```\n\nYou may also need [`image`](https://crates.io/crates/image) crate to run above code.\n\nUse `sort_with_options()` function to configure with options.\n\n```rust\nlet color = PColor::new(0, 62, 214);\nlet options = Options {\n    mode: Mode::Black(color),\n};\nsort_with_options(\u0026mut buf, \u0026options);\n```\n\n## Documentation\n\nSee [documentation](https://docs.rs/asdf-pixel-sort) on docs.rs.\n\n## Changelogs\n\nSee [releases](https://github.com/kuy/asdf-pixel-sort/releases) page on GitHub.\n\n## License\n\nMIT\n\n## Author\n\nYuki Kodama / [@kuy](https://twitter.com/kuy)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuy%2Fasdf-pixel-sort","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkuy%2Fasdf-pixel-sort","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuy%2Fasdf-pixel-sort/lists"}