├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── THIRD-PARTY-NOTICES.md ├── lib └── vips.d.ts ├── meson.build ├── meson_options.txt ├── package.json ├── playground ├── README.md ├── decode-deflate.sh ├── encode-deflate.sh ├── package.json ├── samples │ ├── edge-detection │ │ ├── canny │ │ │ ├── sample.css │ │ │ ├── sample.html │ │ │ └── sample.js │ │ └── sobel │ │ │ ├── sample.css │ │ │ ├── sample.html │ │ │ └── sample.js │ ├── filter │ │ ├── duotone │ │ │ ├── sample.css │ │ │ ├── sample.html │ │ │ └── sample.js │ │ ├── emboss │ │ │ ├── sample.css │ │ │ ├── sample.html │ │ │ └── sample.js │ │ ├── gaussian-blur │ │ │ ├── sample.css │ │ │ ├── sample.html │ │ │ └── sample.js │ │ ├── modulate │ │ │ ├── sample.css │ │ │ ├── sample.html │ │ │ └── sample.js │ │ ├── sepia │ │ │ ├── sample.css │ │ │ ├── sample.html │ │ │ └── sample.js │ │ ├── sharpen │ │ │ ├── sample.css │ │ │ ├── sample.html │ │ │ └── sample.js │ │ └── tint │ │ │ ├── sample.css │ │ │ ├── sample.html │ │ │ └── sample.js │ └── other │ │ ├── animated-image │ │ ├── sample.css │ │ ├── sample.html │ │ └── sample.js │ │ ├── embed-multiply-convolution │ │ ├── sample.css │ │ ├── sample.html │ │ └── sample.js │ │ ├── histogram │ │ ├── sample.css │ │ ├── sample.html │ │ └── sample.js │ │ ├── json-output │ │ ├── sample.css │ │ ├── sample.html │ │ └── sample.js │ │ ├── optional-output │ │ ├── sample.css │ │ ├── sample.html │ │ └── sample.js │ │ ├── smartcrop │ │ ├── sample.css │ │ ├── sample.html │ │ └── sample.js │ │ └── watermark │ │ ├── sample.css │ │ ├── sample.html │ │ └── sample.js ├── src │ ├── css │ │ └── playground.css │ ├── images │ │ ├── INFO.md │ │ ├── alphachannel.svg │ │ ├── banana.gif │ │ ├── banana.webp │ │ ├── owl.avif │ │ ├── owl.jpg │ │ ├── owl.jxl │ │ ├── owl.tif │ │ ├── owl.webp │ │ └── transparency_demo.png │ ├── index.html │ ├── index.js │ ├── playground-runner.html │ └── samples.js └── webpack.config.js ├── src ├── bindings │ ├── connection.cpp │ ├── connection.h │ ├── error.h │ ├── image.cpp │ ├── image.h │ ├── interpolate.cpp │ ├── interpolate.h │ ├── object.h │ ├── option.cpp │ ├── option.h │ ├── utils.cpp │ ├── utils.h │ ├── vips-operators.cpp │ └── vips-operators.h ├── closure-externs │ └── wasm-vips.js ├── meson.build ├── modules-pre.js ├── vips-emscripten.cpp ├── vips-library.js └── workaround-cors-pre.js └── test ├── bench ├── README.md ├── images.js ├── images │ ├── 2569067123_aca715a2ee_o.jpg │ ├── 4.webp │ └── alpha-premultiply-2048x1536-paper.png ├── index.html ├── package.json ├── perf.js └── serve.json └── unit ├── helpers.js ├── images ├── 1.webp ├── 17000x17000.avif ├── 1bit.tif ├── 2bit.tif ├── 4bit.tif ├── avif-orientation-6.avif ├── big-height.webp ├── cd1.1.jpg ├── cd1.2.jpg ├── cd2.1.jpg ├── cd2.2.jpg ├── cd3.1.jpg ├── cd3.2.jpg ├── cd4.1.jpg ├── cd4.2.jpg ├── cogs.gif ├── cramps.gif ├── logo.svg ├── logo.svg.gz ├── logo.svgz ├── multi-channel-z-series.ome.tif ├── rgba-correct.ppm ├── rgba.png ├── sRGB.icm ├── sample.jpg ├── sample.jxl ├── sample.png ├── sample.tif ├── sample.vips ├── t00740_tr1_segm.hdr ├── t00740_tr1_segm.img └── truncated.jpg ├── index.html ├── node-helper.js ├── package.json ├── serve.json ├── test_arithmetic.js ├── test_auto_delete.js ├── test_block.js ├── test_colour.js ├── test_connection.js ├── test_conversion.js ├── test_convolution.js ├── test_create.js ├── test_draw.js ├── test_foreign.js ├── test_histogram.js ├── test_iofuncs.js ├── test_morphology.js ├── test_mosaicing.js └── test_resample.js /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: libvips 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/THIRD-PARTY-NOTICES.md -------------------------------------------------------------------------------- /lib/vips.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/lib/vips.d.ts -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/meson_options.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/package.json -------------------------------------------------------------------------------- /playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/README.md -------------------------------------------------------------------------------- /playground/decode-deflate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/decode-deflate.sh -------------------------------------------------------------------------------- /playground/encode-deflate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/encode-deflate.sh -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/samples/edge-detection/canny/sample.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/samples/edge-detection/canny/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/edge-detection/canny/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/edge-detection/canny/sample.js -------------------------------------------------------------------------------- /playground/samples/edge-detection/sobel/sample.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/samples/edge-detection/sobel/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/edge-detection/sobel/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/edge-detection/sobel/sample.js -------------------------------------------------------------------------------- /playground/samples/filter/duotone/sample.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/samples/filter/duotone/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/filter/duotone/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/filter/duotone/sample.js -------------------------------------------------------------------------------- /playground/samples/filter/emboss/sample.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/samples/filter/emboss/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/filter/emboss/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/filter/emboss/sample.js -------------------------------------------------------------------------------- /playground/samples/filter/gaussian-blur/sample.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/samples/filter/gaussian-blur/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/filter/gaussian-blur/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/filter/gaussian-blur/sample.js -------------------------------------------------------------------------------- /playground/samples/filter/modulate/sample.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/samples/filter/modulate/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/filter/modulate/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/filter/modulate/sample.js -------------------------------------------------------------------------------- /playground/samples/filter/sepia/sample.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /playground/samples/filter/sepia/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/filter/sepia/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/filter/sepia/sample.js -------------------------------------------------------------------------------- /playground/samples/filter/sharpen/sample.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/samples/filter/sharpen/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/filter/sharpen/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/filter/sharpen/sample.js -------------------------------------------------------------------------------- /playground/samples/filter/tint/sample.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/samples/filter/tint/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/filter/tint/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/filter/tint/sample.js -------------------------------------------------------------------------------- /playground/samples/other/animated-image/sample.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /playground/samples/other/animated-image/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/other/animated-image/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/other/animated-image/sample.js -------------------------------------------------------------------------------- /playground/samples/other/embed-multiply-convolution/sample.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /playground/samples/other/embed-multiply-convolution/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/other/embed-multiply-convolution/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/other/embed-multiply-convolution/sample.js -------------------------------------------------------------------------------- /playground/samples/other/histogram/sample.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /playground/samples/other/histogram/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/other/histogram/sample.html -------------------------------------------------------------------------------- /playground/samples/other/histogram/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/other/histogram/sample.js -------------------------------------------------------------------------------- /playground/samples/other/json-output/sample.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /playground/samples/other/json-output/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/other/json-output/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/other/json-output/sample.js -------------------------------------------------------------------------------- /playground/samples/other/optional-output/sample.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /playground/samples/other/optional-output/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/other/optional-output/sample.html -------------------------------------------------------------------------------- /playground/samples/other/optional-output/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/other/optional-output/sample.js -------------------------------------------------------------------------------- /playground/samples/other/smartcrop/sample.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /playground/samples/other/smartcrop/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/other/smartcrop/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/other/smartcrop/sample.js -------------------------------------------------------------------------------- /playground/samples/other/watermark/sample.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/samples/other/watermark/sample.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /playground/samples/other/watermark/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/samples/other/watermark/sample.js -------------------------------------------------------------------------------- /playground/src/css/playground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/css/playground.css -------------------------------------------------------------------------------- /playground/src/images/INFO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/images/INFO.md -------------------------------------------------------------------------------- /playground/src/images/alphachannel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/images/alphachannel.svg -------------------------------------------------------------------------------- /playground/src/images/banana.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/images/banana.gif -------------------------------------------------------------------------------- /playground/src/images/banana.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/images/banana.webp -------------------------------------------------------------------------------- /playground/src/images/owl.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/images/owl.avif -------------------------------------------------------------------------------- /playground/src/images/owl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/images/owl.jpg -------------------------------------------------------------------------------- /playground/src/images/owl.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/images/owl.jxl -------------------------------------------------------------------------------- /playground/src/images/owl.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/images/owl.tif -------------------------------------------------------------------------------- /playground/src/images/owl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/images/owl.webp -------------------------------------------------------------------------------- /playground/src/images/transparency_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/images/transparency_demo.png -------------------------------------------------------------------------------- /playground/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/index.html -------------------------------------------------------------------------------- /playground/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/index.js -------------------------------------------------------------------------------- /playground/src/playground-runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/playground-runner.html -------------------------------------------------------------------------------- /playground/src/samples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/src/samples.js -------------------------------------------------------------------------------- /playground/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/playground/webpack.config.js -------------------------------------------------------------------------------- /src/bindings/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/connection.cpp -------------------------------------------------------------------------------- /src/bindings/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/connection.h -------------------------------------------------------------------------------- /src/bindings/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/error.h -------------------------------------------------------------------------------- /src/bindings/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/image.cpp -------------------------------------------------------------------------------- /src/bindings/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/image.h -------------------------------------------------------------------------------- /src/bindings/interpolate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/interpolate.cpp -------------------------------------------------------------------------------- /src/bindings/interpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/interpolate.h -------------------------------------------------------------------------------- /src/bindings/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/object.h -------------------------------------------------------------------------------- /src/bindings/option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/option.cpp -------------------------------------------------------------------------------- /src/bindings/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/option.h -------------------------------------------------------------------------------- /src/bindings/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/utils.cpp -------------------------------------------------------------------------------- /src/bindings/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/utils.h -------------------------------------------------------------------------------- /src/bindings/vips-operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/vips-operators.cpp -------------------------------------------------------------------------------- /src/bindings/vips-operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/bindings/vips-operators.h -------------------------------------------------------------------------------- /src/closure-externs/wasm-vips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/closure-externs/wasm-vips.js -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/modules-pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/modules-pre.js -------------------------------------------------------------------------------- /src/vips-emscripten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/vips-emscripten.cpp -------------------------------------------------------------------------------- /src/vips-library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/vips-library.js -------------------------------------------------------------------------------- /src/workaround-cors-pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/src/workaround-cors-pre.js -------------------------------------------------------------------------------- /test/bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/bench/README.md -------------------------------------------------------------------------------- /test/bench/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/bench/images.js -------------------------------------------------------------------------------- /test/bench/images/2569067123_aca715a2ee_o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/bench/images/2569067123_aca715a2ee_o.jpg -------------------------------------------------------------------------------- /test/bench/images/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/bench/images/4.webp -------------------------------------------------------------------------------- /test/bench/images/alpha-premultiply-2048x1536-paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/bench/images/alpha-premultiply-2048x1536-paper.png -------------------------------------------------------------------------------- /test/bench/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/bench/index.html -------------------------------------------------------------------------------- /test/bench/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/bench/package.json -------------------------------------------------------------------------------- /test/bench/perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/bench/perf.js -------------------------------------------------------------------------------- /test/bench/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/bench/serve.json -------------------------------------------------------------------------------- /test/unit/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/helpers.js -------------------------------------------------------------------------------- /test/unit/images/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/1.webp -------------------------------------------------------------------------------- /test/unit/images/17000x17000.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/17000x17000.avif -------------------------------------------------------------------------------- /test/unit/images/1bit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/1bit.tif -------------------------------------------------------------------------------- /test/unit/images/2bit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/2bit.tif -------------------------------------------------------------------------------- /test/unit/images/4bit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/4bit.tif -------------------------------------------------------------------------------- /test/unit/images/avif-orientation-6.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/avif-orientation-6.avif -------------------------------------------------------------------------------- /test/unit/images/big-height.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/big-height.webp -------------------------------------------------------------------------------- /test/unit/images/cd1.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/cd1.1.jpg -------------------------------------------------------------------------------- /test/unit/images/cd1.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/cd1.2.jpg -------------------------------------------------------------------------------- /test/unit/images/cd2.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/cd2.1.jpg -------------------------------------------------------------------------------- /test/unit/images/cd2.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/cd2.2.jpg -------------------------------------------------------------------------------- /test/unit/images/cd3.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/cd3.1.jpg -------------------------------------------------------------------------------- /test/unit/images/cd3.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/cd3.2.jpg -------------------------------------------------------------------------------- /test/unit/images/cd4.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/cd4.1.jpg -------------------------------------------------------------------------------- /test/unit/images/cd4.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/cd4.2.jpg -------------------------------------------------------------------------------- /test/unit/images/cogs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/cogs.gif -------------------------------------------------------------------------------- /test/unit/images/cramps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/cramps.gif -------------------------------------------------------------------------------- /test/unit/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/logo.svg -------------------------------------------------------------------------------- /test/unit/images/logo.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/logo.svg.gz -------------------------------------------------------------------------------- /test/unit/images/logo.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/logo.svgz -------------------------------------------------------------------------------- /test/unit/images/multi-channel-z-series.ome.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/multi-channel-z-series.ome.tif -------------------------------------------------------------------------------- /test/unit/images/rgba-correct.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/rgba-correct.ppm -------------------------------------------------------------------------------- /test/unit/images/rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/rgba.png -------------------------------------------------------------------------------- /test/unit/images/sRGB.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/sRGB.icm -------------------------------------------------------------------------------- /test/unit/images/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/sample.jpg -------------------------------------------------------------------------------- /test/unit/images/sample.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/sample.jxl -------------------------------------------------------------------------------- /test/unit/images/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/sample.png -------------------------------------------------------------------------------- /test/unit/images/sample.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/sample.tif -------------------------------------------------------------------------------- /test/unit/images/sample.vips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/sample.vips -------------------------------------------------------------------------------- /test/unit/images/t00740_tr1_segm.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/t00740_tr1_segm.hdr -------------------------------------------------------------------------------- /test/unit/images/t00740_tr1_segm.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/t00740_tr1_segm.img -------------------------------------------------------------------------------- /test/unit/images/truncated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/images/truncated.jpg -------------------------------------------------------------------------------- /test/unit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/index.html -------------------------------------------------------------------------------- /test/unit/node-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/node-helper.js -------------------------------------------------------------------------------- /test/unit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/package.json -------------------------------------------------------------------------------- /test/unit/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/serve.json -------------------------------------------------------------------------------- /test/unit/test_arithmetic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_arithmetic.js -------------------------------------------------------------------------------- /test/unit/test_auto_delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_auto_delete.js -------------------------------------------------------------------------------- /test/unit/test_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_block.js -------------------------------------------------------------------------------- /test/unit/test_colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_colour.js -------------------------------------------------------------------------------- /test/unit/test_connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_connection.js -------------------------------------------------------------------------------- /test/unit/test_conversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_conversion.js -------------------------------------------------------------------------------- /test/unit/test_convolution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_convolution.js -------------------------------------------------------------------------------- /test/unit/test_create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_create.js -------------------------------------------------------------------------------- /test/unit/test_draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_draw.js -------------------------------------------------------------------------------- /test/unit/test_foreign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_foreign.js -------------------------------------------------------------------------------- /test/unit/test_histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_histogram.js -------------------------------------------------------------------------------- /test/unit/test_iofuncs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_iofuncs.js -------------------------------------------------------------------------------- /test/unit/test_morphology.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_morphology.js -------------------------------------------------------------------------------- /test/unit/test_mosaicing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_mosaicing.js -------------------------------------------------------------------------------- /test/unit/test_resample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleisauke/wasm-vips/HEAD/test/unit/test_resample.js --------------------------------------------------------------------------------