ImageEn

TIEBitmap.MoveRegion Code Samples


Code samples for MoveRegion.
Automatically generated by the Every Method demo.
// Automated test of MoveRegion
// Move left region of image to right, filling with clBlack
ImageEnView1.IEBitmap.MoveRegion( 0, 0, 200, 400, 200, 0, clBlack, True, false )
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of MoveRegion - Alpha Channel
// Move left region of image to right, filling with clBlack
ImageEnView1.IEBitmap.MoveRegion( 0, 0, 200, 400, 200, 0, clBlack, True, false )
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of MoveRegion - 32-Bit RGBA
// Move left region of image to right, filling with clBlack
ImageEnView1.IEBitmap.MoveRegion( 0, 0, 200, 400, 200, 0, clBlack, True, false )
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of MoveRegion - 1-bit
// Move left region of image to right, filling with clBlack
ImageEnView1.IEBitmap.MoveRegion( 0, 0, 200, 400, 200, 0, clBlack, True, false )
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of MoveRegion - Random Values
// Move left region of image to right, filling with clWhite
ImageEnView1.IEBitmap.MoveRegion( 0, 0, 200, 400, 200, 0, clWhite, True, true )
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of MoveRegion - Alpha Channel - Random Values
// Move left region of image to right, filling with clWhite
ImageEnView1.IEBitmap.MoveRegion( 0, 0, 200, 400, 200, 0, clWhite, True, true )
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of MoveRegion - 32-Bit RGBA - Random Values
// Move left region of image to right, filling with clWhite
ImageEnView1.IEBitmap.MoveRegion( 0, 0, 200, 400, 200, 0, clWhite, True, true )
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of MoveRegion - 1-bit - Random Values
// Move left region of image to right, filling with clWhite
ImageEnView1.IEBitmap.MoveRegion( 0, 0, 200, 400, 200, 0, clWhite, True, true )
ImageEnView1.Update(); // Show changes in our viewer