TSCARBitmap.Resize
From SCAR Divi Manual
Revision as of 11:22, 26 October 2012 by Freddy (talk | contribs) (Created page with "==Definition== Member of TSCARBitmap.<source lang="scar" lines="false"> function TSCARBitmap.Resize(const NewWidth, NewHeight: Integer); </source> ==Availability== SCAR D...")
Contents
Definition
Member of TSCARBitmap.function TSCARBitmap.Resize(const NewWidth, NewHeight: Integer);
Availability
SCAR Divi 3.35 > Current
Description
Changes the size of the bitmap (and it's canvas) to the dimensions given by NewWidth and NewHeight.
Example
var Bmp: TSCARBitmap; begin Bmp := TSCARBitmap.Create('deNrtkttOg0AYhPsa+v7P0JhQEFhOCxQQdjmVQ' + 'qHVG2M93zuRxDv/psKFF02+TCazw2QJXC+uFln9dOGf44SN6RYj8BPXDCdP5CH' + 'KBij8xDXdluu09+MWCj9x7dYSQdI5QY1B+L+NMF5pLBvh0dbiJfQnwelZa0G6V' + '80Ub4cR2690WwDDkfDIcXru9fy7QdETb90oejzCvAIJcuIpsfmVIMVgbPFiZWA' + 'qh0dC9L85EuAmN2pouhIKT5eBbE4QYFALoSebIN8+z0jRvhBk9SPjpWalUHi6D' + 'KqOAp/A8qTNc+YKeLoM6t0rgWompiuWiqexBJ4ug03/RmD7JXYUPVwZETxdBs3' + 'wTlC2R/y0mILC02XQ7uekO3zMyO7+c0b6hzn5Ao/jnYI='); try DebugBitmap(Bmp); Wait(2000); Bmp.Resize(100, 100); DebugBitmap(Bmp); finally Bmp.Free; end; end.