ParaView/Python/Screenshot: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
No edit summary
(Replaced content with "{{ParaView/Template/DeprecatedUsersGuide}} {{ParaView/Template/Footer}}")
Tag: Replaced
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
<source lang="python">
{{ParaView/Template/DeprecatedUsersGuide}}
#!/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>


{{ParaView/Template/Footer}}
{{ParaView/Template/Footer}}

Latest revision as of 18:44, 24 June 2024

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.



ParaView: [Welcome | Site Map]