Недавно добавленные исходники

•  DeLiKaTeS Tetris (Тетрис)  4 290

•  TDictionary Custom Sort  6 339

•  Fast Watermark Sources  6 127

•  3D Designer  9 058

•  Sik Screen Capture  6 450

•  Patch Maker  6 866

•  Айболит (remote control)  6 851

•  ListBox Drag & Drop  5 726

•  Доска для игры Реверси  96 582

•  Графические эффекты  7 068

•  Рисование по маске  6 368

•  Перетаскивание изображений  5 238

•  Canvas Drawing  5 613

•  Рисование Луны  5 311

•  Поворот изображения  4 862

•  Рисование стержней  3 448

•  Paint on Shape  2 708

•  Генератор кроссвордов  3 587

•  Головоломка Paletto  2 875

•  Теорема Монжа об окружностях  3 684

•  Пазл Numbrix  2 417

•  Заборы и коммивояжеры  3 097

•  Игра HIP  2 058

•  Игра Go (Го)  1 983

•  Симулятор лифта  2 345

•  Программа укладки плитки  2 045

•  Генератор лабиринта  2 504

•  Проверка числового ввода  2 192

•  HEX View  2 514

•  Физический маятник  2 133

 
скрыть

  Форум  

Delphi FAQ - Часто задаваемые вопросы

| Базы данных | Графика и Игры | Интернет и Сети | Компоненты и Классы | Мультимедиа |
| ОС и Железо | Программа и Интерфейс | Рабочий стол | Синтаксис | Технологии | Файловая система |



Delphi Sources

Подсветить изображение



Оформил: DeeCo

{ 
Question: 
  Does anyone know of a way that I can achieve the same effect on a bitmap 
  that windows achieves when you single click on an icon on the desktop?  In 
  other words, I want to "sorta highlight" a bitmap and let the user know that 
  it's selected. 

Answer: 

  To me it appears as if the icons on my desktop are highlighted by overlaying 
  them with a certain color, so I guess the following routine is of use. 
}


 procedure Highlight(aSource, ATarget: TBitmap; AColor: TColor);
 //alters ASource to ATarget by making it appear as if 
//looked through 
//colored glass as given by AColor 
//ASource, ATarget must have been created. 
//Isn't as slow as it looks. 
//Physics courtesy of a post by K.H. Brenner 
var i, j: Integer;
   s, t: pRGBTriple;
   r, g, b: byte;
   cl: TColor;
 begin
   cl := ColorToRGB(AColor);
   r := GetRValue(cl);
   g := GetGValue(cl);
   b := GetBValue(cl);
   aSource.PixelFormat := pf24bit;
   ATarget.PixelFormat := pf24bit;
   ATarget.Width := aSource.Width;
   ATarget.Height := aSource.Height;
   for i := 0 to aSource.Height - 1 do
   begin
     s := ASource.Scanline[i];
     t := ATarget.Scanline[i];
     for j := 0 to aSource.Width - 1 do
     begin
       t^.rgbtBlue := (b * s^.rgbtBlue) div 255;
       t^.rgbtGreen := (g * s^.rgbtGreen) div 255;
       t^.rgbtRed := (r * s^.rgbtRed) div 255;
       inc(s);
       inc(t);
     end;
   end;
 end;




Похожие по теме исходники

Image2Text (изображение в текст)




Copyright © 2004-2025 "Delphi Sources" by BrokenByte Software. Delphi World FAQ

Группа ВКонтакте