Вниз
Скачать: CL | DM;

Как привельно использовать GetDIBits???   Найти похожие ветки 

 
LeReve ©   (2003-01-30 18:09) [0]

Как привельно использовать GetDIBits???
желателен пример =)


 
MBo ©   (2003-01-30 18:12) [1]

procedure TForm1.Button2Click(Sender: TObject);
var b:tbitmap;
a:array[0..9,0..9] of TRGBQuad;
s:string;
info:tbitmapinfo;
i,j:integer;
begin
b:=tbitmap.create;
b.PixelFormat:=pf24bit;
b.width:=10;
b.height:=10;
b.Canvas.moveTo(0,0);
b.Canvas.LineTo(6,6);
with info.bmiHeader do begin
biWidth:=b.Width;
biHeight:=b.Height;
biSize:=SizeOf(TBITMAPINFOHEADER);
biCompression:=BI_RGB;
biBitCount:=32;
biPlanes:=1;
biSizeImage:=0;//((biWidth*biBitCount+31)div 32)*biHeight*4;
end;
GetDIBits(b.canvas.handle, B.Handle, 0,B.Height,@a,Info,DIB_RGB_COLORS);
for i:=0 to 9 do begin
s:="";
for j:=0 to 9 do s:=s+inttohex(a[i,j].rgbRed,2)+" ";
memo1.lines.add(s);
end;
image1.picture.assign(b);
b.free;
end;


 
LeReve ©   (2003-01-30 18:18) [2]

огромное спасибо!



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

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.011 c
14-88194
Alexsys
2003-03-11 08:55
2003.03.27
Литература по TCP, портам и т.д.


4-88300
Sliski Slimak
2003-01-27 18:06
2003.03.27
Как послать сообщение чужой иконке на Трее,


1-88056
pet
2003-03-15 13:41
2003.03.27
Другое приложение и трей


1-88060
Anar
2003-03-12 15:09
2003.03.27
Мигание заголовка окна


14-88147
kostya2000
2003-03-11 20:14
2003.03.27
3.14




   Наверх