导出Revit视图以使用Forge Design Automation API转换为PDF的最佳选择是什么?

问题描述 投票:1回答:1

我正在测试将多个Revit视图图纸转换为PDF,如How to Revit export PDF by DesignAutomationV3 (Forge API)中提到的@Zhong Wu

问题是结果与原始图像有很大不同,尤其是在剖面线和3D视图方面。

我正在使用默认的DWG导出选项,所以...建议使用哪些选项使生成的PDF看起来更像原始Revit视图?

在这些屏幕截图中,您可以看到我的意思:“DWGExport使用设计自动化然后PlotToDwg”“我期望的结果(使用Revit桌面打印为PDF)”

pdf autodesk-forge revit-api dwg autodesk-designautomation
1个回答
0
投票

默认的PlotToPDF活动使用EXPORT内置的AutoCAD命令,该命令不同于PLOT,其中包含您期望的PC3设置(基于图像)。

您可能需要使用所需的精确PLOT设置来创建自定义活动,并且您的AppBundle或Workitem可以包含自定义PC3。

这里是您可以使用的启动脚本(根据需要调整大小和设置):

-PLOT
;Detailed plot configuration? [Yes/No] <No>: 
Yes
;Enter a layout name or [?] <Model>:
Model
;Enter an output device name or [?] <None>:
DWG To PDF.pc3
;Enter paper size or [?] <ANSI A (11.00 x 8.50 Inches)>:
ANSI A (11.00 x 8.50 Inches)
;Enter paper units [Inches/Millimeters] <Inches>:
Inches
;Enter drawing orientation [Portrait/Landscape] <Portrait>: 
Landscape
;Plot upside down? [Yes/No] <No>:
No
;Enter plot area [Display/Extents/Limits/View/Window] <Display>: 
Extents
;Enter plot scale (Plotted Inches=Drawing Units) or [Fit] <Fit>:
Fit
;Enter plot offset (x,y) or [Center] <0.00,0.00>:

;Plot with plot styles? [Yes/No] <Yes>:
Yes
;Enter plot style table name or [?] (enter . for none) <>:
.
;Plot with lineweights? [Yes/No] <Yes>:
Yes
;Enter shade plot setting [As displayed/legacy Wireframe/legacy Hidden/Visualstyles/Rendered] <As displayed>:

;Enter file name <C:\Work\solids-Model.pdf>:
!name
;Save changes to page setup? Or set shade plot quality? [Yes/No/Quality] <N>:
No
;Proceed with plot [Yes/No] <Y>:
Yes
© www.soinside.com 2019 - 2024. All rights reserved.