2017 © Pedro Peláez
 

elgg-plugin cropper

Cropper for Elgg

image

hypejunction/cropper

Cropper for Elgg

  • Monday, January 25, 2016
  • by hypeJunction
  • Repository
  • 1 Watchers
  • 0 Stars
  • 45 Installations
  • JavaScript
  • 1 Dependents
  • 2 Suggesters
  • 1 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

Cropper for Elgg

Elgg 1.11 Elgg 1.12 Elgg 2.0, (*1)

Responsive image cropping input for Elgg, (*2)

file input, (*3)

Usage

Add cropper as a form input

echo elgg_view('input/cropper', array(
    'src' => 'http://example.com/uri/image.jpg',
    'ratio' => 16/9,
    'name' => 'crop_coords',
));

Add cropper to a file input (basic usage)

// in your form
echo elgg_view('input/file', array(
    'name' => 'avatar',
    'use_cropper' => true,
));

// in your action
$coords = get_input('crop_coords');

Add cropper to a file input (advanced usage)

// in your form
echo elgg_view('input/file', array(
    'name' => 'cover',
    'use_cropper' => array(
        'name' => 'cover_crop_coords',
        'ratio' => 16/9,
        'src' => '/uri/image.jpg', // previously uploaded file
        'x1' => 100,
        'y1' => 100,
        'x2' => 260,
        'y2' => 190,
    ),
));

// in your action
$coords = get_input('cover_crop_coords');

Notes

  1. In your action, be sure to use the same image source for cropping. If you passed master image source to the file input, you will need to implement the logic for both new file upload and master image, as cropping coordinates may change even without new file upload.

The Versions

25/01 2016

dev-master

9999999-dev http://hypejunction.com

Cropper for Elgg

  Sources   Download

GPL-2.0

The Requires

 

by Ismayil Khayredinov

plugin image crop elgg cropper

25/01 2016

1.1.0

1.1.0.0 http://hypejunction.com

Cropper for Elgg

  Sources   Download

GPL-2.0

The Requires

 

by Ismayil Khayredinov

plugin image crop elgg cropper

29/12 2015

1.0.2

1.0.2.0 http://hypejunction.com

Cropper for Elgg

  Sources   Download

GPL-2.0

The Requires

 

by Ismayil Khayredinov

plugin image crop elgg cropper

29/12 2015

1.0.1

1.0.1.0 http://hypejunction.com

Cropper for Elgg

  Sources   Download

GPL-2.0

The Requires

 

by Ismayil Khayredinov

plugin image crop elgg cropper

16/12 2015

1.0.0

1.0.0.0 http://hypejunction.com

Cropper for Elgg

  Sources   Download

GPL-2.0

The Requires

 

by Ismayil Khayredinov

plugin image crop elgg cropper

04/12 2015

1.0.5

1.0.5.0 http://hypejunction.com

Cropper for Elgg

  Sources   Download

GPL-2.0

The Requires

  • bower-asset/cropper ~2.1

 

The Development Requires

by Ismayil Khayredinov

plugin image crop elgg cropper