Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use clone not chained methods to work with InterventionBackend & vips #120

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/FieldType/DBFocusPoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -285,14 +285,14 @@ public function applyCrop(Image_Backend $backend, array $cropData): ?Image_Backe
switch ($cropAxis) {
case 'x':
//Generate image
return $backend
->resizeByHeight($height)
->crop(0, $cropOffset, $width, $height);
$backend = $backend->resizeByHeight($height);
$backendCopy = clone $backend;
return $backendCopy->crop(0, $cropOffset, $width, $height);
case 'y':
//Generate image
return $backend
->resizeByWidth($width)
->crop($cropOffset, 0, $width, $height);
$backend = $backend->resizeByWidth($height);
$backendCopy = clone $backend;
return $backendCopy->crop($cropOffset, 0, $width, $height);
default:
//Generate image without cropping
return $backend->resize($width, $height);
Expand Down
Loading