📜  p5.js 图片 numFrames() 方法

📅  最后修改于: 2022-05-13 01:56:47.252000             🧑  作者: Mango

p5.js 图片 numFrames() 方法

p5.j s库中 p5.Image 的numFrames()方法用于返回 GIF 动画的总帧数。

句法:

numFrames()

参数:这个函数accept不接受任何参数。

返回值:该方法返回一个数字,代表GIF动画的总帧数。

在实现以下示例时,以下库包含在 HTML 页面的“head”部分中。

示例:下面的示例说明了 p5.js 中的numFrames ()方法

Javascript
function preload() {
    example_gif =
      loadImage("sample-gif.gif");
}
  
function setup() {
    createCanvas(500, 300);
    textSize(18);
  
    text("Click on the button to get " +
         "the total number of frames",
         20, 20);
  
    frameBtn =
      createButton("Get number of frames");
    frameBtn.position(30, 40);
    frameBtn.mousePressed(getTotalFrames);
}
  
function draw() {
  
  // Draw the GIF on screen
  image(example_gif, 20, 60, 240, 120);
}
  
function getTotalFrames()
{
  // Get the total number of frames
  let numberOfFrames =
      example_gif.numFrames();
  
  text("Number of frames in the GIF is: "
       + numberOfFrames, 20, 200);
}


输出:

在线编辑器: https://editor.p5js.org/
环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
参考: https://p5js.org/reference/#/p5.Image/numFrames