带有动画 GIF 的 TGIFImage - 事件不起作用 - 如何检测动画进度?

TGIFImage with animated GIF - events are not working - how to detect animation progress?

Delphi 的 TGIFImage 有以下事件:OnPaintOnAfterPaintOnLoopOnEndPaint。 但是 none 个事件在显示动画 GIF 时被调用。

我使用以下代码来显示动画 GIF:

  FGif := (Image1.Picture.Graphic as TGIFImage);
  FGif.OnProgress := GifProgress;
  FGif.OnLoop := GifLoop;
  FGif.OnPaint := GifPaint;
  FGif.OnEndPaint := GifEndPaint;
  FGif.OnAfterPaint := GifAfterPaint;
  FGif.Animate := True;

如何在播放动画时提取当前可见帧索引?

如何检测动画何时结束?

如何检测下一帧何时显示?

OnProgress 事件仅在第一个动画循环期间调用,在绘制最后一个动画帧之后 - TGIFImage 将从第一帧继续动画,但此事件停止工作。

我正在使用 Delphi 10.2 东京。

你提到的大多数事件都没有(正如你所发现的那样)实现,尽管占位符在那里。大约十年前,当对 GifImg 单元进行重大修改时,它们似乎已经丢失。

使用另一种方法,您可以解决您提到的问题。那就是单独声明TGIFRenderer,这样你就可以访问需要的信息。

示例应用程序如下所示:

type
  TForm22 = class(TForm)
    Button1: TButton;
    OpenDlg: TOpenDialog;
    SaveDlg: TSaveDialog;
    Image1: TImage;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    procedure Button1Click(Sender: TObject);
  private
    r: TRect;
    gif: TGifImage;
    rend: TGIFRenderer;
    procedure GifChange(Sender: TObject);
  public
  end;

implementation


procedure TForm22.Button1Click(Sender: TObject);
begin
  if not OpenDlg.Execute() then Exit;

  // the following is 12 by default to be as slow as Mozilla in last millenium
  GIFDelayExp := 10; // set to 10 for correct timing

  gif:= TGIFImage.Create;
  gif.LoadFromFile(OpenDlg.FileName);
  gif.OnChange := GifChange;

  r := Rect(0, 0, Gif.Width, Gif.Height);
  r.offset((Image1.Width-Gif.Width) div 2, (Image1.Height-Gif.Height) div 2);

  rend := TGIFRenderer.Create(Gif);
  rend.Animate := True;
  rend.StartAnimation;
  rend.Draw(Image1.Canvas, r);

  //Set animate to true at the end, otherwise an exception at address will be raised.
  gif.Animate := True;
end;

procedure TForm22.GifChange(Sender: TObject);
begin
  rend.Draw(Image1.Canvas, r);

  Label1.Caption := Format('Frame nr %d / %d',[rend.FrameIndex, gif.Images.Count]);
  Label2.Caption := Format('Per frame: %d ms',[rend.FrameDelay]);
  Label3.Caption := Format('Full cycle: %d s',[rend.FrameDelay * gif.Images.Count]);
end;

使用 TGifRenderer.FrameIndexTGifImage.Images.CountTGifRenderer.FrameDelay 您可以计算出问题的答案。