如何从私有数据中获取缩略图?
How can I get thumbnail images from private data?
我想使用私有数据,例如查看器离线示例(https://github.com/Autodesk-Forge/forge-boilers.nodejs/tree/master/1%20-%20viewer-offline)。
如何从私有数据中获取缩略图?
对你的问题有点困惑。要使用您提到的离线示例,您首先必须通过我们的模型导数将原始文件转换为 SVF API "POST https://developer.api.autodesk.com/modelderivative/v2/designdata/job", you check the link https://developer.autodesk.com/en/docs/model-derivative/v2/reference/http/job-POST/ about this API.
当原始文件成功转换为 SVF 后,您可以将包括缩略图在内的所有衍生文件下载到本地计算机,然后按照您在 https://github.com/Autodesk-Forge/forge-boilers.nodejs/tree/master/1%20-%20viewer-offline. About how to download these derivatives, the project 5 & 6 of this github sample can do this. Also, this website https://extract.autodesk.io/ 中提到的设置离线查看器示例是另一种简单的方法与观察者一起提取气泡。
回到你关于如何从私有数据中获取缩略图的问题,如果你已经使用我们的示例下载这些derivatives/bubbles,通常应该已经包含了缩略图,如果没有,你可以仍然使用此 API(GET https://developer.api.autodesk.com/modelderivative/v2/designdata/:urn/manifest/:derivativeUrn) to download it by yourself, you can refer https://developer.autodesk.com/en/docs/model-derivative/v2/reference/http/urn-manifest-derivativeurn-GET/ 获取更多信息。
希望我回答了你的问题:)
我想使用私有数据,例如查看器离线示例(https://github.com/Autodesk-Forge/forge-boilers.nodejs/tree/master/1%20-%20viewer-offline)。 如何从私有数据中获取缩略图?
对你的问题有点困惑。要使用您提到的离线示例,您首先必须通过我们的模型导数将原始文件转换为 SVF API "POST https://developer.api.autodesk.com/modelderivative/v2/designdata/job", you check the link https://developer.autodesk.com/en/docs/model-derivative/v2/reference/http/job-POST/ about this API.
当原始文件成功转换为 SVF 后,您可以将包括缩略图在内的所有衍生文件下载到本地计算机,然后按照您在 https://github.com/Autodesk-Forge/forge-boilers.nodejs/tree/master/1%20-%20viewer-offline. About how to download these derivatives, the project 5 & 6 of this github sample can do this. Also, this website https://extract.autodesk.io/ 中提到的设置离线查看器示例是另一种简单的方法与观察者一起提取气泡。
回到你关于如何从私有数据中获取缩略图的问题,如果你已经使用我们的示例下载这些derivatives/bubbles,通常应该已经包含了缩略图,如果没有,你可以仍然使用此 API(GET https://developer.api.autodesk.com/modelderivative/v2/designdata/:urn/manifest/:derivativeUrn) to download it by yourself, you can refer https://developer.autodesk.com/en/docs/model-derivative/v2/reference/http/urn-manifest-derivativeurn-GET/ 获取更多信息。
希望我回答了你的问题:)