我想使用带有单色属性的cups4j打印文档。 我找不到这个选项的作业属性。
你能帮我吗?
与属性相关的代码部分是:
HashMap<String, String> attributeMap = new HashMap<String, String>();
attributeMap.put("job-attributes", "print-color-mode-supported:keyword:monochrome");
PrintJob printJob = new PrintJob.Builder(fileInputStream).jobName("testJobName").userName("admin").copies(copies).pageRanges(pages).duplex(duplex).attributes(attributeMap).build();
PrintRequestResult printRequestResult = printer.print(printJob);