#include "magick/list.h"
#include "magick/magick.h"
#include "magick/memory_.h"
+#include "magick/pixel.h"
#include "magick/quantum-private.h"
#include "magick/static.h"
#include "magick/string_.h"
break;
for (x=0; x < (ssize_t) image->columns; x++)
{
- SetRedComponentPixel(q,ScaleCharToQuantum(pBits->rgbRed));
- SetGreenComponentPixel(q,ScaleCharToQuantum(pBits->rgbGreen));
- SetBlueComponentPixel(q,ScaleCharToQuantum(pBits->rgbBlue));
+ SetRedPixelComponent(q,ScaleCharToQuantum(pBits->rgbRed));
+ SetGreenPixelComponent(q,ScaleCharToQuantum(pBits->rgbGreen));
+ SetBluePixelComponent(q,ScaleCharToQuantum(pBits->rgbBlue));
SetOpacityPixelComponent(q,OpaqueOpacity);
pBits++;
q++;