Hypermesh FEM model high quality screenshot
Hello to All,
I would like to get an high quality screenshot of my FEM model in hyperview to put it in my thesis work.
I tried many times also with the capture command included but the results were really poor.
I would love to have a vectorial file but already an high quality jpeg would be great!
Thanks in advance for the help
Best Answer
-
if you open the tcl console (from view menu) in either HW or HV
Then you can do it from there with the 'capturescreentosize' command:
E.g. to capture screen to a JPEG type file called MyHiResPicture.jpg with a resolution of 3200 X 2400 pixels and quality level 100:
enter following:
hwi GetSessionHandle sess; sess CaptureScreenToSize jpeg E:\MyHiResPicture.jpg 3200 2400 100;<br /><br />
There are a number of similar hwi commands for getting the whole desktop, a window or animations, you can find the documentation for them in the help
- hwISession CaptureActiveWindow
- hwISession CaptureAnimation
- hwISession CaptureAnimationByArea
- hwISession CaptureAnimationByAreaPercentage
- hwISession CaptureAnimationByWindow
- hwISession CaptureDesktop
- hwISession CaptureDesktopByArea
- hwISession CaptureScreen
- hwISession CaptureScreenByArea
- hwISession CaptureScreenByAreaPercentage
- hwISession CaptureScreenToSize
1
Answers
-
if you open the tcl console (from view menu) in either HW or HV
Then you can do it from there with the 'capturescreentosize' command:
E.g. to capture screen to a JPEG type file called MyHiResPicture.jpg with a resolution of 3200 X 2400 pixels and quality level 100:
enter following:
hwi GetSessionHandle sess; sess CaptureScreenToSize jpeg E:\MyHiResPicture.jpg 3200 2400 100;<br /><br />
There are a number of similar hwi commands for getting the whole desktop, a window or animations, you can find the documentation for them in the help
- hwISession CaptureActiveWindow
- hwISession CaptureAnimation
- hwISession CaptureAnimationByArea
- hwISession CaptureAnimationByAreaPercentage
- hwISession CaptureAnimationByWindow
- hwISession CaptureDesktop
- hwISession CaptureDesktopByArea
- hwISession CaptureScreen
- hwISession CaptureScreenByArea
- hwISession CaptureScreenByAreaPercentage
- hwISession CaptureScreenToSize
1 -
Works fine.
Thank you very much!
0