jspaint/README.md

746 lines
39 KiB
Markdown
Raw Permalink Normal View History

2014-05-30 07:00:01 +00:00
# [![](images/icons/32x32.png) JS Paint](https://jspaint.app)
2014-09-22 10:13:18 +00:00
2022-01-16 00:29:03 +00:00
A pixel-perfect web-based MS Paint remake and more... [Try it out!](https://jspaint.app)
2015-10-19 19:11:10 +00:00
2022-04-12 00:44:19 +00:00
JS Paint recreates every tool and menu of MS Paint, and even [little-known features](#did-you-know), to a high degree of fidelity.
It supports themes, additional file types, and accessibility features like Eye Gaze Mode and Speech Recognition.
2018-06-13 02:37:33 +00:00
![Screenshot](images/meta/main-screenshot.png)
2015-02-24 00:39:43 +00:00
2022-01-16 00:33:09 +00:00
Ah yes, good old Paint. Not the one with the [ribbons][]
2015-10-19 19:11:10 +00:00
or the [new skeuomorphic one][Fresh Paint] with the interface that can take up nearly half the screen.
2019-11-10 16:38:06 +00:00
(And not the even newer [Paint 3D][].)
2017-06-02 04:59:44 +00:00
[ribbons]: https://www.google.com/search?tbm=isch&q=MS+Paint+Windows+7+ribbons "Google Search: MS Paint Windows 7 ribbons"
[Fresh Paint]: https://www.google.com/search?tbm=isch&q=MS+Fresh+Paint "Google Search: MS Fresh Paint"
[Paint 3D]: https://www.microsoft.com/en-us/store/p/paint-3d-preview/9nblggh5fv99
2015-10-19 19:11:10 +00:00
2022-01-16 00:33:09 +00:00
Windows 95, 98, and XP were the golden years of Paint.
2015-10-19 19:11:10 +00:00
You had a tool box and a color box, a foreground color and a background color,
and that was all you needed.
Things were simple.
But we want to undo more than three actions.
We want to edit transparent images.
2022-01-16 00:33:09 +00:00
We can't just keep using the old Paint.
2015-10-19 19:11:10 +00:00
So that's why I'm making JS Paint.
2022-01-16 00:33:09 +00:00
I want to bring good old Paint into the modern era.
2015-10-19 19:11:10 +00:00
2014-08-10 03:06:33 +00:00
2014-09-29 01:19:48 +00:00
#### Current improvements include:
2022-07-28 19:11:17 +00:00
* Open source ([MIT licensed](LICENSE.txt))
2018-01-22 07:46:27 +00:00
* Cross-platform
* Mobile friendly
* Touch support: use two fingers to pan the view, and pinch to zoom
* Click/tap the selected colors area to swap the foreground and background colors
* **View > Fullscreen** to toggle fullscreen mode, nice for small screens
* Web features
* **File > Load From URL...** to open an image from the Web.
* **File > Upload to Imgur** to upload the current image to Imgur.
* **Paste** supports loading from URLs.
* You can create links that will open an image from the Web in JS Paint. For example, this link will start with an isometric grid as a template: <https://jspaint.app/#load:https://i.imgur.com/zJMrWwb.png>
* Rudimentary **multi-user** collaboration support.
Start up a session at
[jspaint.app/#session:multi-user-test](https://jspaint.app/#session:multi-user-test)
and send the link to your friends!
It isn't seamless; actions by other users interrupt what you're doing, and visa versa.
Sessions are not private, and you may lose your work at any time.
If you want better collaboration support, follow the development of [Mopaint](https://github.com/1j01/mopaint).
* **Extras > Themes** to change the look of the app. Dark mode included.
* [Eye Gaze Mode](https://jspaint.app/#eye-gaze-mode), for use with an eye tracker, head tracker, or other coarse input device, accessible from **Extras > Eye Gaze Mode**. With just a webcam, you can try it out with [Enable Viacam](https://eviacam.crea-si.com/) (head tracker) or [GazePointer](https://sourceforge.net/projects/gazepointer/) (eye tracker).
2020-05-30 09:57:20 +00:00
* [Speech Recognition Mode](https://jspaint.app/#speech-recognition-mode).
Using your voice you can select tools and colors, pan the view ("scroll down and to the left", or "go southwest", etc.), explore the menus (but you can activate any menu item without opening the menus first), interact with windows (including scrolling the history view with "scroll up"/"scroll down" etc.), dictate text with the Text tool, and even tell the application to sketch things (for instance, "draw a house")
2018-01-22 07:46:27 +00:00
* Create an animated GIF from the current document history.
Accessible from the Extras menu or with <kbd>Ctrl+Shift+G</kbd>.
It's pretty nifty, you should try it out!
You might want to limit the size of the image though.
* Load and save [many different palette formats](#color-palette-formats) with **Colors > Get Colors** and **Colors > Save Colors**.
(I made a library for this: <img src="images/anypalette-logo-128x128.png" height="16"> [AnyPalette.js](https://github.com/1j01/anypalette.js).)
* You can also drag and drop palette files into the app to load.
Editing Features:
* Use Alt+Mousewheel to zoom in and out
* Edit transparent images! To create a transparent image,
go to **Image > Attributes...** and select Transparent,
then OK, and then **Image > Clear Image** or use the Eraser tool.
Images with *any* translucent pixels will open in Transparent mode.
* You can crop the image by making a selection while holding <kbd>Ctrl</kbd>
2018-06-29 06:14:31 +00:00
* Keyboard shortcuts for rotation: <kbd>Ctrl+.</kbd> and <kbd>Ctrl+,</kbd> (<kbd><</kbd> and <kbd>></kbd>)
* Rotate by any arbitrary angle in **Image > Flip/Rotate**
* In **Image > Stretch/Skew**, you can stretch more than 500% at once
2019-10-03 19:54:20 +00:00
* Zoom to an arbitrary scale in **View > Zoom > Custom...**
2020-05-30 09:57:20 +00:00
* Zoom to fit the canvas within the window with **View > Zoom > Zoom To Window**
2019-10-03 19:54:20 +00:00
* Non-contiguous fill: Replace a color in the entire image by holding <kbd>Shift</kbd> when using the fill tool
Miscellaneous Improvements:
* [Vertical Color Box mode](https://jspaint.app/#vertical-color-box-mode), accessible from **Extras > Vertical Color Box**
* You can use the Text tool at any zoom level (and it previews the exact pixels that will end up on the canvas).
2019-12-08 00:24:50 +00:00
* Spellcheck is available in the textbox if your browser supports it.
2021-12-07 19:09:12 +00:00
* Resize handles are easier to grab than in Windows 10's Paint.
* Omits some Thumbnail view bugs, like the selection showing in the wrong place.
* Unlimited undos/redos (as opposed to a measly 3 in Windows XP,
or a measly 50 in Windows 7)
* Undo history is *nonlinear*, which means if you undo and do something other than redo, the redos aren't discarded. Instead, a new branch is created in the *history tree*. Jump to any point in history with **Edit > History** or <kbd>Ctrl+Shift+Y</kbd>
* Automatically keeps a backup of your image. Only one backup per image tho, which doesn't give you a lot of safety. Remember to save with **File > Save** or <kbd>Ctrl+S</kbd>! Manage backups with **File > Manage Storage**.
<!--
Half-features:
* When you do **Edit > Paste From...** you can select transparent images.
~~You can even paste a transparent animated GIF and then
hold <kbd>Shift</kbd> while dragging the selection to
smear it across the canvas *while it animates*!~~
Update: This was [due to not-to-spec behavior in Chrome.](https://christianheilmann.com/2014/04/16/browser-inconsistencies-animated-gif-and-drawimage/)
I may reimplement this in the future as I really liked this feature.
* You can open SVG files, though only as a bitmap.
(Note: it may open super large, or tiny. There's no option to choose a size when opening.)
-->
2018-06-13 02:37:33 +00:00
![JS Paint drawing of JS Paint on a phone](images/meta/mobipaint.png)
2014-05-30 07:00:01 +00:00
#### Limitations:
2014-09-22 10:13:18 +00:00
2019-12-16 06:49:57 +00:00
A few things with the tools aren't done yet.
See [TODO.md](TODO.md#Tools)
2014-09-22 10:13:18 +00:00
Full clipboard support in the web app requires a browser supporting the [Async Clipboard API w/ Images](https://developers.google.com/web/updates/2019/07/image-support-for-async-clipboard), namely Chrome 76+ at the time of writing.
In other browsers you can still can copy with <kbd>Ctrl+C</kbd>, cut with <kbd>Ctrl+X</kbd>, and paste with <kbd>Ctrl+V</kbd>,
2014-11-25 05:39:16 +00:00
but data copied from JS Paint can only be pasted into other instances of JS Paint.
External images can be pasted in.
2018-08-24 22:42:37 +00:00
2014-05-30 07:00:01 +00:00
## Supported File Formats
### Image Formats
⚠️ Saving as JPEG will introduce artifacts that cause problems when using the Fill tool or transparent selections.
⚠️ Saving in some formats will reduce the number of colors in the image.
💡 Unlike in MS Paint, you can use **Edit > Undo** to revert color or quality reduction from saving.
This doesn't undo saving the file, but allows you to then save in a different format with higher quality, using **File > Save As**.
💡 Saving as PNG is recommended as it gives small file sizes while retaining full quality.
2021-08-01 17:02:22 +00:00
| File Extension | Name | Read | Write | Read Palette | Write Palette |
|-------------------------------|-------------------------------|:----:|:-----:|:------------:|:-------------:|
| .png | [PNG][] | ✅ | ✅ | 🔜 | |
| .bmp, .dib | [Monochrome Bitmap][BMP] | ✅ | ✅ | 🔜 | ✅ |
| .bmp, .dib | [16 Color Bitmap][BMP] | ✅ | ✅ | 🔜 | ✅ |
| .bmp, .dib | [256 Color Bitmap][BMP] | ✅ | ✅ | 🔜 | ✅ |
2021-08-01 17:02:22 +00:00
| .bmp, .dib | [24-bit Bitmap][BMP] | ✅ | ✅ | N/A | N/A |
| .tif, .tiff, .dng, .cr2, .nef | [TIFF][] (loads first page) | ✅ | ✅ | | |
| .pdf | [PDF][] (loads first page) | ✅ | | | |
| .webp | [WebP][] | 🌐 | 🌐 | | |
| .gif | [GIF][] | 🌐 | 🌐 | | |
| .jpeg, .jpg | [JPEG][] | 🌐 | 🌐 | N/A | N/A |
| .svg | [SVG][] (only default size) | 🌐 | | | |
| .ico | [ICO][] (only default size) | 🌐 | | | |
Capabilities marked with 🌐 are currently left up to the browser to support or not.
If "Write" is marked with 🌐, the format will appear in the file type dropdown but may not work when you try to save.
For opening files, see Wikipedia's [browser image format support table][] for more information.
Capabilities marked with 🔜 may be coming soon, and N/A means not applicable.
2021-08-01 17:02:22 +00:00
"Read Palette" refers to loading the colors into the Colors box automatically (from an [indexed color][] image),
and "Write Palette" refers to writing an [indexed color][] image.
[PNG]: https://en.wikipedia.org/wiki/Portable_Network_Graphics
[BMP]: https://en.wikipedia.org/wiki/BMP_file_format
2021-08-01 17:02:22 +00:00
[TIFF]: https://en.wikipedia.org/wiki/TIFF
[PDF]: https://en.wikipedia.org/wiki/PDF
[WebP]: https://en.wikipedia.org/wiki/WebP
[GIF]: https://en.wikipedia.org/wiki/GIF
[JPEG]: https://en.wikipedia.org/wiki/JPEG
[SVG]: https://en.wikipedia.org/wiki/Scalable_Vector_Graphics
[ICO]: https://en.wikipedia.org/wiki/ICO_(file_format)
[indexed color]: https://en.wikipedia.org/wiki/Indexed_color
[browser image format support table]: https://en.wikipedia.org/wiki/Comparison_of_web_browsers#Image_format_support
### Color Palette Formats
With **Colors > Save Colors** and **Colors > Get Colors** you can save and load colors
in many different formats, for compatibility with a wide range of programs.
If you want to add extensive palette support to another application, I've made this functionality available as a library:
<img src="images/anypalette-logo-128x128.png" height="16"> [AnyPalette.js](https://github.com/1j01/anypalette.js)
| File Extension | Name | Programs | Read | Write |
|-------------------|-----------------------------------|-----------------------------------------------------------------------------------|:-------:|:-------:|
| .pal | [RIFF] Palette | [MS Paint] for Windows 95 and Windows NT 4.0 | ✅ | ✅ |
| .gpl | [GIMP][Gimp] Palette | [Gimp], [Inkscape], [Krita], [KolourPaint], [Scribus], [CinePaint], [MyPaint] | ✅ | ✅ |
| .aco | Adobe Color Swatch | Adobe [Photoshop] | ✅ | ✅ |
| .ase | Adobe Swatch Exchange | Adobe [Photoshop], [InDesign], and [Illustrator] | ✅ | ✅ |
| .txt | [Paint.NET] Palette | [Paint.NET] | ✅ | ✅ |
| .act | Adobe Color Table | Adobe [Photoshop] and [Illustrator] | ✅ | ✅ |
| .pal, .psppalette | [Paint Shop Pro] Palette | [Paint Shop Pro] (Jasc Software / Corel) | ✅ | ✅ |
| .hpl | [Homesite] Palette | Allaire [Homesite] / Macromedia [ColdFusion] | ✅ | ✅ |
| .cs | ColorSchemer | ColorSchemer Studio | ✅ | |
2021-06-19 23:58:47 +00:00
| .pal | [StarCraft] Palette | [StarCraft] | ✅ | ✅ |
| .wpe | [StarCraft] Terrain Palette | [StarCraft] | ✅ | ✅ |
| .sketchpalette | [Sketch] Palette | [Sketch] | ✅ | ✅ |
| .spl | [Skencil] Palette | [Skencil] (formerly called Sketch) | ✅ | ✅ |
| .soc | StarOffice Colors | [StarOffice], [OpenOffice], [LibreOffice] | ✅ | ✅ |
| .colors | KolourPaint Color Collection | [KolourPaint] | ✅ | ✅ |
| .colors | Plasma Desktop Color Scheme | [KDE] Plasma Desktop | ✅ | |
| .theme | Windows Theme | [Windows] Desktop | ✅ | |
| .themepack | Windows Theme | [Windows] Desktop | ✅ | |
| .css, .scss, .styl| Cascading StyleSheets | Web browsers / web pages | ✅ | ✅ |
| .html, .svg, .js | any text files with CSS colors | Web browsers / web pages | ✅ | |
[RIFF]: https://en.wikipedia.org/wiki/Resource_Interchange_File_Format
[MS Paint]: https://en.wikipedia.org/wiki/Microsoft_Paint
[Paint.NET]: https://www.getpaint.net/
[Paint Shop Pro]: https://www.paintshoppro.com/en/
[StarCraft]: https://en.wikipedia.org/wiki/StarCraft
[Homesite]: https://en.wikipedia.org/wiki/Macromedia_HomeSite
[ColdFusion]: https://en.wikipedia.org/wiki/Adobe_ColdFusion
[StarOffice]: https://en.wikipedia.org/wiki/StarOffice
[OpenOffice]: https://www.openoffice.org/
[LibreOffice]: https://www.libreoffice.org/
[Sketch]: https://www.sketchapp.com/
[Skencil]: https://skencil.org/
[Photoshop]: https://www.adobe.com/products/photoshop.html
[InDesign]: https://www.adobe.com/products/indesign.html
[Illustrator]: https://www.adobe.com/products/illustrator.html
[Gimp]: https://www.gimp.org/
[Inkscape]: https://inkscape.org/en/
[Krita]: https://www.calligra.org/krita/
[KolourPaint]: http://kolourpaint.org/
[KDE]: https://kde.org/
[Windows]: https://en.wikipedia.org/wiki/Microsoft_Windows
[Scribus]: https://www.scribus.net/
[CinePaint]: http://www.cinepaint.org/
[MyPaint]: http://mypaint.org/
2014-05-30 07:00:01 +00:00
## Did you know?
2014-08-10 03:06:33 +00:00
2018-06-29 06:14:31 +00:00
* There's a black and white mode with *patterns* instead of colors in the palette,
which you can get to from **Image > Attributes...**
2014-10-28 23:09:27 +00:00
* You can drag the color box and tool box around if you grab them by the right place.
2015-02-24 00:39:43 +00:00
You can even drag them out into little windows.
2017-06-02 04:59:44 +00:00
You can dock the windows back to the side by double-clicking on their title bars.
2014-10-28 23:09:27 +00:00
* In addition to the left-click foreground color and the right-click background color,
2018-01-22 07:46:27 +00:00
there's a third color you can access by holding <kbd>Ctrl</kbd> while you draw.
2014-10-28 23:09:27 +00:00
It starts out with no color so you'll need to hold <kbd>Ctrl</kbd> and select a color first.
2018-01-22 07:46:27 +00:00
The fancy thing about this color slot is you can
2019-10-28 18:46:03 +00:00
press and release <kbd>Ctrl</kbd> to switch colors *while drawing*.
2014-10-28 23:09:27 +00:00
2018-01-22 07:46:27 +00:00
* You can apply image transformations like Flip/Rotate, Stretch/Skew or Invert (in the Image menu) either to the whole image or to a selection.
2019-10-28 18:46:03 +00:00
Try scribbling with the Free-Form Select tool and then doing **Image > Invert**
2014-12-08 02:45:23 +00:00
* These Tips and Tricks from [a tutorial for MS Paint](https://www.albinoblacksheep.com/tutorial/mspaint)
2019-10-28 18:46:03 +00:00
also work in JS Paint:
2014-02-07 02:47:16 +00:00
2021-06-19 23:58:47 +00:00
* [x] Brush Scaling (<kbd>+</kbd> & <kbd>-</kbd> on the number pad to adjust brush size)
2014-09-22 10:13:18 +00:00
* [x] "Custom Brushes" (hold <kbd>Shift</kbd> and drag the selection to smear it)
* [x] The 'Stamp' "Tool" (hold <kbd>Shift</kbd> and click the selection to stamp it)
2021-06-19 23:58:47 +00:00
* [x] Image Scaling (<kbd>+</kbd> & <kbd>-</kbd> on the number pad to scale the selection by factors of 2)
2018-01-22 07:46:27 +00:00
* [x] Color Replacement (right mouse button with Eraser to selectively replace the foreground color with the background color)
2019-09-30 15:56:07 +00:00
* [x] The Grid (<kbd>Ctrl+G</kbd> & Zoom to 4x+)
2019-09-29 03:16:51 +00:00
* [x] Quick Undo (Pressing a second mouse button cancels the action you were performing.
I also made it redoable, in case you do it by accident!)
2015-06-15 23:50:31 +00:00
* [ ] Scroll Wheel Bug (Hmm, let's maybe not recreate this?)
2014-10-24 00:54:05 +00:00
2018-08-24 22:42:37 +00:00
## Desktop App
2020-04-19 04:06:20 +00:00
JS Paint can be installed as a PWA, altho it doesn't work offline.
2018-08-24 22:42:37 +00:00
2022-01-16 00:29:03 +00:00
(Also I built it into a desktop app with [Electron][] and [Electron Forge][], but this will use unnecessary system resources and is not recommended. You can follow [this issue](https://github.com/1j01/jspaint/issues/2) for the first release.)
2018-08-24 22:42:37 +00:00
[Electron]: https://electronjs.org/
[Electron Forge]: https://electronforge.io/
2018-06-10 03:50:03 +00:00
## Development Setup
[Clone the repo.](https://help.github.com/articles/cloning-a-repository/)
2018-08-24 22:42:37 +00:00
Install [Node.js][] if you don't have it, then open up a command prompt / terminal in the project directory.
2019-11-10 16:38:06 +00:00
### Testing
Run `npm run lint` to check for code problems.
Run `npm test` to run browser-based tests with Cypress. (It's slow to start up and run tests, unfortunately.)
2018-08-24 22:42:37 +00:00
2019-11-10 16:38:06 +00:00
Run `npm run accept` to accept any visual changes.
This unfortunately re-runs all the tests, rather than accepting results of the previous test, so you could end up with different results than the previous test.
If you use [GitHub Desktop](https://desktop.github.com/), you can view diffs of images, in four different modes.
2018-06-10 03:50:03 +00:00
2019-11-10 16:38:06 +00:00
To open the Cypress UI, first run `npm run test:start-server`, then concurrently `npm run cy:open`
Tests are also run in continuous integration [with Travis CI](https://travis-ci.org/1j01/jspaint).
### Web App (https://jspaint.app)
2018-08-24 22:42:37 +00:00
2021-01-31 04:29:44 +00:00
After you've installed dependencies with `npm i`,
use `npm run dev` to start a live-reloading server.
2018-08-24 22:42:37 +00:00
2021-01-31 04:29:44 +00:00
Make sure any layout-important styles go in `layout.css`.
When updating `layout.css`, a right-to-left version of the stylesheet is generated, using [RTLCSS](https://rtlcss.com/).
2020-12-17 19:58:26 +00:00
You should test the RTL layout by changing the language to Arabic or Hebrew.
Go to **Extras > Language > العربية** or **עברית**.
See [Control Directives](https://rtlcss.com/learn/usage-guide/control-directives/) for how to control the RTL layout.
2018-08-24 22:42:37 +00:00
### Desktop App (Electron)
2022-01-16 00:29:03 +00:00
This is basically ready for release, but as of yet unreleased.
2020-04-19 04:06:20 +00:00
2018-08-24 22:42:37 +00:00
- Install dependencies with `npm i`
2021-01-31 03:59:22 +00:00
- Start the electron app with `npm run electron:start`
2018-08-24 22:42:37 +00:00
2022-01-16 00:29:03 +00:00
[electron-debug][] is included, so you can use <kbd>F5</kbd>/<kbd>Ctrl+R</kbd> to reload and <kbd>F12</kbd>/<kbd>Ctrl+Shift+I</kbd> to open the devtools.
2018-06-10 03:50:03 +00:00
2021-01-31 03:59:22 +00:00
You can build for production with `npm run electron:make`
2018-06-10 03:50:03 +00:00
[Live Server]: https://github.com/1j01/live-server
2018-08-24 22:42:37 +00:00
[Node.js]: https://nodejs.org/
[electron-debug]: https://github.com/sindresorhus/electron-debug
2022-07-28 19:11:17 +00:00
## Deployment
JS Paint can be deployed using a regular web server.
Nothing needs to be compiled.
2022-08-02 07:43:54 +00:00
### CORS proxy
Optionally, you can set up a [CORS Anywhere](https://github.com/Rob--W/cors-anywhere) server, for loading images from the web, if you paste a URL into JS Paint, or use the `#load:<URL>` feature with images that are not on the same domain.
2022-08-02 11:31:53 +00:00
By default it will use a [CORS Anywhere instance](https://jspaint-cors-proxy.herokuapp.com) set up to work with [jspaint.app](https://jspaint.app).
2022-08-02 07:43:54 +00:00
2022-08-02 11:31:53 +00:00
It is hosted for free on [Heroku](https://www.heroku.com/),
and you can set up your own instance and configure it to work with your own domain.
2022-08-02 07:43:54 +00:00
You'll have to find and replace `https://jspaint-cors-proxy.herokuapp.com` with your own instance URL.
### Multiplayer Support
Multiplayer support currently relies on Firebase,
which is not open source software.
2022-08-02 11:31:53 +00:00
You could create a [Firebase Realtime Database](https://firebase.google.com/docs/database/web/start) instance and edit JS Paint's `sessions.js` to point to it,
replacing the `config` passed to `initializeApp` with the config from the Firebase Console when you set up a Web App.
But the multiplayer mode is very shoddy so far.
It should be replaced with something open source, more secure, more efficient, and more robust.
2022-08-02 07:43:54 +00:00
## Embed in your website
### Simple
Add this to your HTML:
```html
<iframe src="https://jspaint.app" width="100%" height="100%"></iframe>
```
2022-08-02 04:59:24 +00:00
#### Start with an image
You can have it load an image from a URL by adding `#load:<URL>` to the URL.
```html
<iframe src="https://jspaint.app#load:https://jspaint.app/favicon.ico" width="100%" height="100%"></iframe>
```
### Advanced
If you want to control JS Paint, how it saves/loads files, or access the canvas directly,
there is an unstable API.
First you need to [clone the repo](https://help.github.com/articles/cloning-a-repository/),
so you can point an `iframe` to your local copy.
The local copy of JS Paint has to be hosted on the same web server as the containing page, or more specifically, it has to share the [same origin](https://en.wikipedia.org/wiki/Same-origin_policy).
Having a local copy also means things won't break any time the API changes.
If JS Paint is cloned to a folder called `jspaint`, which lives in the same folder as the page you want to embed it in, you can use this:
```html
<iframe src="jspaint/index.html" id="jspaint-iframe" width="100%" height="100%"></iframe>
```
If it lives somewhere else, you may need to add `../` to the start of the path, to go up a level. For example, `src="../../apps/jspaint/index.html"`.
You can also use an absolute URL, like `src="https://example.com/cool-apps/jspaint/index.html"`.
#### Changing how files are saved/loaded
You can override the file saving and opening dialogs
with JS Paint's `systemHooks` API.
```html
<script>
var iframe = document.getElementById('jspaint-iframe');
var jspaint = iframe.contentWindow;
2022-08-02 06:53:20 +00:00
// Wait for systemHooks object to exist (the iframe needs to load)
2022-08-02 12:28:13 +00:00
waitUntil(()=> jspaint.systemHooks, 500, ()=> {
2022-08-02 06:53:20 +00:00
// Hook in
2022-08-02 04:59:24 +00:00
jspaint.systemHooks.showSaveFileDialog = async ({ formats, defaultFileName, defaultPath, defaultFileFormatID, getBlob, savedCallbackUnreliable, dialogTitle }) => { ... };
jspaint.systemHooks.showOpenFileDialog = async ({ formats }) => { ... };
jspaint.systemHooks.writeBlobToHandle = async (save_file_handle, blob) => { ... };
jspaint.systemHooks.readBlobFromHandle = async (file_handle) => { ... };
});
// General function to wait for a condition to be met, checking at regular intervals
function waitUntil(test, interval, callback) {
if (test()) {
callback();
} else {
setTimeout(waitUntil, interval, test, interval, callback);
}
}
</script>
```
2022-08-02 06:53:20 +00:00
A [Blob](https://developer.mozilla.org/en-US/docs/Web/API/Blob) represents the contents of a file in memory.
2022-08-02 04:59:24 +00:00
A file handle is anything that can identify a file.
You get to own this concept, and define how to identify files.
It could be anything from an index into an array, to a Dropbox file ID, to an IPFS URL, to a file path.
It can be any type, or maybe it needs to be a string, I forget.
Once you have a concept of a file handle, you can implement file pickers using the system hooks, and functions to read and write files.
| Command | Hooks Used |
| ------- | ---------- |
| **File > Save As** | [`systemHooks.showSaveFileDialog`][], then when a file is picked, [`systemHooks.writeBlobToHandle`][] |
| **File > Open** | [`systemHooks.showOpenFileDialog`][], then when a file is picked, [`systemHooks.readBlobFromHandle`][] |
| **File > Save** | [`systemHooks.writeBlobToHandle`][] (or same as **File > Save As** if there's no file open yet) |
| **Edit > Copy To** | [`systemHooks.showSaveFileDialog`][], then when a file is picked, [`systemHooks.writeBlobToHandle`][] |
| **Edit > Paste From** | [`systemHooks.showOpenFileDialog`][], then when a file is picked, [`systemHooks.readBlobFromHandle`][] |
| **File > Set As Wallpaper (Tiled)** | [`systemHooks.setWallpaperTiled`][] if defined, else [`systemHooks.setWallpaperCentered`][] if defined, else same as **File > Save As** |
| **File > Set As Wallpaper (Centered)** | [`systemHooks.setWallpaperCentered`][] if defined, else same as **File > Save As** |
| **Extras > Render History As GIF** | Same as **File > Save As** |
| **Colors > Save Colors** | Same as **File > Save As** |
| **Colors > Get Colors** | Same as **File > Open** |
#### Loading a file initially
To start the app with a file loaded for editing,
wait for the app to load, then call [`systemHooks.readBlobFromHandle`][] with a file handle, and tell the app to load that file blob.
2022-08-02 04:59:24 +00:00
```js
const file_handle = "initial-file-to-load";
systemHooks.readBlobFromHandle(file_handle).then(file => {
if (file) {
contentWindow.open_from_file(file, file_handle);
}
}, (error) => {
// Note: in some cases, this handler may not be called, and instead an error message is shown by readBlobFromHandle directly.
contentWindow.show_error_message(`Failed to open file ${file_handle}`, error);
});
```
This is clumsy, and in the future there may be a query string parameter to load an initial file by its handle.
(Note to self: it will need to wait for your system hooks to be registered, somehow.)
There's already a query string parameter to load from a URL:
```html
<iframe src="https://jspaint.app?load:SOME_URL_HERE"></iframe>
```
But this won't set up the file handle for saving.
#### Integrating Set as Wallpaper
You can define two functions to set the wallpaper, which will be used by **File > Set As Wallpaper (Tiled)** and **File > Set As Wallpaper (Centered)**.
2022-08-02 14:30:24 +00:00
- [`systemHooks.setWallpaperTiled`][]` = (canvas) => { ... };`
- [`systemHooks.setWallpaperCentered`][]` = (canvas) => { ... };`
If you define only [`systemHooks.setWallpaperCentered`][], JS Paint will attempt to guess your screen's dimensions and tile the image, applying it by calling your [`systemHooks.setWallpaperCentered`][] function.
2022-08-02 15:05:25 +00:00
If you don't specify [`systemHooks.setWallpaperCentered`][], JS Paint will default to saving a file (`<original file name> wallpaper.png`) using [`systemHooks.showSaveFileDialog`][] and [`systemHooks.writeBlobToHandle`][].
Here's a full example supporting a persistent custom wallpaper as a background on the containing page:
```js
const wallpaper = document.querySelector('body'); // or some other element
jspaint.systemHooks.setWallpaperCentered = (canvas) => {
canvas.toBlob((blob) => {
setDesktopWallpaper(blob, "no-repeat", true);
});
2022-08-02 15:05:25 +00:00
};
jspaint.systemHooks.setWallpaperTiled = (canvas) => {
canvas.toBlob((blob) => {
setDesktopWallpaper(blob, "repeat", true);
});
2022-08-02 15:05:25 +00:00
};
function setDesktopWallpaper(file, repeat, saveToLocalStorage) {
const blob_url = URL.createObjectURL(file);
wallpaper.style.backgroundImage = `url(${blob_url})`;
wallpaper.style.backgroundRepeat = repeat;
wallpaper.style.backgroundPosition = "center";
wallpaper.style.backgroundSize = "auto";
if (saveToLocalStorage) {
2022-08-02 15:05:25 +00:00
const fileReader = new FileReader();
fileReader.onload = () => {
localStorage.setItem("wallpaper-data-url", fileReader.result);
localStorage.setItem("wallpaper-repeat", repeat);
};
2022-08-02 15:05:25 +00:00
fileReader.onerror = () => {
console.error("Error reading file (for setting wallpaper)", file);
};
2022-08-02 15:05:25 +00:00
fileReader.readAsDataURL(file);
}
}
2022-08-02 15:05:25 +00:00
// Initialize the wallpaper from localStorage, if it exists
try {
const wallpaper_data_url = localStorage.getItem("wallpaper-data-url");
const wallpaper_repeat = localStorage.getItem("wallpaper-repeat");
if (wallpaper_data_url) {
fetch(wallpaper_data_url).then(response => response.blob()).then(file => {
setDesktopWallpaper(file, wallpaper_repeat, false);
});
}
} catch (error) {
console.error(error);
}
```
It's a little bit recursive, sorry; it could probably be done simpler.
Like by just using data URLs. (Actually, I think I wanted to use blob URLs just so that it doesn't bloat the DOM inspector with a super long URL. Which is really a devtools UX bug. Maybe they've improved this?)
#### Specifying the canvas size
You can load a file that has the desired dimensions.
There's no special API for this at the moment.
2022-08-02 14:30:24 +00:00
See [Loading a file initially](#loading-a-file-initially).
#### Specifying the theme
You could change the theme programmatically:
```js
var iframe = document.getElementById('jspaint-iframe');
var jspaint = iframe.contentWindow;
jspaint.set_theme("modern.css");
```
but this will break the user preference.
The **Extras > Themes** menu will still work, but the preference won't persist when reloading the page.
In the future there may be a query string parameter to specify the default theme. You could also fork jspaint to change the default theme.
#### Specifying the language
2022-08-02 04:09:31 +00:00
Similar to the theme, you can try to change the language programmatically:
```js
var iframe = document.getElementById('jspaint-iframe');
var jspaint = iframe.contentWindow;
jspaint.set_language("ar");
```
2022-08-02 04:09:31 +00:00
but this will actually **ask the user to reload the application** to change languages.
2022-08-02 04:09:31 +00:00
The **Extras > Language** menu will still work, but the user will be bothered to change the language every time they reload the page.
In the future there may be a query string parameter to specify the default language. You could also fork jspaint to change the default language.
#### Adding custom menus
Not supported yet.
You could fork jspaint and add your own menus.
#### Accessing the canvas directly
With access to the canvas, you can implement a live preview of your drawing, for example updating a texture in a game engine in realtime.
```js
var iframe = document.getElementById('jspaint-iframe');
// contentDocument here refers to the webpage loaded in the iframe, not the image document loaded in jspaint.
// We're just reaching inside the iframe to get the canvas.
var canvas = iframe.contentDocument.querySelector(".main-canvas");
```
2022-08-02 14:30:24 +00:00
It's recommended **not** to use this for loading a document, as it won't change the document title, or reset undo/redo history, among other things.
Instead use [`open_from_file`][].
#### Performing custom actions
If you want to make buttons or other UI to do things to the document, you should (probably) make it undoable.
2022-08-02 14:30:24 +00:00
It's very easy, just wrap your action in a call to [`undoable`][].
```js
var iframe = document.getElementById('jspaint-iframe');
var jspaint = iframe.contentWindow;
var icon = new Image();
icon.src = "some-folder/some-image-15x11-pixels.png";
jspaint.undoable({
2022-08-02 14:30:24 +00:00
name: "Seam Carve",
icon: icon, // optional
}, function() {
// do something to the canvas
});
```
#### <a href="#systemHooks.showSaveFileDialog" id="systemHooks.showSaveFileDialog">async function `systemHooks.showSaveFileDialog({ formats, defaultFileName, defaultPath, defaultFileFormatID, getBlob, savedCallbackUnreliable, dialogTitle })`</a>
[`systemHooks.showSaveFileDialog`]: #systemHooks.showSaveFileDialog
Define this function to override the default save dialog.
This is used both for saving images, as well as palette files, and animations.
Arguments:
- `formats`: an array of objects representing types of files, with the following properties:
- `formatID`: a string that uniquely identifies the format (may be the same as `mimeType`)
- `mimeType`: the file format's designated [media type](https://en.wikipedia.org/wiki/Media_type), e.g. `"image/png"`
- `name`: the file format's name, e.g. `"WebP"`
- `nameWithExtensions`: the file format's name followed by a list of extensions, e.g. `"TIFF (*.tif;*.tiff)"`
- `extensions`: an array of file extensions, excluding the dot, with the preferred extension first, e.g. `["bmp", "dib"]`
- `defaultFileName`: a suggested file name, e.g. `"Untitled.png"` or the name of an open document.
- `defaultPath` (optional): a file handle for a document that was opened, so you can save to the same folder easily. Misnomer: this may not be a path, it depends on how you define file handles.
- `defaultFileFormatID`: the `formatID` of a file format to select by default.
- `async function getBlob(formatID)`: a function you call to get a file in one of the supported formats. It takes a `formatID` and returns a `Promise` that resolves with a `Blob` representing the file contents to save.
- `function savedCallbackUnreliable({ newFileName, newFileFormatID, newFileHandle, newBlob })`: a function you call when the user has saved the file. The `newBlob` should come from `getBlob(newFileFormatID)`.
- `dialogTitle`: a title for the save dialog.
Note the inversion of control here:
JS Paint calls your `systemHooks.showSaveFileDialog` function, and then you calls JS Paint's `getBlob` function.
Once `getBlob` resolves, you can call the `savedCallbackUnreliable` function which is defined by JS Paint.
(Hopefully I can clarify this in the future.)
Also note that this function is responsible for saving the file, not just picking a save location.
You may reuse your `systemHooks.writeBlobToHandle` function if it's helpful.
#### <a href="#systemHooks.showOpenFileDialog" id="systemHooks.showOpenFileDialog">async function `systemHooks.showOpenFileDialog({ formats })`</a>
[`systemHooks.showOpenFileDialog`]: #systemHooks.showOpenFileDialog
Define this function to override the default open dialog.
This is used for opening images and palettes.
Arguments:
- `formats`: same as `systemHooks.showSaveFileDialog`
Note that this function is responsible for loading the contents of the file, not just picking a file.
You may reuse your `systemHooks.readBlobFromHandle` function if it's helpful.
#### <a href="#systemHooks.writeBlobToHandle" id="systemHooks.writeBlobToHandle">async function `systemHooks.writeBlobToHandle(fileHandle, blob)`</a>
[`systemHooks.writeBlobToHandle`]: #systemHooks.writeBlobToHandle
Define this function to tell JS Paint how to save a file.
Arguments:
- `fileHandle`: a file handle, as defined by your system, representing the file to write to.
- `blob`: a `Blob` representing the file contents to save.
#### <a href="#systemHooks.readBlobFromHandle" id="systemHooks.readBlobFromHandle">async function `systemHooks.readBlobFromHandle(fileHandle)`</a>
[`systemHooks.readBlobFromHandle`]: #systemHooks.readBlobFromHandle
Define this function to tell JS Paint how to load a file.
Arguments:
- `fileHandle`: a file handle, as defined by your system, representing the file to read from.
#### <a href="#systemHooks.setWallpaperTiled" id="systemHooks.setWallpaperTiled">function `systemHooks.setWallpaperTiled(canvas)`</a>
[`systemHooks.setWallpaperTiled`]: #systemHooks.setWallpaperTiled
2022-08-02 14:30:24 +00:00
Define this function to tell JS Paint how to set the wallpaper. See [Integrating Set as Wallpaper](#integrating-set-as-wallpaper) for an example.
Arguments:
- `canvas`: a `HTMLCanvasElement` with the image to set as the wallpaper.
#### <a href="#systemHooks.setWallpaperCentered" id="systemHooks.setWallpaperCentered">function `systemHooks.setWallpaperCentered(canvas)`</a>
[`systemHooks.setWallpaperCentered`]: #systemHooks.setWallpaperCentered
2022-08-02 14:30:24 +00:00
Define this function to tell JS Paint how to set the wallpaper. See [Integrating Set as Wallpaper](#integrating-set-as-wallpaper) for an example.
Arguments:
- `canvas`: a `HTMLCanvasElement` with the image to set as the wallpaper.
2022-08-02 14:30:24 +00:00
#### <a href="#undoable" id="undoable">function `undoable({ name, icon }, actionFunction)`</a>
[`undoable`]: #undoable
Use this to make an action undoable.
This function takes a snapshot of the canvas, and some other state, and then calls the `actionFunction` function.
It creates an entry in the history so it can be undone.
Arguments:
- `name`: a name for the action, e.g. `"Brush"` or `"Rotate Image 270°"`
- `icon` (optional): an `Image` to display in the History window. It is recommended to be 15x11 pixels.
- `actionFunction`: a function that takes no arguments, and modifies the canvas.
2022-08-02 14:30:24 +00:00
#### <a href="#show_error_message" id="show_error_message">function `show_error_message(message, [error])`</a>
[`show_error_message`]: #show_error_message
Use this to show an error message dialog box, optionally with expandable error details.
Arguments:
- `message`: plain text to show in the dialog box.
- `error` (optional): an `Error` object to show in the dialog box, collapsed by default in a "Details" expandable section.
2022-08-02 14:30:24 +00:00
#### <a href="#open_from_file" id="open_from_file">function `open_from_file(blob, source_file_handle)`</a>
[`open_from_file`]: #open_from_file
Use this to load a file into the app.
Arguments:
- `blob`: a `Blob` object representing the file to load.
- `source_file_handle`: a *corresponding* file handle for the file, as defined by your system.
Sorry for the quirky API.
The API is new, and parts of it have not been designed at all. This was just a hack that I came to depend on, reaching into the internals of JS Paint to load a file.
I decided to document it as the first version of the API, since I'll want a changelog when upgrading my usage of it anyways.
#### <a href="#set_theme" id="set_theme">function `set_theme(theme_file_name)`</a>
[`set_theme`]: #set_theme
Use this to change the look of the application.
Arguments:
- `theme_file_name`: the name of the theme file to load, one of:
- `"classic.css"`: the Windows98 theme.
- `"dark.css"`: the Dark theme.
- `"modern.css"`: the Modern theme.
- `"winter.css"`: the festive Winter theme.
- `"occult.css"`: a Satanic theme.
#### <a href="#set_language" id="set_language">function `set_language(language_code)`</a>
[`set_language`]: #set_language
You can kind of use this to change the language of the application. But actually it will show a prompt to the user to change the language, because the application needs to reload to apply the change.
And if that dialog isn't in the right language, well, they'll probably be confused.
Arguments:
- `language_code`: the language code to use, e.g. `"en"` for English, `"zh"` for Traditional Chinese, `"zh-simplified"` for Simplified Chinese, etc.
#### Changelog
The API will change a lot, but changes will be documented in the [Changelog](CHANGELOG.md).
Not just a history of changes, but a migration/upgrading guide. <!-- These are some Ctrl+F keywords. -->
For general project news, click **Extras > Project News** in the app.
2022-07-28 19:11:17 +00:00
## License
JS Paint is free and open source software, licensed under the permissive [MIT license](https://opensource.org/licenses/MIT).
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![GitHub Repo stars](https://img.shields.io/github/stars/1j01/jspaint?label=GitHub%20Stars&style=social)](https://github.com/1j01/jspaint/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/1j01/jspaint?style=social)](https://github.com/1j01/jspaint/network/members)