Message 1 of 2
Thumbnail Generation in node project
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello, in our project we are using extraction of thumbnails - https://aps.autodesk.com/en/docs/model-derivative/v2/developers_guide/basics/thumbnail_generation/, ...
https://developer.api.autodesk.com/modelderivative/v2/designdata/job
We are constructing the body of request like this:
const outputs: any = {
formats: [
{
type: "svf2",
views: ["2d", "3d"],
advanced: {
conversionMethod: "v3",
generateMasterViews: true,
},
},
{
type: 'thumbnail',
advanced: {
width: 400,
height: 400,
}
}
],
};
It successfully creates a thumbnail but it's of the 2d model, not 3d, even though the 3d model is available in this Revit file. Anyone has idea how we could get the 3D model thumbnail?
Thanks