Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Design the building exactly as you would like the image to appear, including the rotation and zoom.

  2. In the upper right corner of your Google Chrome browser, click the three vertical dots to open the Browser menu and select More Tools, then Developer Tools.

  3. In the upper right corner of the Developer Tools window you opened in Step #2, select the Console button.

  4. Next to the caret “>” symbol, type “getScreenshot(1000,1000, true)” and press Enter. This text is case sensitive, so make sure you have the capital “S” in screenshot.

Info

The parameters “(1000,1000, true)” in the text above sets the resolution of the image in pixels, which can be changed (up to a maximum of 2000 pixels).

If you want to retain a watermark in the image, omit the “, true” portion of the statement. For example: getScreenshot(1000,1000).

  1. You will see some text generated below the command above, and the image file will be downloaded to your standard downloads location on your computer. It will be saved without a file extension, so you will need to rename the file to include a “.png” at the end.

...