-
Notifications
You must be signed in to change notification settings - Fork 529
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
Wrong colors used in output.jpg #435
Comments
anybody? |
I tried with imagick and gd.
But neither things worked for me. Please help! |
Got the same problem. Image is grayed out a little. |
we have also this behavior when image are downsized (landscape highres pictures) |
I had the similar problem when after image resizing colors become a little bit "zombie". And I've used this code for resizing: use Imagine\Imagick\Imagine;
use Imagine\Image\Box;
$imagine = new Imagine();
// $file contains path to the file
$image = $imagine->open($file)
->thumbnail(new Box(1500, 980))
->save($outputFileName, ['jpeg_quality' => 90]); Solution for me was comment the line with image stripping: ...
$thumbnail->usePalette($this->palette());
//$thumbnail->strip(); <-- comment this line
... in method Image weight become more but the quality is good. |
I've encountered the same problem. This modification of
|
Hi Guys!
I'm using PHP 5.5 and tried Gmagick, Imagick and GD
Start with this image `ìnput.jpg`` (800x1200px) - color is CORRECT:
Temp image
temp_outpur.jpg
is no 533x800px - color is STILL CORRECT:The result
output.jpg
667x800px - color is INCORRECT:Here is a Side-by-Side diff (
output.jpg
is a little bit gray....):The text was updated successfully, but these errors were encountered: