From 56423a46a39b90e57110ff81a57bc85f4f1ddc6f Mon Sep 17 00:00:00 2001 From: Josh Schroeder Date: Mon, 11 Nov 2013 13:44:44 -0600 Subject: [PATCH 1/2] Created composer.json --- composer.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..70f5521 --- /dev/null +++ b/composer.json @@ -0,0 +1,32 @@ +{ + "name": "blueimp/javascript-load-image", + "description": "JavaScript Load Image is a library to load images provided as File or Blob objects or via URL. It returns an optionally scaled and/or cropped HTML img or canvas element. It also provides a method to parse image meta data to extract Exif tags and thumbnails and to restore the complete image header after resizing.", + "keywords": [ + "javascript", + "load", + "loading", + "image", + "file", + "blob", + "url", + "scale", + "crop", + "img", + "canvas", + "meta", + "exif", + "thumbnail", + "resizing" + ], + "homepage": "https://github.com/blueimp/JavaScript-Load-Image", + "authors": [ + { + "name": "Sebastian Tschan", + "url": "https://blueimp.net/" + } + ], + "support": { + "issues" : "https://github.com/blueimp/JavaScript-Load-Image/issues" + }, + "license": "MIT" +} \ No newline at end of file From bd1eabb70e73137d77ee0ae7a8f4e7dbe24a1782 Mon Sep 17 00:00:00 2001 From: Josh Schroeder Date: Wed, 13 Nov 2013 16:48:10 -0600 Subject: [PATCH 2/2] Moved assets into Resources/public dir and created symfony bundle class --- BlueimpJsLoadImageBundle.php | 9 +++++++++ {css => Resources/public/css}/demo.css | 0 {css => Resources/public/css}/vendor/Jcrop.gif | Bin .../public/css}/vendor/jquery.Jcrop.css | 0 {js => Resources/public/js}/demo.js | 0 {js => Resources/public/js}/load-image-exif-map.js | 0 {js => Resources/public/js}/load-image-exif.js | 0 {js => Resources/public/js}/load-image-ios.js | 0 {js => Resources/public/js}/load-image-meta.js | 0 .../public/js}/load-image-orientation.js | 0 {js => Resources/public/js}/load-image.js | 0 {js => Resources/public/js}/load-image.min.js | 0 {js => Resources/public/js}/vendor/jquery.Jcrop.js | 0 composer.json | 8 +++++++- 14 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 BlueimpJsLoadImageBundle.php rename {css => Resources/public/css}/demo.css (100%) rename {css => Resources/public/css}/vendor/Jcrop.gif (100%) mode change 100755 => 100644 rename {css => Resources/public/css}/vendor/jquery.Jcrop.css (100%) mode change 100755 => 100644 rename {js => Resources/public/js}/demo.js (100%) rename {js => Resources/public/js}/load-image-exif-map.js (100%) rename {js => Resources/public/js}/load-image-exif.js (100%) rename {js => Resources/public/js}/load-image-ios.js (100%) rename {js => Resources/public/js}/load-image-meta.js (100%) rename {js => Resources/public/js}/load-image-orientation.js (100%) rename {js => Resources/public/js}/load-image.js (100%) rename {js => Resources/public/js}/load-image.min.js (100%) rename {js => Resources/public/js}/vendor/jquery.Jcrop.js (100%) mode change 100755 => 100644 diff --git a/BlueimpJsLoadImageBundle.php b/BlueimpJsLoadImageBundle.php new file mode 100644 index 0000000..b01f9da --- /dev/null +++ b/BlueimpJsLoadImageBundle.php @@ -0,0 +1,9 @@ +