我们通过 Google 的云打印服务取得了一些成功。但是想知道在提交要打印的作业时是否有人知道有关功能参数的信息,以及如何创建和使用这种我认为是 ppd 格式的指针。
我们已经能够通过使用 返回我们打印机的所有值的方法http://www.google.com/cloudprint/printer来获得打印机的功能。问题是我们不太明白我们打算用它做什么来定义我们想要打印的功能选项。这将包括打印页面副本、纸张类型和打印质量的选项。我们可以接收到的功能信息示例如下:
{
"name": "copies",
"displayName": "Copies",
"type": "ParameterDef"
}
{
"UIType": "PickOne",
"name": "HPEconoMode",
"displayName": "EconoMode",
"type": "Feature",
"options": [
{
"ppd:value": "\"\"",
"default": true,
"name": "PrinterDefault",
"displayName": "Printer's Current Setting"
},
{
"ppd:value": "\u003c\u003c/EconoMode true\u003e\u003e setpagedevice",
"name": "True",
"displayName": "Save Toner"
},
{
"ppd:value": "\u003c\u003c/EconoMode false\u003e\u003e setpagedevice",
"name": "False",
"displayName": "Highest Quality"
}
]
}