{"id":15119368,"url":"https://github.com/steffest/dpaint-js","last_synced_at":"2025-05-15T18:00:23.433Z","repository":{"id":70791166,"uuid":"490436263","full_name":"steffest/DPaint-js","owner":"steffest","description":"Webbased image editor, modeled after the legendary Deluxe Paint with a focus on retro Amiga file formats: read and write Amiga icon files and IFF ILBM images","archived":false,"fork":false,"pushed_at":"2025-02-12T10:12:53.000Z","size":4921,"stargazers_count":569,"open_issues_count":22,"forks_count":33,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-04-07T23:07:49.960Z","etag":null,"topics":["amiga","javascript"],"latest_commit_sha":null,"homepage":"https://www.stef.be/dpaint/","language":"JavaScript","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/steffest.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license.txt","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-05-09T20:33:55.000Z","updated_at":"2025-04-03T14:27:46.000Z","dependencies_parsed_at":"2024-02-08T22:02:33.516Z","dependency_job_id":"1e72d0cf-d8a8-444b-9fab-6d81e06c9a09","html_url":"https://github.com/steffest/DPaint-js","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steffest%2FDPaint-js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steffest%2FDPaint-js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steffest%2FDPaint-js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steffest%2FDPaint-js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/steffest","download_url":"https://codeload.github.com/steffest/DPaint-js/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254394718,"owners_count":22063984,"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":["amiga","javascript"],"created_at":"2024-09-26T01:54:26.535Z","updated_at":"2025-05-15T18:00:23.412Z","avatar_url":"https://github.com/steffest.png","language":"JavaScript","readme":"# DPaint.js\nWebbased image editor modeled after the legendary [Deluxe Paint](https://en.wikipedia.org/wiki/Deluxe_Paint) with a focus on retro Amiga file formats.\nNext to modern image formats, DPaint.js can read and write Amiga icon files and IFF ILBM images.\n\n![DPaint.js Logo](./_img/dpaint-logo.png?raw=true)\n\nOnline version available at https://www.stef.be/dpaint/\n\n![DPaint.js UI](./_img/ui.png?raw=true)\n\n## Main Features\n - Fully Featured image editor with a.o.\n   - Layers\n   - Selections\n   - Masking\n   - Transformation tools\n   - Effects and filters\n   - Multiple undo/redo\n   - Copy/Paste from any other image program or image source\n   - Customizable dither tools\n - Heavy focus on colour reduction with fine-grained dithering options\n - Amiga focus\n   - Read/write/convert Amiga icon files (all formats)\n   - Reads IFF ILBM images (all formats including HAM and 24-bit)\n   - Writes IFF ILBM images (up to 256 colors)\n   - Read and write directly from Amiga Disk Files (ADF)\n   - Embedded Amiga Emulator to preview your work in the real Deluxe Paint.\n   - Limit the palette to 12 bit for Amiga OCS/ECS mode, or 9 bit for Atari ST mode.\n - Deluxe Paint Legacy\n   - Supports PBM files as used by the PC version of Deluxe Paint (Thanks to [Michael Smith](https://github.com/michaelshmitty))\n   - Supports Deluxe Paint Atari ST compression modes (Thanks to [Nicolas Ramz](https://github.com/warpdesign))\n## Free and Open\nIt runs in your browser, works on any system and works fine on touch-screen devices like iPads.  \nIt is written in 100% plain JavaScript and has no dependencies.  \nIt's 100% free, no ads, no tracking, no accounts, no nothing.  \nAll processing is done in your browser, no data is sent to any server.  \n\nThe only part that is not included in this repository is the Amiga Emulator Files.\n(The emulator is based on the [Scripted Amiga Emulator](https://github.com/naTmeg/ScriptedAmigaEmulator))\n\n## Building\nDPaint.js doesn't need building.  \nIt also has zero dependencies so there's no need to install anything.  \nDPaint.js is written using ES6 modules and runs out of the box in modern browsers.  \nJust serve \"index.html\" from a webserver and you're good to go.  \n\nThere's an optional build step to create a compact version of DPaint.js if you like.  \nI'm using [Parcel.js](https://parceljs.org/) for this.  \nFor convenience, I've included a \"package.json\" file.  \nopen a terminal and run `npm install` to install Parcel.js and its dependencies.\nThen run `npm run build` to create a compact version of DPaint.js in the \"dist\" folder.\n\n## Documentation\nDocumentation can be found at https://www.stef.be/dpaint/docs/\n\n## Running offline\nDpaint.js is a web application, not an app that you install on your computer.\nThat being said: DPaint.js has no online dependencies and runs fine offline if you want.\nOne caveat: you have to serve the index.html file from a webserver, not just open it in your browser.  \nA quick way to do this is - for example - using the [Spark](https://github.com/rif/spark/releases) app.  \n[Download the binary](https://github.com/rif/spark/releases) for your platform, drop the Spark executable in the folder where you downloaded the Dpaint.js source files and run it.\nIf you then point your browser to http://localhost:8080/ it should work.  \n\nIf you are using Chrome, you can also \"install\" dpaint.js as app.  \n![image](https://github.com/user-attachments/assets/fa4a1e8b-4e45-4fe1-9d77-8b1e3364e867)  \nIt will then show up your Chrome apps and work offline.  \n\n\n## Contributing\nCurrent version is still alpha.  \nI'm sure there are bugs and missing features.  \nBug reports and pull requests are welcome.\n\n### Missing Features\nPlanned for the next release, already in the works:\n   - \u003cstrike\u003eColor Cycling\u003c/strike\u003e (done)\n   - Animation support (GIf and Amiga ANIM files)\n   - \u003cstrike\u003eShading/transparency tools that stay within the palette.\u003c/strike\u003e (done)\n\nPlanned for a future release if there's a need for it.\n  - Support for non-square pixel modes such as HiRes and Interlaced\n  - PSD import and export\n  - SpriteSheet support\n  - Write HAM,SHAM and Dynamic HiRes images\n  - \n## Browser Quirks\nPlease note that the **Brave** browser is using \"farbling\" that introduces random image noise in certain conditions.\nThey claim this is to protect your privacy.\nAlthough I totally understand the sentiment, In my opinion a browser should not actively alter the content of a webpage or intentionally break functionality.  \nBut hey, who am I to speak, it's a free world.\nJust be aware that if you are using Brave, you will run into issues, so please use another browser for this app or \"lower you shields\" for this app in Brave.\n\n\n","funding_links":[],"categories":["Other Tools"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteffest%2Fdpaint-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsteffest%2Fdpaint-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteffest%2Fdpaint-js/lists"}