{"id":26076727,"url":"https://github.com/helmare/fastbitmap","last_synced_at":"2026-04-02T02:44:00.244Z","repository":{"id":47331019,"uuid":"212230651","full_name":"Helmare/FastBitmap","owner":"Helmare","description":"A .NET library that wraps the System.Drawing.Bitmap class for improved pixel read/write performance.","archived":false,"fork":false,"pushed_at":"2023-07-16T13:34:55.000Z","size":3774,"stargazers_count":9,"open_issues_count":1,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-11T21:52:24.803Z","etag":null,"topics":["csharp","csharp-library","dotnet","dotnet5","image-processing"],"latest_commit_sha":null,"homepage":"","language":"C#","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/Helmare.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2019-10-02T01:13:58.000Z","updated_at":"2024-12-02T14:01:48.000Z","dependencies_parsed_at":"2024-01-25T02:20:57.779Z","dependency_job_id":"43000e35-93d6-4adb-9e40-1131105df54e","html_url":"https://github.com/Helmare/FastBitmap","commit_stats":null,"previous_names":["hazdryx/fastbitmap","helmare/fastbitmap","happiidreamer/fastbitmap"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Helmare%2FFastBitmap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Helmare%2FFastBitmap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Helmare%2FFastBitmap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Helmare%2FFastBitmap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Helmare","download_url":"https://codeload.github.com/Helmare/FastBitmap/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248487733,"owners_count":21112188,"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","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":["csharp","csharp-library","dotnet","dotnet5","image-processing"],"created_at":"2025-03-09T02:10:45.668Z","updated_at":"2026-04-02T02:44:00.190Z","avatar_url":"https://github.com/Helmare.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FastBitmap\nA .NET Standard library which wraps the System.Drawing.Bitmap class for improved pixel read/write performance.\n\n[![nuget](https://img.shields.io/nuget/v/Hazdryx.FastBitmap.svg)](https://www.nuget.org/packages/Hazdryx.FastBitmap/) \n![build](https://github.com/hazdryx/FastBitmap/actions/workflows/publish.yml/badge.svg)\n\n## Benchmarks\nThe benchmark graph below shows just how much faster FastBitmap is. When using the fastest mode it can see\nspeed increases up to 20,000% on a single core.\n![](https://hazdryx.com/cdn/FastBitmap-Benchmarks.png)\nThese benchmarks were taken on 9/5/2020 using a Ryzen 9 3950X 16C/32T CPU\n\n## Example\n```C#\n// Loads image from file.\nusing (FastBitmap bmp = FastBitmap.FromFile(\"image.png\"))\n{\n\t// Gets the color of pixel 0, 0 and sets it to pixel 1, 1.\n\tColor c = bmp.Get(0, 0);\n\tbmp.Set(1, 1, c);\n\n\t// Gets the color of pixel at index 1 and sets it to index 2.\n\t// Using indices is faster than coordinates.\n\tc = bmp.Get(1);\n\tbmp.Set(2, c);\n\n\t// Grabbing color from index 3 and setting it to index 4.\n\t// Using int (ARGB32) for color is much faster than the other methods.\n\tint color32 = bmp.GetI(3);\n\tbmp.SetI(4, color32);\n\n\t// Saves image to a file.\n\tbmp.Save(\"image0.png\", ImageFormat.Png);\n}\n```\n\n## Contribute\nWant to help move this project forward? Consider contributing to the project. There are many different ways you can help out, even if you don't want to submit code changes.\n\n### Use In Your Projects\nThe easiest way to contribute is to have this repo as a dependency in your projects. This contribution gives the project more recognition and likely to be seen by other developers, thereby growing the community.\n\n### Submit Pull Requests\nIf you would like to make changes to the codebase or documentation, you can submit a pull request. Make sure to check out the [CONTRIBUTE.md](https://github.com/hazdryx/FastBitmap/blob/master/CONTRIBUTING.md) for pull request requirements.\n\n## Known Issues\n[#4](https://github.com/hazdryx/FastBitmap/issues/4) On some Linux distros, performing GDI+ (System.Drawing.Graphics) operations result in a desync from the BaseBitmap and FastBitmap.Data.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelmare%2Ffastbitmap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelmare%2Ffastbitmap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelmare%2Ffastbitmap/lists"}