mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-22 12:04:58 -05:00
resizeImage: generate an image in the format of the original image. (Tested with tranparent PNG, transparent GIF, BMP, JPEG)
This commit is contained in:
parent
c8d0c4762d
commit
53f4fbd99a
@ -103,7 +103,9 @@ angular.module('mUtilities', [])
|
|||||||
var ctx = canvas.getContext("2d");
|
var ctx = canvas.getContext("2d");
|
||||||
ctx.drawImage(img, 0, 0, width, height);
|
ctx.drawImage(img, 0, 0, width, height);
|
||||||
|
|
||||||
var dataUrl = canvas.toDataURL("image/jpeg", 0.7);
|
// Extract image data in the same format as the original one.
|
||||||
|
// The 0.7 compression value will work with formats that supports it like JPEG.
|
||||||
|
var dataUrl = canvas.toDataURL(imageFile.type, 0.7);
|
||||||
deferred.resolve(self.dataURItoBlob(dataUrl));
|
deferred.resolve(self.dataURItoBlob(dataUrl));
|
||||||
};
|
};
|
||||||
img.onerror = function(e) {
|
img.onerror = function(e) {
|
||||||
|
Loading…
Reference in New Issue
Block a user