Added SVG image support for uploads
This commit is contained in:
parent
8da7137d7b
commit
f355890757
|
@ -489,7 +489,7 @@ $(document).ready(function() {
|
|||
{
|
||||
type: "json",
|
||||
action: HTML_PATH_ADMIN_ROOT+"ajax/uploader",
|
||||
allow : "*.(jpg|jpeg|gif|png)",
|
||||
allow : "*.(jpg|jpeg|gif|png|svg)",
|
||||
params: {"type":"bludit-images-v8"},
|
||||
|
||||
loadstart: function() {
|
||||
|
|
|
@ -47,11 +47,18 @@ if($type=='profilePicture')
|
|||
else {
|
||||
// Generate the thumbnail
|
||||
$Image = new Image();
|
||||
//Handling all other formats than svg
|
||||
if (strcasecmp($fileExtension, 'svg') != 0) {
|
||||
$Image->setImage(PATH_TMP.'original'.'.'.$fileExtension, THUMBNAILS_WIDTH, THUMBNAILS_HEIGHT, 'crop');
|
||||
$Image->saveImage(PATH_UPLOADS_THUMBNAILS.$tmpName, 100, true);
|
||||
|
||||
}
|
||||
// Move the original to the upload folder.
|
||||
rename(PATH_TMP.'original'.'.'.$fileExtension, PATH_UPLOADS.$tmpName);
|
||||
|
||||
//If it is a svg file, just save a copy in thumbnail-folder
|
||||
if (strcasecmp($fileExtension, 'svg') == 0) {
|
||||
copy(PATH_UPLOADS.$tmpName, PATH_UPLOADS_THUMBNAILS.$tmpName);
|
||||
}
|
||||
}
|
||||
|
||||
// Remove the Bludit temporary file.
|
||||
|
|
Loading…
Reference in New Issue