1.1.2 • Published 3 years ago

analyze-pptx v1.1.2

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years 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

3 years ago

1.1.2

3 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago