Ejemplo n.º 1
0
 private void CopyToXyzw(PixelArea <TColor> area, int sourceX, int sourceY, int width, int height)
 {
     for (int y = 0; y < height; y++)
     {
         BufferSpan <TColor> source      = this.GetRowSpan(sourceX, sourceY + y);
         BufferSpan <byte>   destination = area.GetRowSpan(y);
         Operations.ToXyzwBytes(source, destination, width);
     }
 }
Ejemplo n.º 2
0
 private void CopyToZyxw(PixelArea <TPixel> area, int sourceX, int sourceY, int width, int height)
 {
     for (int y = 0; y < height; y++)
     {
         Span <TPixel> source      = this.GetRowSpan(sourceX, sourceY + y);
         Span <byte>   destination = area.GetRowSpan(y);
         Operations.ToZyxwBytes(source, destination, width);
     }
 }
Ejemplo n.º 3
0
 private void CopyFromXyzw(PixelArea <TColor> area, int targetX, int targetY, int width, int height)
 {
     for (int y = 0; y < height; y++)
     {
         BufferSpan <byte>   source      = area.GetRowSpan(y);
         BufferSpan <TColor> destination = this.GetRowSpan(targetX, targetY + y);
         Operations.PackFromXyzwBytes(source, destination, width);
     }
 }
Ejemplo n.º 4
0
        private void CopyFromZyx(PixelArea <TPixel> area, int targetX, int targetY, int width, int height)
        {
            for (int y = 0; y < height; y++)
            {
                Span <byte>   source      = area.GetRowSpan(y);
                Span <TPixel> destination = this.GetRowSpan(targetX, targetY + y);

                Operations.PackFromZyxBytes(source, destination, width);
            }
        }