salted-herring/salted-cropper

This package is abandoned and no longer maintained. No replacement package was suggested.

Salted Herring's Image Cropper Field

Installs: 1 771

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 4

Open Issues: 4

Language:JavaScript

Type:silverstripe-module

2.0.8 2018-06-25 23:26 UTC

README

Salted Herring's Cropper Field for SilverStripe. This is to avoid the deadly issue that FileSync task will disconnect all cropped images, when using silverstripe-cropperfield. Please remove silverstripe-cropperfield module if you have already installed it, other it will result in funny conflict.

2.0.0

Because in 1.x versions, cropping happens directly on the images, which makes them not available for "reuse", 2.0.0 is now to resolve this issue by redesigning the way that the cropper tool works.

Pleaes note: SaltedUploader will be retired soon. Please replace all SaltedUploader occurrences with CroppableImageField!!

Usage

  1. Download it to SilverStripe's root directory
git clone git@github.com:salted-herring/salted-cropper.git

or

composer require salted-herring/salted-cropper
  1. Sake it
sake dev/build
  1. flush frontend and backend's cache

  2. Sample code:

    protected static $has_one = array(
        'Photo'     =>  'SaltedCroppableImage'
    );
    
    
    public function getCMSFields()
    {
        $fields = parent::getCMSFields();
        ...
        // adding a free cropper
        $fields->addFieldToTab(TAB_NAME, CroppableImageField::create('PhotoID', A_TITLE_TO_THE_FILED);
    
        // adding cropper with ratio
        $fields->addFieldToTab(TAB_NAME, CroppableImageField::create('PhotoID', A_TITLE_TO_THE_FILED)->setCropperRatio(16/9));
        ...
        return $fields;        
    }
  3. Add image > upload/select > save > edit > do your cropping

  4. Output

    $Photo
    $Photo.Cropped
    $Photo.Cropped.SetWidth(100)

1.x

This doc is for 1.0 and above. If you are using 1.0- versions, do not use this doc.

Usage (internal usage for now)

  1. Download it to SilverStripe's root directory
git clone git@github.com:salted-herring/salted-cropper.git

or

composer require salted-herring/salted-cropper
  1. Sake it
sake dev/build
  1. flush frontend and backend's cache

  2. Sample code:

    protected static $has_one = array(
        'Photo'     =>  'Image'
    );
    
    
    public function getCMSFields() {
        $fields = parent::getCMSFields();
        ...
        // adding a free cropper
        $fields->addFieldToTab(TAB_NAME, SaltedUploader::create('Photo', A_TITLE_TO_THE_FILED);
    
        // adding cropper with ratio
        $fields->addFieldToTab(TAB_NAME, SaltedUploader::create('Photo', A_TITLE_TO_THE_FILED)->setCropperRatio(16/9));
        ...
        return $fields;        
    }
  3. Upload and image, and then click the edit button - in the drop down area, you will see the cropper area. Do the cropping and then save the image (NOTE: if you don't save the image editing, before you save the page/data object, it will not take effect)

  4. Output

    $Photo
    $Photo.Cropped
    $Photo.Cropped.SetWidth(100)