1.1.2 • Published 1 year ago

analyze-pptx v1.1.2

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

PPTX 转 JSON

安装

npm i analyze-pptx

使用

<input type="file" id="fileID" />
import AnalyzePPTX from "analyze-pptx";

const readZip = async () => {
    const input = document.getElementById("fileID") as HTMLInputElement;
    const zipFile = input.files && input.files.length > 0 ? input.files[0] : null;
    if (!zipFile) return;
    
    const analyzePPTX = new AnalyzePPTX();
    const slides = await analyzePPTX.read(zipFile);
    console.log(slides);
};
1.1.1

1 year ago

1.1.2

1 year ago

1.1.0

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago