pixelSetPixelColor method

void pixelSetPixelColor(
  1. PixelInfo color
)

PixelSetPixelColor() sets the color of the pixel wand.

  • color the pixel wand color

Implementation

void pixelSetPixelColor(PixelInfo color) => using(
      (Arena arena) => _magickWandBindings.PixelSetPixelColor(
        _wandPtr,
        color._toPixelInfoStructPointer(allocator: arena),
      ),
    );