Forge 设计自动化和模型衍生 API 中生成图像的选项有哪些?
What are the options for generating images in both the Forge design automation and model derivative APIs?
目前,我正在使用在设计自动化上生成的程序集的缩略图 API。我正在寻找一种方法来生成各种视图的图像,包括我的组件的 iso、顶部、正面和侧面图像。在设计自动化 API 和模型衍生 API 中生成图像的选项是什么?此外,希望生成的图像质量可以高于缩略图 - 最好是在查看器中看起来同样漂亮的图像,尽管我可以接受线条图。
编辑回复:Adam Nagy 的回答
namespace UpdateUserParametersPlugin
{
[ComVisible(true)]
public class SampleAutomation
{
private readonly InventorServer inventorApplication;
public SampleAutomation(InventorServer inventorApp)
{
inventorApplication = inventorApp;
}
刚刚写了一篇关于这个主题的文章:Generate images for Inventor models
1) 模型导数API只能为您提供不同大小的缩略图,所以不会启用你得到不同方向的模型图像
2) Design Automation API for Inventor 可用于使用 Camera 对象及其 SaveAsBitmap 函数由 Inventor API
提供
目前,我正在使用在设计自动化上生成的程序集的缩略图 API。我正在寻找一种方法来生成各种视图的图像,包括我的组件的 iso、顶部、正面和侧面图像。在设计自动化 API 和模型衍生 API 中生成图像的选项是什么?此外,希望生成的图像质量可以高于缩略图 - 最好是在查看器中看起来同样漂亮的图像,尽管我可以接受线条图。
编辑回复:Adam Nagy 的回答
namespace UpdateUserParametersPlugin
{
[ComVisible(true)]
public class SampleAutomation
{
private readonly InventorServer inventorApplication;
public SampleAutomation(InventorServer inventorApp)
{
inventorApplication = inventorApp;
}
刚刚写了一篇关于这个主题的文章:Generate images for Inventor models
1) 模型导数API只能为您提供不同大小的缩略图,所以不会启用你得到不同方向的模型图像
2) Design Automation API for Inventor 可用于使用 Camera 对象及其 SaveAsBitmap 函数由 Inventor API
提供