Oops, your profile's looking a bit empty! To help us tailor your experience, please fill in key details like your SketchUp version, skill level, operating system, and more. Update and save your info on your profile page today!
🫛 Lightbeans Update | Metallic and Roughness auto-applied in SketchUp 2025+ Download
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