Download the PHP package restruct/silverstripe-focuspointcropper without Composer
On this page you can find all versions of the php package restruct/silverstripe-focuspointcropper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download restruct/silverstripe-focuspointcropper
More information about restruct/silverstripe-focuspointcropper
Files in restruct/silverstripe-focuspointcropper
Package silverstripe-focuspointcropper
Short Description Even smarter automatic image cropping for SilverStripe
License BSD-3-Clause
Informations about the package silverstripe-focuspointcropper
FocusPointCropper: Smarter Image Cropping for Silverstripe
This module adds a visual crop interface to Silverstripe's AssetAdmin, building on top of jonom/focuspoint. It allows editors to define an initial crop region that serves as the basis for FocusPoint's intelligent cropping.
Set crop & zoom level (drag/scroll) and FocusPoint (click) directly in the CMS.
Image by Nikolay Nachev (Pixabay)
Version Compatibility
| Branch | Module Version | Silverstripe | FocusPoint | PHP |
|---|---|---|---|---|
master |
2.x |
^4.0 || ^5.0 | ^4.0 || ^5.0 | ^7.4 || ^8.0 |
Note: composer.json is the source of truth for exact version constraints. This module replaces the older micschk/silverstripe-focuspointcropper package. Silverstripe 6 support is planned.
Basic Usage
When you edit an image in the CMS (AssetAdmin), an extra "Focus Point + Crop" field appears:
- Scroll on the image to zoom in/out
- Drag the image to pan and position the crop area
- Click on the subject of the image to set the focus point
- Save the image to apply the crop data
The crop data is stored on the image and used as the basis for all subsequent manipulations.
How It Works
CropData Storage
When you define a crop region in the CMS, the module stores CropData as JSON on the Image record. This contains:
- Crop region coordinates (x, y, width, height)
- Zoom level
- Canvas dimensions
Image Manipulation Methods
The module adds several manipulation methods to Image:
Cropped Methods - Apply CropData before standard manipulation:
CroppedImage($width, $height)- Apply crop, then resize to fitCroppedFill($width, $height)- Apply crop, then fill exact dimensionsCroppedFocusFill($width, $height)- Apply crop, then focus-aware fill
Focus-Aware Cropped Methods - Combine CropData with FocusPoint:
CroppedFocusFill($width, $height)- Uses both CropData and FocusPoint for optimal resultsCroppedFocusCropWidth($width)- Crop to width, respecting both crop region and focus pointCroppedFocusCropHeight($height)- Crop to height, respecting both crop region and focus point
SVG Support
When used together with restruct/silverstripe-svg-images, all crop methods work seamlessly with SVG files. The svg-images module automatically detects when this module is installed and enables crop support for SVGs.
Template Usage
Development Tools
Crop Functionality Test Page
A visual comparison tool is available at /dev/crop-compare to test crop functionality with both SVG and PNG images.
The tool:
- Tests all Cropped* methods (CroppedImage, CroppedFill, CroppedFocusFill, etc.)
- Compares regular manipulations with Cropped* versions
- Shows badges indicating which methods use CropData and/or FocusPoint
- Includes bundled test images with pre-configured CropData and FocusPoint
- Works with custom image IDs for testing your own images
Test Image Features:
- Dashed lines mark the crop boundaries
- White crosshair marks the FocusPoint location
- Orange triangle is near the FocusPoint - should stay visible in FocusFill crops
- Red circle is left of center - may be cropped in narrow FocusFill
Configuration
Configuration options can be set using Silverstripe's Config API:
For all available cropper options, see Cropper.js documentation.
Related Modules
- jonom/focuspoint - Required. Provides the FocusPoint field and basic focus-aware cropping
- restruct/silverstripe-svg-images - Optional. Enables full SVG support including crop methods
- restruct/silverstripe-simpler - Required. Provides form field utilities
License
BSD-3-Clause