Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2005.03.06;
Скачать: CL | DM;

Вниз

Как вывести HBITMAP на HDC   Найти похожие ветки 

 
i-s-v ©   (2005-01-23 01:29) [0]

Как вывести Bitmap: HBITMAP на Dc: HDC, используя только АПИ?


 
i-s-v ©   (2005-01-23 01:54) [1]

Нууу???

---
The Death Will Come


 
DVM ©   (2005-01-24 10:01) [2]


> Нууу???

гну

вот:

procedure DrawBitmap(dc: HDC; hBitmap: HBITMAP; xStart, yStart: integer); stdcall;
var
 bm: BITMAP;
 hdcMem: HDC;
 ptSize, ptOrg: TPoint;
begin
 if dc <> 0 then
   begin
     hdcMem := CreateCompatibleDC(dc);
     if (hdcMem <> 0) and (hBitmap <> 0) then
       begin
         SelectObject(hdcMem, hBitmap);
         SetMapMode(hdcMem, GetMapMode(dc));
         GetObject(hBitmap, sizeof(BITMAP), @bm);
         ptSize.x := bm.bmWidth;
         ptSize.y := bm.bmHeight;
         DPtoLP(dc, ptSize, 1);
         ptOrg.x := 0;
         ptOrg.y := 0;
         DPtoLP(hdcMem, ptOrg, 1);
         BitBlt(dc, xStart, yStart, ptSize.x, ptSize.y, hdcMem, ptOrg.x, ptOrg.y, SRCCOPY);
         DeleteDC(hdcMem);
       end;
   end;
end;



Страницы: 1 вся ветка

Текущий архив: 2005.03.06;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.042 c
1-1108570275
GanibalLector
2005-02-16 19:11
2005.03.06
"ХР-манифест"


3-1107793183
Alexander Panov
2005-02-07 19:19
2005.03.06
Ошибка при конвертации строки в дату.


11-1089554522
Андрей
2004-07-11 18:02
2005.03.06
ToolBar - Решение странной проблемы


3-1107328157
Mishenka
2005-02-02 10:09
2005.03.06
Перемещение столбцов в TDbGridEh


14-1108368694
stone
2005-02-14 11:11
2005.03.06
Lord of The Rings: Battle for middle Earth