{"id":13550349,"url":"https://github.com/bsteps/flutter_photon_rs","last_synced_at":"2026-03-08T01:31:34.653Z","repository":{"id":38795346,"uuid":"486167419","full_name":"bsteps/flutter_photon_rs","owner":"bsteps","description":"Dart ffi to photon library, an image processing library written in rust. ","archived":false,"fork":false,"pushed_at":"2022-05-29T11:37:28.000Z","size":24624,"stargazers_count":12,"open_issues_count":1,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-05T01:28:50.744Z","etag":null,"topics":["ffi-bindings","flutter","flutter-plugin","flutter-rust-bridge","rust"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/flutter_photon_rs","language":"Dart","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/bsteps.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}},"created_at":"2022-04-27T11:39:09.000Z","updated_at":"2025-01-22T15:28:53.000Z","dependencies_parsed_at":"2022-08-09T06:01:49.347Z","dependency_job_id":null,"html_url":"https://github.com/bsteps/flutter_photon_rs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bsteps/flutter_photon_rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bsteps%2Fflutter_photon_rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bsteps%2Fflutter_photon_rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bsteps%2Fflutter_photon_rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bsteps%2Fflutter_photon_rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bsteps","download_url":"https://codeload.github.com/bsteps/flutter_photon_rs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bsteps%2Fflutter_photon_rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30240896,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-08T00:58:18.660Z","status":"ssl_error","status_checked_at":"2026-03-08T00:55:48.608Z","response_time":53,"last_error":"SSL_read: 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":["ffi-bindings","flutter","flutter-plugin","flutter-rust-bridge","rust"],"created_at":"2024-08-01T12:01:32.014Z","updated_at":"2026-03-08T01:31:34.634Z","avatar_url":"https://github.com/bsteps.png","language":"Dart","funding_links":[],"categories":["Dart"],"sub_categories":[],"readme":"# Photon For Flutter\n \n`flutter_photon_rs` is dart ffi to [`photon`](https://github.com/silvia-odwyer/photon) library, Photon is a high-performance Rust image processing library, which compiles to WebAssembly, allowing for safe, blazing-fast image processing both natively and on the web.\n\nSupported platforms:\n- Android\n- IOS\n\n## 💻 Usage\n```dart\nimport 'package:flutter_photon_rs/flutter_photon_rs.dart';\nimport 'package:image_picker/image_picker.dart';\n\n// Use ImagePicker to get image from source and read as bytes\nfinal _picker = ImagePicker();\nfinal image = await _picker.getImage(\n  source: ImageSource.gallery,\n);\n\nif (image != null) {\n  final imageBytes = await image.readAsBytes();\n  \n  // returns Uint8List which you can use to store, \n  // or show on Image.memory() widget\n  final bytes = await Photon.process(\n    bytes: imageBytes,\n    filters: [\n      Monochrome.grayscale(),\n      Convolution.gaussianBlur(\n        radius: 20,\n      ),\n      Transform.flipH(),\n    ],\n    outputFormat: OutputFormat.Jpeg,\n  );\n}\n```\n## 🌟 Features\n- [x] Implement Photon rust lib all features\n- [x] Fix Exif Reading (Image Rotation) Issue\n- [x] Make Proper README.md with Documentation\n- [ ] Publish on pub.dev\n- [X] Add Support For IOS\n- [ ] Write Rust And Flutter Test\n- [ ] Benchmark\n- [ ] Refactor Code for readability and efficiency\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbsteps%2Fflutter_photon_rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbsteps%2Fflutter_photon_rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbsteps%2Fflutter_photon_rs/lists"}