ParaView/Python/Screenshot: Difference between revisions
From KitwarePublic
< ParaView
Jump to navigationJump to search
Daviddoria (talk | contribs) |
No edit summary |
||
Line 11: | Line 11: | ||
#position camera | #position camera | ||
view = GetActiveView() | view = GetActiveView() | ||
if not view: | |||
# When using the ParaView UI, the View will be present, not otherwise. | |||
view = CreateRenderView() | |||
view.CameraViewUp = [0, 0, 1] | view.CameraViewUp = [0, 0, 1] | ||
view.CameraFocalPoint = [0, 0, 0] | view.CameraFocalPoint = [0, 0, 0] |
Revision as of 12:49, 18 March 2013
<source lang="python">
- !/usr/bin/pvpython
from paraview.simple import *
import time
- read a vtp
reader = XMLPolyDataReader(FileName="input.vtp")
- position camera
view = GetActiveView() if not view:
# When using the ParaView UI, the View will be present, not otherwise. view = CreateRenderView()
view.CameraViewUp = [0, 0, 1] view.CameraFocalPoint = [0, 0, 0] view.CameraViewAngle = 45 view.CameraPosition = [5,0,0]
- draw the object
Show()
- set the background color
view.Background = [1,1,1] #white
- set image size
view.ViewSize = [200, 300] #[width, height]
dp = GetDisplayProperties()
- set point color
dp.AmbientColor = [1, 0, 0] #red
- set surface color
dp.DiffuseColor = [0, 1, 0] #blue
- set point size
dp.PointSize = 2
- set representation
dp.Representation = "Surface"
Render()
- save screenshot
WriteImage("test.png") </source>