PptxGenJS 允许通过脚本创建 Powerpoint 文件。 https://gitbrent.github.io/PptxGenJS/
我们可以按如下方式添加图像:
slide.addImage({ path: "images/chart_world_peace_near.png", x:..., y:..., w:..., h:...});
我需要使用纵横比将图像调整为幻灯片的全尺寸。所以,我需要知道图片的大小和幻灯片的大小,如下:
scaled_image_width = slide_width
scaled_image_height = image_height * scaled_image_width / image_width;
if (scaled_image_height > slide_height) {
scaled_image_height = slide_height
scaled_image_width = image_width * scaled_image_height / image_height;
}
但是,我在 PptxGenJS 中看不到获取图像大小和幻灯片大小的方法。我怎样才能做到这一点?