예제 #1
0
 public static extern void PixelSetQuantumColor(IntPtr pixelWand1, ref PixelPacket pixelPacket2);
예제 #2
0
 public void SetQuantumColor(PixelPacket color)
 {
     MagickWandApi.PixelSetQuantumColor(Wand, ref color);
 }
예제 #3
0
 public static extern void PixelSetMagickColor(IntPtr pixelWand1, ref PixelPacket pixelPacket2);
예제 #4
0
        public PixelPacket GetQuantumColor()
        {
            var pp = new PixelPacket();
            MagickWandApi.PixelGetQuantumColor(Wand, ref pp);

            return pp;
        }