Модераторы: Poseidon, Snowy, bems, MetalFan
  

Поиск:

Ответ в темуСоздание новой темы Создание опроса
> Способы уменьшения размера Exe файлов полученных с помощью Дельфи? 
:(
    Опции темы
Pakshin A. S.
Дата 5.1.2005, 09:56 (ссылка) | (нет голосов) Загрузка ... Загрузка ... Быстрая цитата Цитата


Эксперт
****


Профиль
Группа: Участник Клуба
Сообщений: 5056
Регистрация: 16.2.2003

Репутация: 21
Всего: 61



Generally, EXE files created with Delphi are larger than EXE files 
created with another programming language. The reason is the VCL. 
(Sure, VCL has many advantages...) 

There are several ways to reduce a EXE's size: 

01) Use a EXE-Packer (UPX, ASPack,...) 
02) Use KOL. 
03) Write your application without VCL 
04) Use the ACL (API Controls Library) 
05) Use StripReloc. 
06) Deactivate remote debugging information and TD32. 
07) You might want to put code in a dll. 
08) Don't put the same images several times on a form. Load them at runtime. 
09) Use compressed images (JPG and not BMP) 
10) Store less properties in DFM files 
(See Link below "How To Make Your EXE's Lighter") 

11) Use the TStringList replacement by ~LOM~ 
Use the Minireg - TRegistry replacement by Ben Hochstrasser 


{*****************************************} 


Mit Delphi erstellte Exe-Dateien sind im allgemeinen einiges grosser als solche, 
welche mit anderen Programmiersprachen erzeugt wurden. 
Der Grund dafur ist die VCL. 
(Klar, Die VCL hat viele Vorteile...) 

Es gibt verschiedene Moglichkeiten, um die Exe-Grosse zu reduzieren. 

01) Einen EXE-Packer verwenden (UPX, ASPack, ....) 
02) KOL verwenden. 
03) Die Anwendung ohne VCL schreiben (nur mit API, nonVCL) 
04) Die ACL (API Controls Library) verwenden. 
05) StripReloc verwenden. 
06) Debug Informationen und TD32 ausschalten. 
07) Code in eine Dll auslagern. 
08) Wenn Bilder mehrmals verwendet werden, 
dann nur einmal einbinden und die anderen zur Laufzeit laden. 
09) Bilder komprimieren (nicht bmp sondern z.B das jpg Format verwenden) 
10) Weniger Properties in den DFM Dateien speichern 
(Siehe Link unten ("How To Make Your EXE's Lighter") 
11) Verwende den TStringList Ersatz von ~LOM~ 
Verwende die Minireg - TRegistry Ersatz von Ben Hochstrasser 

{*****************************************} 

// Further descriptions and links: 
// Beschreibungen in Englisch und Links: 

{****************************************************************} 

01) 
UPX is a free, portable, extendable, high-performance executable 
packer for several different executable formats. It achieves an excellent 
compression ratio and offers very fast decompression. 
Your executables suffer no memory overhead or other drawbacks. 

http://upx.sourceforge.net/ 

ASPack is an advanced Win32 executable file compressor, capable of reducing the file size of 
32-bit Windows programs by as much as 70%. (ASPack's compression ratio improves upon the 
industry-standard zip file format by as much as 10-20%.) ASPack makes Windows 95/98/NT 
programs and libraries smaller, and decrease load times across networks, and download 
times from the internet; it also protects programs against reverse engineering 
by non-professional hackers. 
Programs compressed with ASPack are self-contained and run exactly as before, 
with no runtime performance penalties. 

http://www.aspack.com/aspack.htm 

{****************************************************************} 

02) 
KOL - Key Objects Library is a set of objects to develop power 
(but small) 32 bit Windows GUI applications using Delphi but without VCL. 
It is distributed free of charge, with source code. 

http://bonanzas.rinet.ru/ 

{****************************************************************} 

03) 
nonVCL 
Delphi lets you have it both ways. If you want tiny EXE's, then don't use 
the VCL. Its entirely possible to use all the rich features of Delphi IDE 
using 100% WinAPI calls, standard resources, etc. 

http://nonvcl.luckie-online.de 
http://www.erm.tu-cottbus.de/delphi/stuff/...nVCL/index.html 
http://www.angelfire.com/hi5/delphizeus/ 
http://www.tutorials.delphi-source.de/nonvcl/ 


{****************************************************************} 

04) 

ACL (API Controls Library) 
To write the program on pure API certainly it is possible, but I have deci- 
ded to reach both goals - both to make that program and to receive the tool, 
through which it would be possible in further to build similar programs, almost, 
as on Delphi with VCL. So the idea to create my own TWinControl and all standard 
Windows controls classes, derived from it has appeared. 

http://www.apress.ru/pages/bokovikov/delphi/index.html/ 

{****************************************************************} 

05) 
StripReloc is a free (GPL license) command line utility that removes the relocation 
(".reloc") section from Win32 PE EXE files, reducing their size. 
Most compilers/linkers (including Delphi) put a relocation section in EXE files, 
but this is actually not necessary since EXEs never get relocated. 
Hence, a relocation section only wastes space. 

Why not use an EXE compressor? 
http://www.jrsoftware.org/striprlc.php 

{****************************************************************} 

06) 
Deactivating the Debug Information 

Exclude any debug information for the final build 
(project-Options Compiler - Debugging and project-Options 
Linker EXE and DLL options) 
Dependeing on the amount of Debug information, 
Debugging can take up until half of the size. 

The options that are going to singificantly reduce your file size are 
"Include TD32 debug info" and "Build with runtime packages". If you are 
shipping commercial applications, you usually don't need the debug info 
linked with your project. 

{****************************************************************} 

08/09) 
About Images 

The forms in your project have any bitmaps on them, then these are 
compiled into the EXE. If you use the same bitmap multiple times, don't 
assign them at design-time in the IDE as it will be included in the EXE 
multiple times, assign them in code instead. 
This can help reduce the size of the EXE, especially if you use large 
bitmaps. 

Use JPEG-files instead of BMP-files. This also reduces the EXE size. 

{****************************************************************} 

10) 
How To Make Your EXE's Lighter: 
http://www.undu.com/DN970301/00000064.htm 

{****************************************************************} 

11) 
TStringList replacement by ~LOM~ 
Minireg - TRegistry replacement


PM   Вверх
  
Ответ в темуСоздание новой темы Создание опроса
Правила форума "Delphi: Общие вопросы"
SnowyMetalFan
bemsPoseidon
Rrader

Запрещается!

1. Публиковать ссылки на вскрытые компоненты

2. Обсуждать взлом компонентов и делиться вскрытыми компонентами

  • Литературу по Дельфи обсуждаем здесь
  • Действия модераторов можно обсудить здесь
  • С просьбами о написании курсовой, реферата и т.п. обращаться сюда
  • Вопросы по реализации алгоритмов рассматриваются здесь
  • 90% ответов на свои вопросы можно найти в DRKB (Delphi Russian Knowledge Base) - крупнейшем в рунете сборнике материалов по Дельфи


Если Вам понравилась атмосфера форума, заходите к нам чаще! С уважением, Snowy, MetalFan, bems, Poseidon, Rrader.

 
1 Пользователей читают эту тему (1 Гостей и 0 Скрытых Пользователей)
0 Пользователей:
« Предыдущая тема | Delphi: Общие вопросы | Следующая тема »


 




[ Время генерации скрипта: 0.0755 ]   [ Использовано запросов: 22 ]   [ GZIP включён ]


Реклама на сайте     Информационное спонсорство

 
По вопросам размещения рекламы пишите на vladimir(sobaka)vingrad.ru
Отказ от ответственности     Powered by Invision Power Board(R) 1.3 © 2003  IPS, Inc.