mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
1fe66c0bf4
(merged from branches/gsoc) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@41882 467b73ca-7a2a-4603-9d3b-597d59a354a9
93 lines
2.9 KiB
JavaScript
93 lines
2.9 KiB
JavaScript
/**
|
|
* @author Mateusz
|
|
*/
|
|
var ImageTransformation = {
|
|
initialize: function() {
|
|
this.resize = ImageTransformation.resize.bind(this);
|
|
this.rotate = ImageTransformation.rotate.bind(this);
|
|
this.crop = ImageTransformation.crop.bind(this);
|
|
this.save = ImageTransformation.save.bind(this);
|
|
this.close = ImageTransformation.close.bind(this);
|
|
},
|
|
|
|
resize: function(width,height) {
|
|
if(imageHistory.modifiedOriginalImage) {
|
|
fileToResize = $('image').src;
|
|
} else {
|
|
fileToResize = imageEditor.originalImageFile;
|
|
}
|
|
var options = {
|
|
method: 'post',
|
|
postBody: 'command=resize&file=' + fileToResize + '&newImageWidth=' + width + '&newImageHeight=' + height,
|
|
onSuccess: function(transport) {
|
|
imageBox.hideIndicator();
|
|
response = eval('(' + transport.responseText + ')');
|
|
$('image').src = response.fileName;
|
|
imageHistory.add('resize',$('image').src);
|
|
},
|
|
};
|
|
imageBox.showIndicator();
|
|
new Ajax.Request('admin/ImageEditor/manipulate', options);
|
|
},
|
|
|
|
rotate: function(angle) {
|
|
var options = {
|
|
method: 'post',
|
|
postBody: 'command=rotate&file=' + $('image').src + '&angle=' + angle ,
|
|
onSuccess: function(transport) {
|
|
imageBox.hideIndicator();
|
|
response = eval('(' + transport.responseText + ')');
|
|
$('image').src = response.fileName;
|
|
$('imageContainer').style.width = response.width + 'px';
|
|
$('imageContainer').style.height = response.height + 'px';
|
|
imageHistory.add('rotate',$('image').src);
|
|
resize.imageContainerResize.placeClickBox();
|
|
}
|
|
};
|
|
imageBox.showIndicator();
|
|
new Ajax.Request('admin/ImageEditor/manipulate', options);
|
|
},
|
|
|
|
crop: function(top,left,width,height) {
|
|
var options = {
|
|
method: 'post',
|
|
postBody: 'command=crop&file=' + $('image').src + '&top=' + top + '&left=' + left + '&width=' + width + '&height=' + height,
|
|
onSuccess: function(transport) {
|
|
imageBox.hideIndicator();
|
|
response = eval('(' + transport.responseText + ')');
|
|
$('image').src = response.fileName;
|
|
$('imageContainer').style.width = response.width + 'px';
|
|
$('imageContainer').style.height = response.height + 'px';
|
|
imageHistory.add('crop',$('image').src);
|
|
crop.setVisible(false);
|
|
},
|
|
};
|
|
imageBox.showIndicator();
|
|
new Ajax.Request('admin/ImageEditor/manipulate', options);
|
|
},
|
|
|
|
save: function(originalFile,editedFile) {
|
|
var options = {
|
|
method: 'post',
|
|
postBody: 'command=save&editedFile=' + editedFile + '&originalFile=' + originalFile,
|
|
onSuccess: function(transport) {
|
|
eval(transport.responseText);
|
|
imageEditor.onClose();
|
|
},
|
|
};
|
|
new Ajax.Request('admin/ImageEditor/save', options);
|
|
},
|
|
|
|
close: function() {
|
|
var options = {
|
|
method: 'post',
|
|
postBody: '',
|
|
onSuccess: function(transport) {
|
|
eval(transport.responseText);
|
|
},
|
|
};
|
|
new Ajax.Request('admin/ImageEditor/close', options);
|
|
}
|
|
}
|
|
|