How can I reduce resources inside my application? I have tried a number of tricks I have reduce and rewritten code, reduce line number, Reduce comments, Compressed the final EXE, but this is not the way I want to go, Improve the variable type cast, Remove ICONs,BMP,JPG, from inside the application I need my applications to be as small as possible on the final EXE and in general resource consumption. Any more ideas, any good articles on this subject Thanks
|
4
|
|||||||
|
|
|
Put any images that the program uses more than once into image lists or TGraphic components, and put those into a data module. Link all your components using these glyphs to the image lists. If you use the Object Inspector to add the same glyph to several components you will end up with multiple copies of it, increasing both your loading time and your executable and working set size. |
||
|
|
|
|
What about switching debug information off in the project options:
But debug info kan be a major killer. |
||
|
|
|
|
I would not spend any time removing comments the compiler strips them out anyway You could reference your images from an external service(eg Amazon S3) |
|||
|
|
|
|
Do not create all forms automatically, even though Delphi gives you the option now, and did this unconditionally for new forms in earlier versions. Only create the main form, and use the following (pseudo) code for the showing of modal dialogs:
This will shorten application loading time and reduce your overall resource usage, especially for complex dialogs with many controls. |
||||||||||
|
|
|
Drop the VCL and use KOL and MCK: http://kolmck.net/ This is radical and very big change, but will get the exe size down. |
||
|
|
|
A nice trick to reduce executable size (actually, PE-image size, as this applies to DLL's too), when relocation is not an issue : Leave the relocation-info out! In Delphi, you could do it like this :
Cheers! |
||
|
|
|
Measure first, THEN optimise. How big is your application, and how big would you like it to be? Are you concerned about... The size of the application .EXE file on disk? Then...
The RAM memory used by the application? Then...
The size of the application installer? Then...
The size of the application PLUS PACKAGES/DLLS after installation? Then...
|
||
|
|
|
|
Is it really worth all this trouble? We are not living in 640 KB memory times anymore. If you want youre EXE to be smaller then use dynamic linking of packages and libraries. That gives most of the boost. Also put all your resources (images,sounds) into separate DLL. You won't save anything by deleting comments and writing all your code in one long line. |
||||
|
|
|
Typically speaking if you want a smaller EXE size then go with an earlier version of Delphi. |
||||
|
|
|
|
||
|
|
|
I always use UPX to compress exe files. It works perfectly, often resulting in a factor 2 compression. And, of course, disable all the debug info will help reduce file size. |
||
|
|
|
Use a memory profiler like the one from Red Gate to get a real time view into the run-time memory usage. |
||
|
|
|
|
And have a look at http://wiki.freepascal.org/Size_Matters |
||
|
|
