Skip to content

Commit

Permalink
Also set RGB channels when reading the image (#167).
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Sep 12, 2021
1 parent 83b8cb1 commit 4282b98
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions coders/sixel.c
Original file line number Diff line number Diff line change
Expand Up @@ -1101,6 +1101,7 @@ static Image *ReadSIXELImage(const ImageInfo *image_info,ExceptionInfo *exceptio
{
j=(ssize_t) sixel_pixels[y * image->columns + x];
SetPixelIndex(indexes+x,j);
SetPixelRGBO(r,image->colormap+(ssize_t) j);
r++;
}
if (SyncAuthenticPixels(image,exception) == MagickFalse)
Expand Down

0 comments on commit 4282b98

Please sign in to comment.