#include "wand/studio.h"#include "wand/MagickWand.h"#include "wand/magick-wand-private.h"#include "wand/pixel-wand-private.h"#include "wand/wand.h"Go to the source code of this file.
Data Structures | |
| struct | _PixelWand |
Defines | |
| #define | PixelWandId "PixelWand" |
Functions | |
| WandExport void | ClearPixelWand (PixelWand *wand) |
| WandExport PixelWand * | ClonePixelWand (const PixelWand *wand) |
| WandExport PixelWand ** | ClonePixelWands (const PixelWand **wands, const unsigned long number_wands) |
| WandExport PixelWand * | DestroyPixelWand (PixelWand *wand) |
| WandExport PixelWand ** | DestroyPixelWands (PixelWand **wand, const unsigned long number_wands) |
| WandExport MagickBooleanType | IsPixelWandSimilar (PixelWand *p, PixelWand *q, const double fuzz) |
| WandExport MagickBooleanType | IsPixelWand (const PixelWand *wand) |
| WandExport PixelWand * | NewPixelWand (void) |
| WandExport PixelWand ** | NewPixelWands (const unsigned long number_wands) |
| WandExport MagickBooleanType | PixelClearException (PixelWand *wand) |
| WandExport double | PixelGetAlpha (const PixelWand *wand) |
| WandExport Quantum | PixelGetAlphaQuantum (const PixelWand *wand) |
| WandExport double | PixelGetBlack (const PixelWand *wand) |
| WandExport Quantum | PixelGetBlackQuantum (const PixelWand *wand) |
| WandExport double | PixelGetBlue (const PixelWand *wand) |
| WandExport Quantum | PixelGetBlueQuantum (const PixelWand *wand) |
| WandExport char * | PixelGetColorAsString (const PixelWand *wand) |
| WandExport char * | PixelGetColorAsNormalizedString (const PixelWand *wand) |
| WandExport unsigned long | PixelGetColorCount (const PixelWand *wand) |
| WandExport double | PixelGetCyan (const PixelWand *wand) |
| WandExport Quantum | PixelGetCyanQuantum (const PixelWand *wand) |
| WandExport char * | PixelGetException (const PixelWand *wand, ExceptionType *severity) |
| WandExport ExceptionType | PixelGetExceptionType (const PixelWand *wand) |
| WandExport double | PixelGetFuzz (const PixelWand *wand) |
| WandExport double | PixelGetGreen (const PixelWand *wand) |
| WandExport Quantum | PixelGetGreenQuantum (const PixelWand *wand) |
| WandExport void | PixelGetHSL (const PixelWand *wand, double *hue, double *saturation, double *lightness) |
| WandExport IndexPacket | PixelGetIndex (const PixelWand *wand) |
| WandExport double | PixelGetMagenta (const PixelWand *wand) |
| WandExport Quantum | PixelGetMagentaQuantum (const PixelWand *wand) |
| WandExport void | PixelGetMagickColor (const PixelWand *wand, MagickPixelPacket *color) |
| WandExport double | PixelGetOpacity (const PixelWand *wand) |
| WandExport Quantum | PixelGetOpacityQuantum (const PixelWand *wand) |
| WandExport void | PixelGetQuantumColor (const PixelWand *wand, PixelPacket *color) |
| WandExport double | PixelGetRed (const PixelWand *wand) |
| WandExport Quantum | PixelGetRedQuantum (const PixelWand *wand) |
| WandExport double | PixelGetYellow (const PixelWand *wand) |
| WandExport Quantum | PixelGetYellowQuantum (const PixelWand *wand) |
| WandExport void | PixelSetAlpha (PixelWand *wand, const double alpha) |
| WandExport void | PixelSetAlphaQuantum (PixelWand *wand, const Quantum opacity) |
| WandExport void | PixelSetBlack (PixelWand *wand, const double black) |
| WandExport void | PixelSetBlackQuantum (PixelWand *wand, const Quantum black) |
| WandExport void | PixelSetBlue (PixelWand *wand, const double blue) |
| WandExport void | PixelSetBlueQuantum (PixelWand *wand, const Quantum blue) |
| WandExport MagickBooleanType | PixelSetColor (PixelWand *wand, const char *color) |
| WandExport void | PixelSetColorCount (PixelWand *wand, const unsigned long count) |
| WandExport void | PixelSetColorFromWand (PixelWand *wand, const PixelWand *color) |
| WandExport void | PixelSetCyan (PixelWand *wand, const double cyan) |
| WandExport void | PixelSetCyanQuantum (PixelWand *wand, const Quantum cyan) |
| WandExport void | PixelSetFuzz (PixelWand *wand, const double fuzz) |
| WandExport void | PixelSetGreen (PixelWand *wand, const double green) |
| WandExport void | PixelSetGreenQuantum (PixelWand *wand, const Quantum green) |
| WandExport void | PixelSetHSL (PixelWand *wand, const double hue, const double saturation, const double lightness) |
| WandExport void | PixelSetIndex (PixelWand *wand, const IndexPacket index) |
| WandExport void | PixelSetMagenta (PixelWand *wand, const double magenta) |
| WandExport void | PixelSetMagentaQuantum (PixelWand *wand, const Quantum magenta) |
| WandExport void | PixelSetMagickColor (PixelWand *wand, const MagickPixelPacket *color) |
| WandExport void | PixelSetOpacity (PixelWand *wand, const double opacity) |
| WandExport void | PixelSetOpacityQuantum (PixelWand *wand, const Quantum opacity) |
| WandExport void | PixelSetQuantumColor (PixelWand *wand, const PixelPacket *color) |
| WandExport void | PixelSetRed (PixelWand *wand, const double red) |
| WandExport void | PixelSetRedQuantum (PixelWand *wand, const Quantum red) |
| WandExport void | PixelSetYellow (PixelWand *wand, const double yellow) |
| WandExport void | PixelSetYellowQuantum (PixelWand *wand, const Quantum yellow) |
| #define PixelWandId "PixelWand" |
Definition at line 58 of file pixel-wand.c.
Referenced by ClonePixelWand(), IsPixelWand(), and NewPixelWand().
| WandExport void ClearPixelWand | ( | PixelWand * | wand | ) |
Definition at line 109 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::exception, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Definition at line 142 of file pixel-wand.c.
References AcquireWandId(), _PixelWand::count, _PixelWand::debug, _PixelWand::exception, _PixelWand::id, MaxTextExtent, _PixelWand::name, _PixelWand::pixel, PixelWandId, _PixelWand::signature, ThrowWandFatalException, and WandSignature.
Referenced by ClonePixelWands().
| WandExport PixelWand** ClonePixelWands | ( | const PixelWand ** | wands, | |
| const unsigned long | number_wands | |||
| ) |
Definition at line 195 of file pixel-wand.c.
References ClonePixelWand(), and ThrowWandFatalException.
Referenced by ClonePixelIterator(), and ClonePixelView().
Definition at line 236 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::exception, _PixelWand::id, _PixelWand::name, RelinquishWandId(), _PixelWand::signature, and WandSignature.
Referenced by DestroyPixelWands(), MagickMontageImage(), main(), and ScribbleImage().
Definition at line 275 of file pixel-wand.c.
References DestroyPixelWand(), and WandSignature.
Referenced by ClearPixelIterator(), DestroyPixelIterator(), and DestroyPixelsThreadSet().
| WandExport MagickBooleanType IsPixelWand | ( | const PixelWand * | wand | ) |
Definition at line 359 of file pixel-wand.c.
References _PixelWand::name, PixelWandId, _PixelWand::signature, and WandSignature.
Definition at line 321 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport PixelWand* NewPixelWand | ( | void | ) |
Definition at line 388 of file pixel-wand.c.
References AcquireWandId(), _PixelWand::debug, _PixelWand::exception, _PixelWand::id, MaxTextExtent, _PixelWand::name, _PixelWand::pixel, PixelWandId, _PixelWand::signature, ThrowWandFatalException, and WandSignature.
Referenced by MagickGetBackgroundColor(), MagickMontageImage(), main(), NewPixelWands(), and ScribbleImage().
| WandExport PixelWand** NewPixelWands | ( | const unsigned long | number_wands | ) |
Definition at line 442 of file pixel-wand.c.
References NewPixelWand(), and ThrowWandFatalException.
Referenced by AcquirePixelsThreadSet(), ClearPixelIterator(), MagickGetImageHistogram(), NewPixelIterator(), and NewPixelRegionIterator().
| WandExport MagickBooleanType PixelClearException | ( | PixelWand * | wand | ) |
Definition at line 482 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::exception, _PixelWand::name, _PixelWand::signature, and WandSignature.
| WandExport double PixelGetAlpha | ( | const PixelWand * | wand | ) |
Definition at line 514 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, QuantumScale, _PixelWand::signature, and WandSignature.
| WandExport Quantum PixelGetAlphaQuantum | ( | const PixelWand * | wand | ) |
Definition at line 545 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport double PixelGetBlack | ( | const PixelWand * | wand | ) |
Definition at line 576 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, QuantumScale, _PixelWand::signature, and WandSignature.
| WandExport Quantum PixelGetBlackQuantum | ( | const PixelWand * | wand | ) |
Definition at line 607 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Referenced by DuplexTransferPixelViewIterator(), PixelSyncIterator(), SetPixelViewIterator(), TransferPixelViewIterator(), and UpdatePixelViewIterator().
| WandExport double PixelGetBlue | ( | const PixelWand * | wand | ) |
Definition at line 638 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, QuantumScale, _PixelWand::signature, and WandSignature.
| WandExport Quantum PixelGetBlueQuantum | ( | const PixelWand * | wand | ) |
Definition at line 669 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Referenced by MagickBlackThresholdImage(), MagickColorizeImage(), MagickTintImage(), and MagickWhiteThresholdImage().
| WandExport char* PixelGetColorAsNormalizedString | ( | const PixelWand * | wand | ) |
Definition at line 741 of file pixel-wand.c.
References _PixelWand::debug, MaxTextExtent, _PixelWand::name, _PixelWand::pixel, QuantumScale, _PixelWand::signature, and WandSignature.
| WandExport char* PixelGetColorAsString | ( | const PixelWand * | wand | ) |
Definition at line 700 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport unsigned long PixelGetColorCount | ( | const PixelWand * | wand | ) |
Definition at line 785 of file pixel-wand.c.
References _PixelWand::count, _PixelWand::debug, _PixelWand::name, _PixelWand::signature, and WandSignature.
| WandExport double PixelGetCyan | ( | const PixelWand * | wand | ) |
Definition at line 816 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, QuantumScale, _PixelWand::signature, and WandSignature.
| WandExport Quantum PixelGetCyanQuantum | ( | const PixelWand * | wand | ) |
Definition at line 847 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport char* PixelGetException | ( | const PixelWand * | wand, | |
| ExceptionType * | severity | |||
| ) |
Definition at line 881 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::exception, MaxTextExtent, _PixelWand::name, _PixelWand::signature, ThrowWandFatalException, and WandSignature.
| WandExport ExceptionType PixelGetExceptionType | ( | const PixelWand * | wand | ) |
Definition at line 935 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::exception, _PixelWand::name, _PixelWand::signature, and WandSignature.
| WandExport double PixelGetFuzz | ( | const PixelWand * | wand | ) |
Definition at line 966 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport double PixelGetGreen | ( | const PixelWand * | wand | ) |
Definition at line 997 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, QuantumScale, _PixelWand::signature, and WandSignature.
| WandExport Quantum PixelGetGreenQuantum | ( | const PixelWand * | wand | ) |
Definition at line 1028 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Referenced by MagickBlackThresholdImage(), MagickColorizeImage(), MagickTintImage(), and MagickWhiteThresholdImage().
| WandExport void PixelGetHSL | ( | const PixelWand * | wand, | |
| double * | hue, | |||
| double * | saturation, | |||
| double * | lightness | |||
| ) |
Definition at line 1063 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport IndexPacket PixelGetIndex | ( | const PixelWand * | wand | ) |
Definition at line 1097 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport double PixelGetMagenta | ( | const PixelWand * | wand | ) |
Definition at line 1128 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, QuantumScale, _PixelWand::signature, and WandSignature.
| WandExport Quantum PixelGetMagentaQuantum | ( | const PixelWand * | wand | ) |
Definition at line 1159 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelGetMagickColor | ( | const PixelWand * | wand, | |
| MagickPixelPacket * | color | |||
| ) |
Definition at line 1192 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Referenced by MagickFloodfillPaintImage(), MagickNewImage(), MagickOpaquePaintImageChannel(), and MagickTransparentPaintImage().
| WandExport double PixelGetOpacity | ( | const PixelWand * | wand | ) |
Definition at line 1225 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, QuantumScale, _PixelWand::signature, and WandSignature.
| WandExport Quantum PixelGetOpacityQuantum | ( | const PixelWand * | wand | ) |
Definition at line 1256 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Referenced by MagickBlackThresholdImage(), MagickColorizeImage(), MagickTintImage(), and MagickWhiteThresholdImage().
| WandExport void PixelGetQuantumColor | ( | const PixelWand * | wand, | |
| PixelPacket * | color | |||
| ) |
Definition at line 1289 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Referenced by DrawSetBorderColor(), DrawSetFillColor(), DrawSetStrokeColor(), DrawSetTextUnderColor(), DuplexTransferPixelViewIterator(), MagickBorderImage(), MagickColorFloodfillImage(), MagickColorizeImage(), MagickFloodfillPaintImage(), MagickFrameImage(), MagickMatteFloodfillImage(), MagickMontageImage(), MagickRotateImage(), MagickSetBackgroundColor(), MagickSetImageBackgroundColor(), MagickSetImageBorderColor(), MagickSetImageColormapColor(), MagickSetImageMatteColor(), MagickShearImage(), MagickTintImage(), PixelSyncIterator(), SetPixelViewIterator(), TransferPixelViewIterator(), and UpdatePixelViewIterator().
| WandExport double PixelGetRed | ( | const PixelWand * | wand | ) |
Definition at line 1334 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, QuantumScale, _PixelWand::signature, and WandSignature.
| WandExport Quantum PixelGetRedQuantum | ( | const PixelWand * | wand | ) |
Definition at line 1365 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Referenced by MagickBlackThresholdImage(), MagickColorizeImage(), MagickTintImage(), and MagickWhiteThresholdImage().
| WandExport double PixelGetYellow | ( | const PixelWand * | wand | ) |
Definition at line 1396 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, QuantumScale, _PixelWand::signature, and WandSignature.
| WandExport Quantum PixelGetYellowQuantum | ( | const PixelWand * | wand | ) |
Definition at line 1427 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetAlpha | ( | PixelWand * | wand, | |
| const double | alpha | |||
| ) |
Definition at line 1461 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetAlphaQuantum | ( | PixelWand * | wand, | |
| const Quantum | opacity | |||
| ) |
Definition at line 1496 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetBlack | ( | PixelWand * | wand, | |
| const double | black | |||
| ) |
Definition at line 1529 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetBlackQuantum | ( | PixelWand * | wand, | |
| const Quantum | black | |||
| ) |
Definition at line 1563 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Referenced by DuplexTransferPixelViewIterator(), GetPixelViewIterator(), MagickGetImagePixelColor(), PixelGetCurrentIteratorRow(), PixelGetNextIteratorRow(), PixelGetPreviousIteratorRow(), TransferPixelViewIterator(), and UpdatePixelViewIterator().
| WandExport void PixelSetBlue | ( | PixelWand * | wand, | |
| const double | blue | |||
| ) |
Definition at line 1596 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetBlueQuantum | ( | PixelWand * | wand, | |
| const Quantum | blue | |||
| ) |
Definition at line 1630 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport MagickBooleanType PixelSetColor | ( | PixelWand * | wand, | |
| const char * | color | |||
| ) |
Definition at line 1664 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::exception, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Referenced by main(), and ScribbleImage().
| WandExport void PixelSetColorCount | ( | PixelWand * | wand, | |
| const unsigned long | count | |||
| ) |
Definition at line 1706 of file pixel-wand.c.
References _PixelWand::count, _PixelWand::debug, _PixelWand::name, _PixelWand::signature, and WandSignature.
Referenced by MagickGetImageHistogram().
Definition at line 1739 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetCyan | ( | PixelWand * | wand, | |
| const double | cyan | |||
| ) |
Definition at line 1773 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetCyanQuantum | ( | PixelWand * | wand, | |
| const Quantum | cyan | |||
| ) |
Definition at line 1807 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetFuzz | ( | PixelWand * | wand, | |
| const double | fuzz | |||
| ) |
Definition at line 1840 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetGreen | ( | PixelWand * | wand, | |
| const double | green | |||
| ) |
Definition at line 1873 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetGreenQuantum | ( | PixelWand * | wand, | |
| const Quantum | green | |||
| ) |
Definition at line 1907 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetHSL | ( | PixelWand * | wand, | |
| const double | hue, | |||
| const double | saturation, | |||
| const double | lightness | |||
| ) |
Definition at line 1942 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetIndex | ( | PixelWand * | wand, | |
| const IndexPacket | index | |||
| ) |
Definition at line 1984 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Referenced by DuplexTransferPixelViewIterator(), GetPixelViewIterator(), MagickGetImageHistogram(), MagickGetImagePixelColor(), PixelGetCurrentIteratorRow(), PixelGetNextIteratorRow(), PixelGetPreviousIteratorRow(), and TransferPixelViewIterator().
| WandExport void PixelSetMagenta | ( | PixelWand * | wand, | |
| const double | magenta | |||
| ) |
Definition at line 2017 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetMagentaQuantum | ( | PixelWand * | wand, | |
| const Quantum | magenta | |||
| ) |
Definition at line 2052 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetMagickColor | ( | PixelWand * | wand, | |
| const MagickPixelPacket * | color | |||
| ) |
Definition at line 2085 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetOpacity | ( | PixelWand * | wand, | |
| const double | opacity | |||
| ) |
Definition at line 2120 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetOpacityQuantum | ( | PixelWand * | wand, | |
| const Quantum | opacity | |||
| ) |
Definition at line 2156 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetQuantumColor | ( | PixelWand * | wand, | |
| const PixelPacket * | color | |||
| ) |
Definition at line 2189 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
Referenced by DrawGetBorderColor(), DrawGetFillColor(), DrawGetStrokeColor(), DrawGetTextUnderColor(), DuplexTransferPixelViewIterator(), GetPixelViewIterator(), MagickGetBackgroundColor(), MagickGetImageBackgroundColor(), MagickGetImageBorderColor(), MagickGetImageColormapColor(), MagickGetImageHistogram(), MagickGetImageMatteColor(), MagickGetImagePixelColor(), PixelGetCurrentIteratorRow(), PixelGetNextIteratorRow(), PixelGetPreviousIteratorRow(), TransferPixelViewIterator(), and UpdatePixelViewIterator().
| WandExport void PixelSetRed | ( | PixelWand * | wand, | |
| const double | red | |||
| ) |
Definition at line 2227 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetRedQuantum | ( | PixelWand * | wand, | |
| const Quantum | red | |||
| ) |
Definition at line 2261 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetYellow | ( | PixelWand * | wand, | |
| const double | yellow | |||
| ) |
Definition at line 2294 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
| WandExport void PixelSetYellowQuantum | ( | PixelWand * | wand, | |
| const Quantum | yellow | |||
| ) |
Definition at line 2328 of file pixel-wand.c.
References _PixelWand::debug, _PixelWand::name, _PixelWand::pixel, _PixelWand::signature, and WandSignature.
1.6.1