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

как скопировать *.jpg в bitmap   Найти похожие ветки 

 
Serg11   (2003-02-11 22:41) [0]

как скопировать *.jpg в bitmap


 
SniZ ©   (2003-02-11 22:53) [1]

unit Unit1;

interface

uses
Windows, Messages, SysUtils, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls, ExtCtrls;

type
TForm1 = class(TForm)
Button1: TButton;
Image1: TImage;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.DFM}

uses JPEG;

procedure TForm1.Button1Click(Sender: TObject);
var
JPEG: TJPEGImage;
Bitmap: TBitmap;
begin
JPEG := TJPEGImage.Create;
Bitmap := TBitmap.Create;
try
Bitmap.LoadFromFile("C:\Program Files\Common Files\alarm.bmp");
JPEG.Assign(Bitmap);
Image1.Picture.Assign(JPEG);
finally
JPEG.Free;
Bitmap.Free;
end;
end;

end.



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

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



Память: 0.44 MB
Время: 0.01 c
7-63881
Mixir
2002-12-22 16:15
2003.02.20
Как сделать немодальный MessageBox?


6-63709
MadGhost
2002-12-31 17:06
2003.02.20
Пул, коннектов.


3-63523
_pavel_
2003-02-03 09:37
2003.02.20
Заморочка с Apollo SQL 6.0


3-63585
mate
2003-02-04 09:14
2003.02.20
Номер записи


1-63653
Salvator
2003-02-11 11:20
2003.02.20
Работа с Word через Delphi




   Наверх