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

White (#FFFFFF) becomes yellowish (#FCFEFC) while resizing GIF #763

Open
raidoa opened this issue Aug 5, 2017 · 2 comments
Open

White (#FFFFFF) becomes yellowish (#FCFEFC) while resizing GIF #763

raidoa opened this issue Aug 5, 2017 · 2 comments

Comments

@raidoa
Copy link

raidoa commented Aug 5, 2017

Hi,

Just discovered a challenge where uploaded GIF files will be turned bit yellow after resizing.
JPG and PNG are fine.

Will it go under bug or is something missing from the code?

Using version 2.4 with rather plain code:

use Intervention\Image\ImageManagerStatic as Image;

$inputFile = "input.gif";
$img = Image::make($inputFile)->widen(1024, function ($constraint) {
    $constraint->upsize();
  }
);
$img->save("output.gif");

output.gif:
output

input.gif:
input

@ghost
Copy link

ghost commented Aug 9, 2019

I realize this issue was created over 2 years ago now, but I am seeing the same issue with GIFs in version 2.5. This is the single mention of the issue that I've been able to find anywhere on the interwebs. I'd be grateful if anyone had any suggestions on a fix or workaround.

@Sublan
Copy link

Sublan commented Oct 28, 2020

use Imagick;
$im = new Imagick($image);
$im->resizeImage(500,582,(FIlter),1,false);
that filter para causing the issues,if I resize without (filter),param (No change in color in output image).
Resize Using Imagick Solves,But I dnt know how to edit resize method in Intervention.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants