{"id":16186966,"url":"https://github.com/robloach/raylib-imagedraw","last_synced_at":"2026-02-17T18:04:16.526Z","repository":{"id":66036476,"uuid":"538027986","full_name":"RobLoach/raylib-imagedraw","owner":"RobLoach","description":"Extra Image manipulation methods for raylib.","archived":false,"fork":false,"pushed_at":"2022-09-26T14:00:47.000Z","size":207,"stargazers_count":2,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-07T19:45:22.853Z","etag":null,"topics":["raylib"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"zlib","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RobLoach.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":"2022-09-18T06:59:20.000Z","updated_at":"2023-01-12T06:08:32.000Z","dependencies_parsed_at":"2023-02-22T22:01:39.030Z","dependency_job_id":null,"html_url":"https://github.com/RobLoach/raylib-imagedraw","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RobLoach/raylib-imagedraw","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobLoach%2Fraylib-imagedraw","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobLoach%2Fraylib-imagedraw/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobLoach%2Fraylib-imagedraw/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobLoach%2Fraylib-imagedraw/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RobLoach","download_url":"https://codeload.github.com/RobLoach/raylib-imagedraw/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobLoach%2Fraylib-imagedraw/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29552255,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T17:56:56.811Z","status":"ssl_error","status_checked_at":"2026-02-17T17:56:55.544Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["raylib"],"created_at":"2024-10-10T07:19:57.192Z","updated_at":"2026-02-17T18:04:16.507Z","avatar_url":"https://github.com/RobLoach.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# raylib-imagedraw\n\nExtra image manipulation software rendering library functionality for raylib.\n\n[![Screenshot](examples/raylib-imagedraw-example.png)](examples/raylib-imagedraw-example.c)\n\n## Usage\n\n``` c\n#include \"raylib.h\"\n\n#define RAYLIB_IMAGEDRAW_IMPLEMENTATION\n#include \"raylib-imagedraw.h\"\n\nint main() {\n    const int screenWidth = 800;\n    const int screenHeight = 450;\n    InitWindow(screenWidth, screenHeight, \"[raylib-imagedraw] example\");\n    Image screen = GenImageColor(screenWidth, screenHeight, RAYWHITE);\n\n    Vector2 points[3] = {\n        {10, 60},\n        {80, 65},\n        {20, 80}\n    };\n    ImageDrawPoly(\u0026screen, points, 3, ORANGE);\n    ImageDrawPolyLines(\u0026screen, points, 3, BLACK);\n\n    while (!WindowShouldClose()) {\n        BeginDrawing();\n        {\n            ClearBackground(RAYWHITE);\n            DrawImage(screen);\n        }\n        EndDrawing();\n    }\n\n    UnloadImage(screen);\n    CloseWindow();\n\n    return 0;\n}\n```\n\n## API\n\n``` c\nvoid ImageDrawLineHorizontal(Image* dst, int posX, int posY, int width, Color color);\nvoid ImageDrawLineVertical(Image* dst, int posX, int posY, int height, Color color);\nvoid ImageDrawPoly(Image* dst, Vector2* points, int pointCount, Color color);\nvoid ImageDrawPolyLines(Image* dst, Vector2* points, int pointCount, Color color);\nvoid ImageDrawEllipse(Image* dst, int centerX, int centerY, int radiusX, int radiusY, Color color);\nvoid ImageDrawEllipseLines(Image* dst, int centerX, int centerY, int radiusX, int radiusY, Color color);\nvoid ImageDrawImage(Image* dst, Image src, int posX, int posY, Color tint);\nImage ImageRotate(Image src, float radians);\nvoid DrawImage(Image image, int posX, int posY);\n```\n\n## License\n\n*raylib-imagedraw* is licensed under an unmodified zlib/libpng license, which is an OSI-certified, BSD-like license that allows static linking with closed source software. Check [LICENSE](LICENSE) for further details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobloach%2Fraylib-imagedraw","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobloach%2Fraylib-imagedraw","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobloach%2Fraylib-imagedraw/lists"}