Export / Download current view as image #953
Answered
by
alvarosabu
nhuethmayr
asked this question in
Q&A
-
Hi, I'm looking at a way to download the current view as an image. There seems to be a way in Threejs but it requires access to the renderer. Thanks, |
Beta Was this translation helpful? Give feedback.
Answered by
alvarosabu
Mar 14, 2025
Replies: 1 comment
-
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 = 'my3DView.png';
link.click();
}
</script>
<template>
<div class="absolute bottom-4 right-4 z-20 outline-none p-2 bg-white">
<button @click="downloadCanvas">
Download Canvas
</button>
</div>
<TresCanvas
ref="ctxRef"
clear-color="#82DBC5"
window-size
preserve-drawing-buffer
>
<TheExperience />
</TresCanvas>
</template> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nhuethmayr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @nhuethmayr I made a small stackblitz https://stackblitz.com/~/edit/save-canvas-as-image?file=src%2FApp.vue with a simple download