From 4b7947d98c0625cfc53b481e2240a275e48c0d19 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Tue, 23 Jan 2018 16:36:56 -0800 Subject: replace image cropping library --- library/cropperjs | 1 + 1 file changed, 1 insertion(+) create mode 160000 library/cropperjs (limited to 'library/cropperjs/examples') diff --git a/library/cropperjs b/library/cropperjs new file mode 160000 index 000000000..6ac2b895f --- /dev/null +++ b/library/cropperjs @@ -0,0 +1 @@ +Subproject commit 6ac2b895f1630d659f54b31c0900ff2085cf04df -- cgit v1.2.3 From 1e8dcaffc977be9757b14ad23a4cc9f98c70ae60 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Tue, 23 Jan 2018 16:40:23 -0800 Subject: cleanup git issue --- library/cropperjs | 1 - 1 file changed, 1 deletion(-) delete mode 160000 library/cropperjs (limited to 'library/cropperjs/examples') diff --git a/library/cropperjs b/library/cropperjs deleted file mode 160000 index 6ac2b895f..000000000 --- a/library/cropperjs +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 6ac2b895f1630d659f54b31c0900ff2085cf04df -- cgit v1.2.3 From 5902528bae21b560b6be4879e5e87ed36ce099b6 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Tue, 23 Jan 2018 16:42:24 -0800 Subject: undo and redo adding new cropper library as it had a .git config from the original project --- .../examples/a-range-of-aspect-ratio.html | 71 ++++++++++++ library/cropperjs/examples/crop-a-round-image.html | 103 +++++++++++++++++ .../examples/crop-cross-origin-image.html | 49 ++++++++ library/cropperjs/examples/crop-on-canvas.html | 64 +++++++++++ library/cropperjs/examples/cropper-in-modal.html | 76 +++++++++++++ library/cropperjs/examples/customize-preview.html | 123 +++++++++++++++++++++ library/cropperjs/examples/fixed-crop-box.html | 48 ++++++++ library/cropperjs/examples/full-crop-box.html | 48 ++++++++ library/cropperjs/examples/mask-an-image.html | 123 +++++++++++++++++++++ library/cropperjs/examples/multiple-croppers.html | 48 ++++++++ .../cropperjs/examples/responsive-container.html | 49 ++++++++ 11 files changed, 802 insertions(+) create mode 100644 library/cropperjs/examples/a-range-of-aspect-ratio.html create mode 100644 library/cropperjs/examples/crop-a-round-image.html create mode 100644 library/cropperjs/examples/crop-cross-origin-image.html create mode 100644 library/cropperjs/examples/crop-on-canvas.html create mode 100644 library/cropperjs/examples/cropper-in-modal.html create mode 100644 library/cropperjs/examples/customize-preview.html create mode 100644 library/cropperjs/examples/fixed-crop-box.html create mode 100644 library/cropperjs/examples/full-crop-box.html create mode 100644 library/cropperjs/examples/mask-an-image.html create mode 100644 library/cropperjs/examples/multiple-croppers.html create mode 100644 library/cropperjs/examples/responsive-container.html (limited to 'library/cropperjs/examples') diff --git a/library/cropperjs/examples/a-range-of-aspect-ratio.html b/library/cropperjs/examples/a-range-of-aspect-ratio.html new file mode 100644 index 000000000..fae5cb60b --- /dev/null +++ b/library/cropperjs/examples/a-range-of-aspect-ratio.html @@ -0,0 +1,71 @@ + + + + + + + Cropper.js + + + + + +
+

Cropper with a range of aspect ratio

+
+ Picture +
+
+ + + + + diff --git a/library/cropperjs/examples/crop-a-round-image.html b/library/cropperjs/examples/crop-a-round-image.html new file mode 100644 index 000000000..da027d847 --- /dev/null +++ b/library/cropperjs/examples/crop-a-round-image.html @@ -0,0 +1,103 @@ + + + + + + + Cropper.js + + + + + +
+

Crop a round image

+

Image

+
+ Picture +
+

Result

+

+ +

+
+
+ + + + + diff --git a/library/cropperjs/examples/crop-cross-origin-image.html b/library/cropperjs/examples/crop-cross-origin-image.html new file mode 100644 index 000000000..54f08664a --- /dev/null +++ b/library/cropperjs/examples/crop-cross-origin-image.html @@ -0,0 +1,49 @@ + + + + + + + Cropper.js + + + + + +
+

Crop a cross origin image

+

A cross origin image with a crossorigin attribute and an available Access-Control-Allow-Origin response header can be cropped by Cropper.

+

Image

+
+ +
+

Result

+
+
+ + + + + diff --git a/library/cropperjs/examples/crop-on-canvas.html b/library/cropperjs/examples/crop-on-canvas.html new file mode 100644 index 000000000..228e36f75 --- /dev/null +++ b/library/cropperjs/examples/crop-on-canvas.html @@ -0,0 +1,64 @@ + + + + + + + Cropper.js + + + + + +
+

Crop on canvas with Cropper

+

Image

+
+ Picture +
+

Canvas

+
+ +
+
+ + + + + diff --git a/library/cropperjs/examples/cropper-in-modal.html b/library/cropperjs/examples/cropper-in-modal.html new file mode 100644 index 000000000..a9ce3e80b --- /dev/null +++ b/library/cropperjs/examples/cropper-in-modal.html @@ -0,0 +1,76 @@ + + + + + + + Cropper.js + + + + + + +
+

Cropper in a Bootstrap modal

+ + + + + + +
+ + + + + + + diff --git a/library/cropperjs/examples/customize-preview.html b/library/cropperjs/examples/customize-preview.html new file mode 100644 index 000000000..ea1c24b88 --- /dev/null +++ b/library/cropperjs/examples/customize-preview.html @@ -0,0 +1,123 @@ + + + + + + + Cropper.js + + + + + +
+

Customize preview for Cropper

+
+
+ Picture +
+
+
+
+
+
+
+
+
+
+
+
+ + + + + diff --git a/library/cropperjs/examples/fixed-crop-box.html b/library/cropperjs/examples/fixed-crop-box.html new file mode 100644 index 000000000..b9f1101fb --- /dev/null +++ b/library/cropperjs/examples/fixed-crop-box.html @@ -0,0 +1,48 @@ + + + + + + + Cropper.js + + + + + +
+

Cropper with fixed crop box

+
+ Picture +
+
+ + + + + diff --git a/library/cropperjs/examples/full-crop-box.html b/library/cropperjs/examples/full-crop-box.html new file mode 100644 index 000000000..7065eab94 --- /dev/null +++ b/library/cropperjs/examples/full-crop-box.html @@ -0,0 +1,48 @@ + + + + + + + Cropper.js + + + + + +
+

Cropper with full crop box

+
+ Picture +
+
+ + + + + diff --git a/library/cropperjs/examples/mask-an-image.html b/library/cropperjs/examples/mask-an-image.html new file mode 100644 index 000000000..d821da43b --- /dev/null +++ b/library/cropperjs/examples/mask-an-image.html @@ -0,0 +1,123 @@ + + + + + + + + Cropper.js + + + + + + +
+

Mask an image (Redaction)

+

Image

+
+ Picture +
+

Result

+

+
+
+ + + + + + diff --git a/library/cropperjs/examples/multiple-croppers.html b/library/cropperjs/examples/multiple-croppers.html new file mode 100644 index 000000000..6b12e70b2 --- /dev/null +++ b/library/cropperjs/examples/multiple-croppers.html @@ -0,0 +1,48 @@ + + + + + + + Cropper.js + + + + + +
+

Multiple Croppers

+

Cropper

+
+ Picture +
+

Another

+
+ Picture +
+
+ + + + + diff --git a/library/cropperjs/examples/responsive-container.html b/library/cropperjs/examples/responsive-container.html new file mode 100644 index 000000000..c1aa7483b --- /dev/null +++ b/library/cropperjs/examples/responsive-container.html @@ -0,0 +1,49 @@ + + + + + + + Cropper.js + + + + + +
+

Cropper with responsive container

+

+ +

+
+ Picture +
+
+ + + + + -- cgit v1.2.3