56 lines
935 B
JavaScript
56 lines
935 B
JavaScript
|
/**
|
||
|
* @author mrdoob / http://mrdoob.com/
|
||
|
* @author alteredq / http://alteredqualia.com/
|
||
|
* @author szimek / https://github.com/szimek/
|
||
|
*/
|
||
|
|
||
|
var ImageUtils = {
|
||
|
|
||
|
getDataURL: function ( image ) {
|
||
|
|
||
|
var canvas;
|
||
|
|
||
|
if ( typeof HTMLCanvasElement == 'undefined' ) {
|
||
|
|
||
|
return image.src;
|
||
|
|
||
|
} else if ( image instanceof HTMLCanvasElement ) {
|
||
|
|
||
|
canvas = image;
|
||
|
|
||
|
} else {
|
||
|
|
||
|
canvas = document.createElementNS( 'http://www.w3.org/1999/xhtml', 'canvas' );
|
||
|
canvas.width = image.width;
|
||
|
canvas.height = image.height;
|
||
|
|
||
|
var context = canvas.getContext( '2d' );
|
||
|
|
||
|
if ( image instanceof ImageData ) {
|
||
|
|
||
|
context.putImageData( image, 0, 0 );
|
||
|
|
||
|
} else {
|
||
|
|
||
|
context.drawImage( image, 0, 0, image.width, image.height );
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
if ( canvas.width > 2048 || canvas.height > 2048 ) {
|
||
|
|
||
|
return canvas.toDataURL( 'image/jpeg', 0.6 );
|
||
|
|
||
|
} else {
|
||
|
|
||
|
return canvas.toDataURL( 'image/png' );
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
export { ImageUtils };
|