cups4j: как печатать с монохромным атрибутом
Я хочу напечатать документ, используя 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);