- From: Noel Gordon <noel.gordon@gmail.com>
- Date: Thu, 29 May 2014 15:36:09 +1000
- To: whatwg@lists.whatwg.org
<canvas>.toDataURL supports an optional quality argument for the “image/jpeg” mime type to control image compression. Developers have no control over “image/png” compression. “image/png” is a lossless image compression format and the proposal is to allow developers some control over the compression process. For example, a developer might request maximum compression once their art work is complete to minimize the encoded image size for transmission or storage. Encoding speed might be more important while creating the work, and less compression (faster encoding) could be requested in that case. An optional toDataURL parameter on [0.0 ... 1.0], similar to the optional quality argument used for "image/jpeg", could be defined for “image/png” to control compression: <canvas>.toDataURL(“image/png”, [compression-control-value]); The default value, and how the browser controls the image encoder to gain more compression with increasing values, would be internal implementation details of the browser. ~noel
Received on Thursday, 29 May 2014 05:36:35 UTC