我想使用带有单色属性的 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);