# 如何在支持.prc的PDF导出中设置默认背景色？

 1. [FAQ](/cn/faq)
2. »
3. [PDF and PRC Questions](/faq/pdf-and-prc-questions)

当前版本不直接提供背景色设置功能，您只能在PDF文件层级进行修改。例如，若PDF文件包含以下数据结构：

```plaintext
<<
/Type /Annot
/Subtype /3D
/Rect [0 123 594 718]
/P 2 0 R
/F 68
/Contents 9 0 R
/3DA <<
/Transparent true
/A /PO
/D /XD
>>
/3DV <<
/Type /3DView
/XN (Default View)
/MS /M
/CO 3.334073
/C2W [1.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 -1.000000 7.712374 5.931818 3.334073 ]
/P <<
/Subtype /O
/OB /Max
/OS 0.519500
>>
>>
```

修改步骤如下：

1. 将键值 `/Transparent true` 改为 `/Transparent false`
2. 在 `/CO` 和 `/C2W` 键之间插入背景色定义：

```plaintext

/BG <<
	  /C [
	    0.0
	    0.0
	    1.0
	  ]
	  /Subtype /SC
>>
```
