Dear list,<br><br>I'm trying to export vector graphics through paraview's python interface(*). To that end, from within paraview, I start a python trace, use the UI to export to an embedded postscript file (via File->Export scene), and stop the trace again.<br>The relevant lines of the trace look something like this:<br><br> renderView1 = GetActiveViewOrCreate('RenderView') <br> ExportView('test.eps', view=renderView1) <br><br>Now I can open a python interpreter, paste these lines and get the expected result. So far, so good.<br><br>Now let me retrace the above steps: After selecting a location to save to, I'm presented with a setting of export options. In the above scenario, I left everything as-is. I can choose among "rasterize 3d geometry", "draw background", etc. (the latter is an advanced option).<br><br>If I change those options, they're passed to ExportView, yielding a line like the following in the trace:<br><br>ExportView('test.eps', view=renderView1, Drawbackground=0, Rasterize3Dgeometry=0)<br><br>While saving from the UI continues to work even in this case, running the above from within the python interpreter does not. Here's what I get:<br> <br>File "[..]/ParaView-4.3.1-Linux-64bit/lib/paraview-4.3/site-packages/paraview/simple.py", line 1350, in ExportView <br>SetProperties(proxy, **params) <br>File "[..]/ParaView-4.3.1-Linux-64bit/lib/paraview-4.3/site-packages/paraview/simple.py", line 449, in SetProperties <br>raise AttributeError("object has no property %s" % param) <br>AttributeError: object has no property Drawbackground <br><br>Neither the field Drawbackground nor Rasterize3Dgeometry is recognised.<div><br></div><div>Is the python interface currently incomplete in this respect? Is this easily fixed or is there a workaround for this issue?<br><br><br>Best regards,<br><br>Elias Pipping<br><br>(*) All of this concerns a paraview 4.3.1 binary for linux<br></div>