Skip to content

Export / Download current view as image #953

Answered by alvarosabu
nhuethmayr asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @nhuethmayr I made a small stackblitz https://stackblitz.com/~/edit/save-canvas-as-image?file=src%2FApp.vue with a simple download

<script setup lang="ts">
import { shallowRef, watch, ref } from 'vue'
import { TresCanvas } from '@tresjs/core'

import TheExperience from './components/TheExperience.vue'
const ctxRef = shallowRef()
const canvas = ref()

watch(ctxRef, (ctx) => {
  if(ctx.context.renderer.value) {
    canvas.value = ctx.context.renderer.value
  }
})

function downloadCanvas() {
  const dataURL = canvas.value.domElement.toDataURL('image/png');
    // Create a temporary link element
    const link = document.createElement('a');
    link.href = dataURL;
    link.download = 'my…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by nhuethmayr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants