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

Different imagine options should result in a different image path #26

Closed
ausi opened this issue Dec 1, 2016 · 0 comments
Closed

Different imagine options should result in a different image path #26

ausi opened this issue Dec 1, 2016 · 0 comments
Assignees
Labels

Comments

@ausi
Copy link
Member

ausi commented Dec 1, 2016

In this example, the second resize returns the same image as the first one:

$options1 = (new ResizeOptions())
    ->setImagineOptions(['jpeg_quality' => 100])
;
$options2 = (new ResizeOptions())
    ->setImagineOptions(['jpeg_quality' => 50])
;

$resizedImage1 = $resizer->resize(..., ..., $options1);
$resizedImage2 = $resizer->resize(..., ..., $options2);
@ausi ausi added the bug label Dec 1, 2016
@ausi ausi self-assigned this Dec 1, 2016
@ausi ausi closed this as completed Jan 23, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant