{"id":15549741,"url":"https://github.com/tfogo/bitmapapl","last_synced_at":"2026-01-07T13:42:22.386Z","repository":{"id":73787298,"uuid":"83877773","full_name":"tfogo/BitmapAPL","owner":"tfogo","description":"APL library for manipulating bitmap images","archived":false,"fork":false,"pushed_at":"2017-11-12T03:28:09.000Z","size":4,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-29T01:43:51.337Z","etag":null,"topics":["apl","bitmap","image-processing"],"latest_commit_sha":null,"homepage":null,"language":"APL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tfogo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2017-03-04T08:07:05.000Z","updated_at":"2025-01-10T15:17:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"c875ea14-892b-41b0-a224-880f7d6a816c","html_url":"https://github.com/tfogo/BitmapAPL","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tfogo/BitmapAPL","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfogo%2FBitmapAPL","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfogo%2FBitmapAPL/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfogo%2FBitmapAPL/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfogo%2FBitmapAPL/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tfogo","download_url":"https://codeload.github.com/tfogo/BitmapAPL/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfogo%2FBitmapAPL/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":283943909,"owners_count":26920581,"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-11-11T02:00:06.610Z","response_time":65,"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":["apl","bitmap","image-processing"],"created_at":"2024-10-02T13:41:28.663Z","updated_at":"2025-11-11T23:01:01.882Z","avatar_url":"https://github.com/tfogo.png","language":"APL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bitmap APL\n\nAn APL class for manipulating bitmap images. The library can currently load bitmap images from the filesystem, apply Gaussian blurs, and write files back to the filesystem. The library uses some system functions which are specific to Dyalog APL.\n\nCurrently only works with 32-bit files.\n\n## Installation\n\nAfter cloning the repository, you can add the `Bitmap` class to your workspace using SALT:\n\n```APL\n      ⎕←⎕SE.SALT.Load '/path/to//bitmapAPL/bitmap.dyalog'\n#.Bitmap\n```\n\n## Usage\n\nYou can parse a bitmap file by passing a\n\n```APL\n      bm←⎕NEW Bitmap '/path/to/bitmap/file.bmp'\n```\n\nThis will create a 3D matrix `bm.ImageTable` which contains the bytes of color for the bitmap. The shape of the matrix is `(colors, height, width)`. That's a pane of pixel values for each color.\n\n```APL\n      DISPLAY bm.ImageTable\n┌┌→──────────────────┐\n↓↓ 70  94  98  94  70│\n││101 135 141 135 101│\n││ 94 126 131 126  94│\n││ 87 116 121 116  87│\n││ 45  60  63  60  45│\n││                   │\n││ 95 127 133 127  95│\n││115 154 161 154 115│\n││139 186 195 186 139│\n││122 164 171 164 122│\n││ 52  69  73  69  52│\n││                   │\n││ 77 104 108 104  77│\n││ 53  71  75  71  53│\n││ 53  71  75  71  53│\n││ 77 104 108 104  77│\n││ 44  59  62  59  44│\n└└~──────────────────┘\n      ⍴ bm.ImageTable\n3 5 5\n```\n\nThe library has a built in Gaussian blur:\n\n```APL\n      bm.gaussianBlur 10 0.5      ⍝ Blur radius 10, sigma 0.5\n```\n\nFinally, you can write the file using `bm.write`:\n\n```APL\n      bm.write /path/to/output/file.bmp\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftfogo%2Fbitmapapl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftfogo%2Fbitmapapl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftfogo%2Fbitmapapl/lists"}