spire.presentation for python 是一个专业的演示文稿处理 api,与 powerpoint 高度兼容。开发人员可以使用 spire.presentation for python 在任何 python 程序中高效地创建、编辑、转换和保存 powerpoint 演示文稿。
本文将介绍如何在 visual studio code 中安装 spire.presentation for python。
步骤1
并将其安装到您的电脑中。如果已经安装,请跳至步骤 2。
步骤2
点击 vs code 中的“扩展”,搜索 “python”,然后点击安装。
步骤3
点击“资源管理器”-“无打开的文件夹”-“打开文件夹”。
选择一个现有文件夹作为工作区,或者创建一个新文件夹,然后选择它。
在刚才添加的文件夹(本例中为 “python” 的文件夹)中新建一个 .py 文件并命名。
步骤4
点击“终端”,然后点击“新建终端”。
输入以下命令安装 spire.presentation for python。
pip install spire.presentation
或者,您也可以从我们的凯发线上登陆下载网址官网下载 spire.presentation for python,解压缩后从 “lib” 文件夹中获取 .whl 文件。其中,文件名中带有 “manylinux1_x86_64” 的 .whl 文件适用于 linux 平台,而带有 “win_amd64” 的则适用于 windows 平台。
然后,运行以下命令安装 spire.presentation for python。
pip install g:\spire.presentation.python_8.8.3\lib\spire.presentation-8.8.3-py3-none-win_amd64.whl
步骤5
在 “helloworld.py” 文件中添加以下代码片段。
- python
from spire.presentation.common import *
import math
from spire.presentation import *
outputfile ="helloworld.pptx"
presentation = presentation()
left = math.trunc(presentation.slidesize.size.width / float(2))-250
rec = rectanglef.fromltrb(left, 80, left 500, 150 80)
shape = presentation.slides[0].shapes.appendshape(shapetype.rectangle, rec)
shape.shapestyle.linecolor.color = color.get_white()
shape.fill.filltype = fillformattype.none
shape.appendtextframe("hello world!")
textrange = shape.textframe.textrange
textrange.fill.filltype = fillformattype.solid
textrange.fill.solidcolor.color = color.get_cadetblue()
textrange.fontheight = 66
textrange.latinfont = textfont("lucida sans unicode")
presentation.savetofile(outputfile, fileformat.pptx2010)
presentation.dispose()
运行该 python 文件后,您将在“资源管理器”面板中看到生成的演示文稿。