2022-12-16 03:13:45 +01:00
|
|
|
# WebP JavaScript decoder
|
2022-02-14 12:19:52 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
__ __ ____ ____ ____ __ ____
|
|
|
|
/ \\/ \ _ \ _ \ _ \ (__)/ __\
|
|
|
|
\ / __/ _ \ __/ _) \_ \
|
|
|
|
\__\__/_____/____/_/ /____/____/
|
|
|
|
```
|
|
|
|
|
|
|
|
This file describes the compilation of libwebp into a JavaScript decoder using
|
|
|
|
Emscripten and CMake.
|
|
|
|
|
|
|
|
- install the Emscripten SDK following the procedure described at:
|
|
|
|
https://emscripten.org/docs/getting_started/downloads.html#installation-instructions-using-the-emsdk-recommended
|
|
|
|
After installation, you should have some global variable positioned to the
|
|
|
|
location of the SDK. In particular, $EMSDK should point to the top-level
|
|
|
|
directory containing Emscripten tools.
|
|
|
|
|
|
|
|
- configure the project 'WEBP_JS' with CMake using:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cd webp_js && \
|
2023-09-28 10:18:23 +02:00
|
|
|
emcmake cmake -DWEBP_BUILD_WEBP_JS=ON ../
|
2022-02-14 12:19:52 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
- compile webp.js using 'emmake make'.
|
|
|
|
|
2022-10-03 14:08:44 +02:00
|
|
|
- that's it! Upon completion, you should have the 'webp.js', 'webp.js.mem',
|
|
|
|
'webp_wasm.js' and 'webp_wasm.wasm' files generated.
|
2022-02-14 12:19:52 +01:00
|
|
|
|
|
|
|
The callable JavaScript function is WebPToSDL(), which decodes a raw WebP
|
|
|
|
bitstream into a canvas. See webp_js/index.html for a simple usage sample (see
|
|
|
|
below for instructions).
|
|
|
|
|
|
|
|
## Demo HTML page
|
|
|
|
|
2022-10-03 14:08:44 +02:00
|
|
|
The HTML page webp_js/index.html requires the built files 'webp.js' and
|
|
|
|
'webp.js.mem' to be copied to webp_js/. An HTTP server to serve the WebP image
|
|
|
|
example is also needed. With Python, just run:
|
2022-02-14 12:19:52 +01:00
|
|
|
|
|
|
|
```shell
|
2022-10-03 14:08:44 +02:00
|
|
|
cd webp_js && python3 -m http.server 8080
|
2022-02-14 12:19:52 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
and then navigate to http://localhost:8080 in your favorite browser.
|
|
|
|
|
|
|
|
## Web-Assembly (WASM) version:
|
|
|
|
|
|
|
|
CMakeLists.txt is configured to build the WASM version when using the option
|
|
|
|
WEBP_BUILD_WEBP_JS=ON. The compilation step will assemble the files
|
2022-10-06 23:10:03 +02:00
|
|
|
'webp_wasm.js' and 'webp_wasm.wasm' that you then need to copy to the webp_js/
|
|
|
|
directory.
|
2022-10-03 14:08:44 +02:00
|
|
|
|
2022-10-06 23:10:03 +02:00
|
|
|
See webp_js/index_wasm.html for a simple demo page using the WASM version of the
|
|
|
|
library.
|
2022-02-14 12:19:52 +01:00
|
|
|
|
|
|
|
## Caveats
|
|
|
|
|
|
|
|
- First decoding using the library is usually slower, due to just-in-time
|
|
|
|
compilation.
|