Difference between revisions of "TSCARBitmap.SaveToPng"
From SCAR Divi Manual
(Created page with "==Definition== Member of TSCARBitmap.<source lang="scar" lines="false"> function TSCARBitmap.SaveToPng(const Path: string): Boolean; </source> ==Availability== SCAR Divi ...") |
(No difference)
|
Latest revision as of 16:41, 10 November 2012
Definition
Member of TSCARBitmap.function TSCARBitmap.SaveToPng(const Path: string): Boolean;
Availability
SCAR Divi 3.35 > Current
- Before 3.37 the target folder would not automatically be created.
Description
Saves a bitmap to a PNG file with it's path specified by Path. If the target folder does not exist, it will be created by the function.
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 Bmp.SaveToPng(ScreenPath + 'Test.png'); Bmp.Clear(clBlack); Bmp.LoadFromPng(ScreenPath + 'Test.png'); DebugBitmap(Bmp); finally Bmp.Free; end; end.