Вниз
Скачать: 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
6-63721
Usperi
2002-12-31 19:49
2003.02.20
Помогите с HyperTerminal


14-63807
BALU1111
2003-02-03 12:12
2003.02.20
Скорость передачи данных.


14-63760
radion
2003-02-04 16:11
2003.02.20
ПРОГРАММА ПО PROXY ( сриншот )


3-63532
Гость
2003-02-01 17:20
2003.02.20
Восстановление удалённых записей


14-63850
JibSkeart
2003-02-02 13:13
2003.02.20
А помимо программирования сдеся увлекается музыкой ??




   Наверх