A javascript tool for parsing .pptx file
npm install pptxtojson-plus> 与其他的pptx文件解析工具的最大区别在于:
> 1. 直接运行在浏览器端;
> 2. 解析结果是可读的 JSON 数据,而不仅仅是把 XML 文件内容原样翻译成难以理解的 JSON。
pipipi-pikachu的项目。> 最新跟进Commits on Jan 18, 2026 261f962ae8df048258919bf47557e78c43bf31ed
主要资源:
Open XML SDK Documentation(含类与 XML 元素对应关系)
👉 https://learn.microsoft.com/en-us/office/open-xml/
Specific Element References(按命名空间分类):
PresentationML (p:)
DrawingML (a:)
Common Elements
|前缀 |全称 |用途|
|----|----|----|
|p: |http://schemas.openxmlformats.org/presentationml/2006/main |幻灯片、演示文稿结构|
|a: |http://schemas.openxmlformats.org/drawingml/2006/main |图形、颜色、几何形状(通用)|
|r: |http://schemas.openxmlformats.org/officeDocument/2006/relationships |关系引用(如图片、超链接)|
|cp: |http://schemas.openxmlformats.org/package/2006/metadata/core-properties |核心文档属性(作者、标题等)|