Chargement de l'aide...
Chargement...
Exportez vos configurations 3D en images haute résolution ou modèles AR.
// Export image haute résolution
const response = await fetch('/api/v1/3d/export-ar', {
method: 'POST',
headers: {
'Authorization': 'Bearer TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
configId: 'config_abc123',
format: 'png',
width: 2048,
height: 2048,
transparent: true
})
});
const { imageUrl } = await response.json();
// imageUrl: https://cdn.luneo.app/exports/abc123.png