Minify and resize images using lossy compression all on the front-end
https://maxsultan.github.io/img-compressor/
Canvas elements can be used to draw images via javascript. By default it does this using bilinear interpolation.
Bilinear Interpolation uses a weighted average of the four nearest cell centers. The closer an input cell center is to the output cell center, the higher the influence of its value is on the output cell value. This means that the output value could be different than the nearest input, but is always within the same range of values as the input.
BiCubic Interpolation looks at the 16 nearest cell centers to the output and fits a smooth curve through the points to find the value. Not only does this change the values of the input but it could also cause the output value to be outside of the range of input values (imagine a sink or a peak occurring on a surface).
This is a demo project for an npm package I built called front-end-min:
the package can be viewed on NPM here: https://www.npmjs.com/package/front-end-min
it can be added via npm: npm install front-end-min
or unpkg link: <script src="https://unpkg.com/front-end-min@1.0.7/index.js"></script>