{"id":20345286,"url":"https://github.com/meokullu/colorizenumber","last_synced_at":"2026-06-01T03:32:36.431Z","repository":{"id":191006634,"uuid":"683754179","full_name":"meokullu/ColorizeNumber","owner":"meokullu","description":"ColorizeNumber - Bodrum Papatya, visualizes numeric data into colors which creates an image.","archived":false,"fork":false,"pushed_at":"2025-01-26T02:02:17.000Z","size":1161,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-19T19:32:27.683Z","etag":null,"topics":["color","colorize","colors","data","data-visualization","visualization","vizualize-data"],"latest_commit_sha":null,"homepage":"https://meokullu.github.io/ColorizeNumber/","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/meokullu.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-27T15:45:25.000Z","updated_at":"2025-01-26T02:02:21.000Z","dependencies_parsed_at":"2024-02-26T05:36:15.147Z","dependency_job_id":"2a22756d-a148-4cdf-a731-33490eeec634","html_url":"https://github.com/meokullu/ColorizeNumber","commit_stats":null,"previous_names":["meokullu/colorizenumber"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/meokullu/ColorizeNumber","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meokullu%2FColorizeNumber","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meokullu%2FColorizeNumber/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meokullu%2FColorizeNumber/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meokullu%2FColorizeNumber/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meokullu","download_url":"https://codeload.github.com/meokullu/ColorizeNumber/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meokullu%2FColorizeNumber/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33759178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"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":["color","colorize","colors","data","data-visualization","visualization","vizualize-data"],"created_at":"2024-11-14T22:07:40.150Z","updated_at":"2026-06-01T03:32:36.412Z","avatar_url":"https://github.com/meokullu.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"## ColorizeNumber\n[![ColorizeNumber](https://img.shields.io/nuget/v/ColorizeNumber.svg)](https://www.nuget.org/packages/ColorizeNumber/) [![ColorizeNumber](https://img.shields.io/nuget/dt/ColorizeNumber.svg)](https://www.nuget.org/packages/ColorizeNumber/) [![License](https://img.shields.io/github/license/meokullu/ColorizeNumber.svg)](https://github.com/meokullu/ColorizeNumber/blob/master/LICENSE)\n\nColorizeNumber - Bodrum Papatya is a project to visualize numeric data.\n\n![SocialPreview](https://github.com/meokullu/ColorizeNumber/assets/4971757/ba6c05fb-eb6e-452f-b6a5-55b71aa146db)\n\n### Description\nColorizeNumber - Bodrum Papatya helps you to visualize numeric data.\n\n### How to download\nRelease: [Latest release](https://github.com/meokullu/ColorizeNumber/releases/latest)\n\n[Download on NuGet gallery](https://www.nuget.org/packages/ColorizeNumber/)\n\n.NET CLI:\n```\ndotnet add package ColorizeNumber\n```\n\n### Example Usage\n\n```\nTestColorizeNumber()\n{\n  // Data - 25 charachters\n  string dataText = \"1122334455667788990012345\";\n\n  // Data to Frame (25 byte length)\n  Frame frame = CreateFrameFromData(dataText, 5, 5, colorizeFunction: ColorizeFunc);\n\n  // Frame to Bitmap (5x5)\n  Bitmap bitmap = CreateBitmap(frame);\n\n  // Saving bitmap.\n  bitmap.Save(\"./ColorizeNumberTest.bmp\", ImageFormat.Bmp);\n\n  // EasySaver.BitmapFile is providing saving methods for bitmap files.\n  // It automatically saves bitmap with specified naming formats.\n  // https://github.com/meokullu/EasySaver/tree/master/EasySaver.BitmapFile\n  // https://www.nuget.org/packages/EasySaver.BitmapFile/\n  // Save(Bitmap bitmap)\n  // SaveToFolder(Bitmap bitmap)\n}\n```\n```\nCreateFrameRandomly(int width, int height);\n```\n\n```\nCreateFrameRandomly(int width, int height, RGBColor[] colorList)\n```\n\n![2024-02-26-07-53-44-759](https://github.com/meokullu/ColorizeNumber/assets/4971757/fe66bb0b-6235-4d80-808e-66488f4999f6)\n\n```\nCreateFrameRandomly(int width, int height)\n```\n\n![2024-02-26-07-54-08-927](https://github.com/meokullu/ColorizeNumber/assets/4971757/c4d12b40-bdb0-4efa-ba01-cc182242dece)\n\n### Build your own colorize function.\n```\nRGBColor MyColorizeFunc(byte number)\n{\n  if (number \u003c 5) // If number is 0, 1, 2, 3, 4 returns white color.\n  {\n    return new RGBColor(red: 255, green: 255, blue: 255);\n  }\n  else // If number is 5, 6, 7, 8, 9 returns black color.\n  {\n    return new RGBColor(red: 0, green: 0, blue: 0);\n  }\n}\n```\n```\nGetRandomColor();\n```\n```\nGetRandomColor(RandomColorLimit limits)\n```\n\u003e [!TIP]\n\u003e To save reporting result easily, you can use EasySaver.BitmapFile.\n```\ndotnet add package EasySaver.BitmapFile\n```\n\n\nTo check listed methods, example of output visit wiki page. [ColorizeNumber Wiki](https://github.com/meokullu/ColorizeNumber/wiki/Home)\n\n### Version History\nSee [Changelog](https://github.com/meokullu/ColorizeNumber/blob/master/CHANGELOG.md)\n\n### Task list\n* Create an issue or check task list: [Issues](https://github.com/meokullu/ColorizeNumber/issues)\n\n### Licence\nThis repository is licensed under the \"MIT\" license. See [MIT license](https://github.com/meokullu/ColorizeNumber/blob/master/LICENSE).\n\n### Authors \u0026 Contributing\n\nIf you'd like to contribute, then contribute. [contributing guide](https://github.com/meokullu/ColorizeNumber/blob/master/CONTRIBUTING.md).\n\n[![Contributors](https://contrib.rocks/image?repo=meokullu/ColorizeNumber)](https://github.com/meokullu/ColorizeNumber/graphs/contributors)\n\n### Help\nTwitter: Enes Okullu [@enesokullu](https://twitter.com/EnesOkullu)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeokullu%2Fcolorizenumber","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeokullu%2Fcolorizenumber","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeokullu%2Fcolorizenumber/lists"}