{"id":15684879,"url":"https://github.com/matmen/imagescript-docs","last_synced_at":"2025-08-10T15:07:32.582Z","repository":{"id":219992036,"uuid":"362227611","full_name":"matmen/ImageScript-Docs","owner":"matmen","description":null,"archived":false,"fork":false,"pushed_at":"2024-01-30T17:52:43.000Z","size":291,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-16T19:53:35.763Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/matmen.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}},"created_at":"2021-04-27T19:26:57.000Z","updated_at":"2023-06-14T17:07:49.000Z","dependencies_parsed_at":"2024-01-30T19:14:58.101Z","dependency_job_id":null,"html_url":"https://github.com/matmen/ImageScript-Docs","commit_stats":null,"previous_names":["matmen/imagescript-docs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/matmen/ImageScript-Docs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matmen%2FImageScript-Docs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matmen%2FImageScript-Docs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matmen%2FImageScript-Docs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matmen%2FImageScript-Docs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matmen","download_url":"https://codeload.github.com/matmen/ImageScript-Docs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matmen%2FImageScript-Docs/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269740355,"owners_count":24467757,"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-08-10T02:00:08.965Z","response_time":71,"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":[],"created_at":"2024-10-03T17:22:08.434Z","updated_at":"2025-08-10T15:07:32.509Z","avatar_url":"https://github.com/matmen.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ImageScript\n##### zero-dependency JavaScript image manipulation\n[![Discord Server](https://img.shields.io/discord/691713541262147687.svg?label=Discord\u0026logo=discord\u0026logoColor=ffffff\u0026color=7389D8\u0026labelColor=6A7EC2\u0026style=for-the-badge)](https://discord.gg/8hPrwAH)\n[![Documentation](https://img.shields.io/badge/Documentation-informational?style=for-the-badge)](https://imagescript.matmen.dev/)\n[![Github](https://img.shields.io/badge/Github-Repository-181717?logo=github\u0026style=for-the-badge)](https://github.com/matmen/ImageScript)\n[![deno.land](https://shields.io/badge/deno.land-gray?logo=deno\u0026style=for-the-badge)](https://deno.land/x/imagescript)\n[![NPM](https://nodei.co/npm/imagescript.png)](https://www.npmjs.com/package/imagescript)\n\n---\n\n**ImageScript** is a zero-dependency alternative to common JavaScript bitmap image manipulation tools. It can achieve\nmuch more performant results by utilizing lower-level memory access, less memory copying and WebAssembly / native\nbinaries for decoding and encoding.\n\n---\n\n### Features\n\n- [Decoding images](https://imagescript.matmen.dev/Image.html#.decode)\n  - PNGs (grayscale, RGB, indexed colors) with and without alpha channels\n  - JPEGs (grayscale, RGB, CMYK)\n  - TIFFs\n- [Decoding GIFs](https://imagescript.matmen.dev/GIF.html#.decode)\n- [Rendering SVGs](https://imagescript.matmen.dev/Image.html#.renderSVG)\n- [Rendering vector fonts](https://imagescript.matmen.dev/Image.html#.renderText)\n- Image manipulation functions ([crop](https://imagescript.matmen.dev/Image.html#crop)\n  , [rotate](https://imagescript.matmen.dev/Image.html#rotate)\n  , [composite](https://imagescript.matmen.dev/Image.html#composite), ...)\n- Color manipulation functions ([invert](https://imagescript.matmen.dev/Image.html##invert)\n  , [hueShift](https://imagescript.matmen.dev/Image.html##hueshift), ...)\n- Color information functions ([averageColor](https://imagescript.matmen.dev/Image.html#averageColor)\n  , [dominantColor](https://imagescript.matmen.dev/Image.html#dominantColor), ...)\n- Encoding images as [PNGs](https://imagescript.matmen.dev/Image.html#encode)\n  , [JPEGs](https://imagescript.matmen.dev/Image.html#encodejpeg)\n  , [WEBPs](https://imagescript.matmen.dev/Image.html#encodeWEBP)\n  and [GIFs](https://imagescript.matmen.dev/GIF.html#encode)\n\n---\n\n### Example\n\nCheck out one of these examples:\n* **NodeJS**: [README image generation](https://github.com/matmen/ImageScript/blob/master/tests/readme.js)\n* **Deno**: [README image generation](https://github.com/matmen/ImageScript/blob/deno/tests/readme.js)\n* **Browser**: [Grayscale Conversion Example Page](https://github.com/matmen/ImageScript/blob/browser/example/index.html) (via CDN)\n\n[![Example](https://github.com/matmen/ImageScript/raw/master/tests/targets/readme.png)](https://github.com/matmen/ImageScript/blob/master/tests/readme.js)\n\n---\n\nIf you have any additional questions, feel free to join the [discord support server](https://discord.gg/8hPrwAH).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatmen%2Fimagescript-docs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatmen%2Fimagescript-docs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatmen%2Fimagescript-docs/lists"}