Вниз
Скачать: 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.009 c
14-63751
aga
2003-02-05 20:55
2003.02.20
Принять


3-63563
Nickus1
2003-02-03 23:06
2003.02.20
Использование DBComboBox


6-63711
V.I.P.
2002-12-29 00:39
2003.02.20
TWebBrowser и Mouse


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


14-63852
Kapusto
2003-02-05 09:44
2003.02.20
Аппроксимация?




   Наверх