<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>Hello</div>

<div> </div>

<div>I have a problem with texture images in my state file when using the option "Search Files under Specified Directory" in the Load State dialog. It seems that ParaView changes all paths in the state file to the specified directory except for those of the images. Probably this has to do with the way I import the images to the texture planes: to be able to keep the texture images saved in a state file, I do the following:</div>

<div> </div>

<div>rv1=GetActiveViewOrCreate('RenderView')</div>

<div>profile=XMLPolyDataReader(FileName=['C:\\myproject\\Profile.vtp'])</div>

<div>
<div>pathToTextureImage='C:\\myproject\\Image.jpg'<br/>
Display=Show(profile, view=rv1)<br/>
Display=GetDisplayProperties(profile)<br/>
Display.SetRepresentationType('Surface')<br/>
texProxy = servermanager.CreateProxy('textures','ImageTexture')<br/>
texProxy.GetProperty('FileName').SetElement(0, pathToTextureImage)<br/>
texProxy.UpdateVTKObjects()<br/>
servermanager.Register(texProxy, registrationName='Profile_with_image')</div>

<div>profile.UpdateVTKObjects()</div>

<div> </div>

<div>Maybe this is not the way to go anymore with PV 5.5? The "Search Files under Specified Directory" is very handy for sharing PV states, so if anyone could tell me what I should do in order to have the texture images handled correctly, I would be very grateful.</div>

<div> </div>

<div>Cheers,</div>

<div>Venke</div>
</div></div></body></html>