4

我创建了一个文件 .Lrs 并导入到程序中,它可以工作,但是如何从程序中获取资源并将其提取到我的 PC 上的某个位置?这是代码:

unit Unit1; 

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, FileUtil, Forms, LResources, Controls, Graphics, Dialogs, ExtCtrls;

type

  { TForm1 }

  TForm1 = class(TForm)
    procedure FormCreate(Sender: TObject);
  private
    { private declarations }
  public
    { public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.lfm}

{ TForm1 }

procedure TForm1.FormCreate(Sender: TObject);
begin

end;

initialization
{$I resource.lrs}

end.

谢谢!

4

1 回答 1

5

您可以使用作为单元TLazarusResourceStream一部分的类LResources

试试这个样本

var
  Stream: TLazarusResourceStream;
begin
  Stream := nil;
  try
    //load the lazarus resource  
    Stream := TLazarusResourceStream.Create('image', nil);
    //save to a file
    Stream.SaveToFile('C:\Foo\image.png');
   finally
     Stream.Free;
   end;
end; 
于 2012-06-05T22:49:05.770 回答