How do I save a screenshot?
-
Is it possibile to save/export current view to image file?
I can't find a suitable class or method.
Maybe I should directly access EXPORT function? But how? -
Sketchup.active_model.active_view.write_image("#{ Sketchup.active_model.title+Sketchup.active_model.pages.selected_page.name }.jpg", width, height, true)
...should do what you want.
You can adjust the path/file-name in the ... .jpg part...
Where you have pre-defined the variables width and height as the required image size OR you've set them to the view's thus:width = Sketchup.active_model.active_view.vpwidth height = Sketchup.active_model.active_view.vpheight
.
-
thanks a lot, I'll try it.
Advertisement