我正在测试如何将几个 Revit 视图表转换为 PDF,正如 @Zhong Wu 在How to Revit export PDF by DesignAutomationV3 (Forge API)中提到的那样
问题是结果与原始结果大不相同,尤其是在影线和 3D 视图方面。
我正在使用默认的 DWG 导出选项,所以...有哪些推荐选项可以使生成的 PDF 看起来更像原始 Revit 视图?
在这些屏幕截图中,您可以看到我的意思: 和
我正在测试如何将几个 Revit 视图表转换为 PDF,正如 @Zhong Wu 在How to Revit export PDF by DesignAutomationV3 (Forge API)中提到的那样
问题是结果与原始结果大不相同,尤其是在影线和 3D 视图方面。
我正在使用默认的 DWG 导出选项,所以...有哪些推荐选项可以使生成的 PDF 看起来更像原始 Revit 视图?
在这些屏幕截图中,您可以看到我的意思: 和
默认PlotToPDF
Activity 使用EXPORT
内置的 AutoCAD 命令,这与PLOT
包含您期望的 PC3 设置的不同(基于图像)。
您可能需要使用所需的确切 PLOT 设置创建自定义 Activity,因为您的 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