Aller au contenu
Documentation / 3D - Export

Export 3D

Exportez vos configurations 3D en images haute résolution ou modèles AR.

Formats d'export

Images

  • • PNG (transparent)
  • • JPEG (fond blanc)
  • • WebP (optimisé)

3D

  • • GLB (AR ready)
  • • USDZ (iOS AR)
  • • FBX (production)

Export via API

 // Export image haute résolution
const response = await fetch('/api/3d/export', { 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