Tag: delphi
Delphi 2007 Compilation Speed Reaches 160,000 Lines Per Second Delphi 2007 is renowned for its highly efficient compiler performance, achieving a compilation speed of up to 160,000 lines of …
The BMP is uncompressed image file type, which is major supported in most devices (especially legacy devices). It contains almost raw image pixel data (e.g. 24-bit, RGB). The JPEG …
If you want to get the file size in bytes for a file, you can use the following function in Delphi/Object Pascal. // maxium supports 2G function getFileSizeInBytes(const fn: …
This post gives a few C++ implementations that fill an array of integers by every 4 byte. Please note that the function FillChar works on the byte level (filling …
The Delphi/Object Pascal provides a keyword absolute, which you can also find examples at this post.. Basically, the keyword absolute allows you to specify the alias of a variable. …