Главная страницаОбратная связьКарта сайта

Сохранить TImageList в файл со всеми картинками

Оформил: DeeCo
Автор: http://www.swissdelphicenter.ch

// There are ready-made methods for saving any component including all its children to a file. 
// For writing components use WriteComponentResFile(path + source filename , component name source) 

WriteComponentResFile("C:\imagelist1.bin",imagelist1);

 // For reading the data back to a component: 
// component := ReadComponentResFile(path + source filename , component name traget) 

imagelist1 := ReadComponentResFile("c:\imagelist1.bin", nil) as TImagelist;

 // Tip 1 - Reading the component will give the same name of the component written so don"t try to 
// load it to another component, even if it was the same type. You will get a duplicate name and 
// delphi will crash. But you can jump over this as a programmer 

// Tip 2 - Get benfit of storing the heavy components inside compressed files, 
// so you can get smaller programs 

Обсудить статью на форуме


Если Вас заинтересовала или понравилась информация по разработке на Delph - "Сохранить TImageList в файл со всеми картинками", Вы можете поставить закладку в социальной сети или в своём блоге на данную страницу:

Так же Вы можете задать вопрос по работе этого модуля или примера через форму обратной связи, в сообщение обязательно указывайте название или ссылку на статью!
   


Copyright © 2008 - 2024 Дискета.info