unit Unit1;

interface

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

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
const
  Path = 'C:\Temp\MyMetaFile.emf'; {假定这个文件还在}
var
  HMetaFile: HENHMETAFILE; {EMF 文件句柄}
begin
  HMetaFile := GetEnhMetaFile(PChar(Path));                      {打开}
  PlayEnhMetaFile(Canvas.Handle, HMetaFile, Rect(10,10,100,60)); {重新绘制 EMF}
  DeleteEnhMetaFile(HMetaFile);
end;

end.

相关文章:

  • 2022-12-23
  • 2021-12-26
  • 2021-08-23
  • 2021-11-10
  • 2021-06-12
  • 2022-12-23
  • 2021-10-08
  • 2021-07-29
猜你喜欢
  • 2021-11-15
  • 2021-05-30
  • 2021-06-21
  • 2022-03-03
  • 2021-08-10
  • 2021-06-15
  • 2021-07-15
相关资源
相似解决方案