Difference between revisions of "ResizeBitmap"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> function ResizeBitmap(const iBmp, Width, Height: Integer): Integer; </source> ==Availability== SCAR Divi 3.00 > Current ==Desc...")
 
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Definition==
 
==Definition==
 
<source lang="scar" lines="false">
 
<source lang="scar" lines="false">
function ResizeBitmap(const iBmp, Width, Height: Integer): Integer;
+
function ResizeBitmap(const Bmp, Width, Height: Integer): Integer;
 
</source>
 
</source>
  
 
==Availability==
 
==Availability==
SCAR Divi 3.00 > Current
+
SCAR Divi 3.25 > 3.34
  
 
==Description==
 
==Description==
Resizes a bitmap to the given dimensions.
+
Resizes a bitmap '''Bmp''' to the given dimensions '''Width''' and '''Height'''. A new bitmap is returned to hold the resized bitmap.
  
 
==Example==
 
==Example==
Line 41: Line 41:
 
==See Also==
 
==See Also==
 
*[[RotateBitmap]]
 
*[[RotateBitmap]]
 +
*[[GetBitmapSize]]
  
[[Category:Functions]]
+
[[Category:Deprecated Functions]]
[[Category:Bitmap Functions]]
 

Latest revision as of 02:38, 4 November 2012

Definition

function ResizeBitmap(const Bmp, Width, Height: Integer): Integer;

Availability

SCAR Divi 3.25 > 3.34

Description

Resizes a bitmap Bmp to the given dimensions Width and Height. A new bitmap is returned to hold the resized bitmap.

Example

var
  Bmp, W, H: Integer;

begin
  Bmp := BitmapFromString(54, 37, 'beNp78uXpq69gtD6GwaLh5' +
    'FcYF6sIMVLUR5dvvQWjlaEMpuW738K4qCK7Ww0YICB+GooUmDEHK' +
    'mtQfQZJO9UR0C5MgOQMiFPnxIOdgexCBgbD1q1QX6D5keouxBGGi' +
    'AAEg/CV6GEI0zUtnCF0zkC5EBK5mIqRdZ0pNxwgF4KjEjWNYZPC4' +
    'hG6uRA1ojFiOTTcFCJDywCkor9ohRhwg0HiwsEfhqNoeKP/gx6Mh' +
    'Fj49OUXEA1yF96682Dh8q2D2ZFA5w1yF46mQ7qlw6m769YdXz2Y0' +
    '2HDuiggWnts9aAN7brVUdselQPJ1UdJcOTxM7folg5rlkctvZm2+' +
    'VEJkLH6ELGOXL9xO93SYeWSqLlX4vtOBq+5mwtkrzpIlCNXrdlIt' +
    '3RYOj9m1qWYriMB7Xt9F15OAHJX7F9DUNfqNRuv3H5LH1Q8J3bCk' +
    'aCG9b4N60Bo+okIoAhBXWAXvqMEQdIhMSoLpiX27fZvXesLRNOPh' +
    'AC5y/asI6hrS3f51TvvKEGQdLh4xTaCKnMmpfTvCGxf7Tt1fwiQv' +
    'Wz3BmLMvz0j98iC3mt331OClqzcDkQElWX3pfdtDpq8OwzIWLZrE' +
    '5GGf1xbeaY19vq9D3RAGd1ZE7aHAcmlO7YQr+vL0tjDqRY3738gG' +
    '335+guIiFGZ2pELREt3bCXJ/FdT/Q+VeN168BEToXWcsaoBoi/ff' +
    't+5+3D56h24FMBRw9yJS3ZsJ6gMDR3Jszy3bMbth5+wIrjzcCmAo' +
    'OVrdgIRfjVko3PLZ9559BkPAjoPvwJao3uPKUVfv/8GIsrNwYXuP' +
    '/lCIfr6/c/dew9Xr9tNuVFYEAAPpmvI');
  GetBitmapSize(Bmp, W, H);
  Bmp := ResizeBitmap(Bmp, W div 2, H div 2);
  DebugBitmap(Bmp);
end.

See Also