python的tecplot模块(tecplot新特性)
Python的tecplot模块仅支持tecplot2017以上
首先安装tecplot2017
安装完成以后,安装python的tecplot模块
可以通过终端转入tecplot安装目录下的pytecplot目录,输入:
或者直接在终端中输入:pip intsall pytecplot
安装完成以后,我们将tecplot安装目录下的bin目录添加到Path环境变量当中
以上设置完成以后,我们新建一个Python文件,输入下面的演示代码:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import tecplot #导入tecplot模块
frame = tecplot.active_frame() #新建一个frame
frame.add_text('Hello, World!', position=(36, 50), size=34) #在frame当中增加文字以及指定文字的位置和文字的大小
tecplot.export.save_png(r'hello_world.png', 600, supersample=3) #保存图片
运行Python,运行结果如下: