Closed DevenLiang closed 3 years ago
On the HP printer, the image/jpeg format was set to initiate the printing task, which was also unsuccessful, and the printer received no feedback. But the interface returns SUCCESS -OK. Is there a missing setting?
Hi @DevenLiang, this issue list is for issues with JIPP, not specific printers. Do you have a question about JIPP?
Hi @DevenLiang, this issue list is for issues with JIPP, not specific printers. Do you have a question about JIPP?
Types.documentformat. of("image/ JPEG ") cannot print the image format properly when I use JIIP.
It's up to the printer to accept or reject requests. And not all printers support all document formats. You may need to request printer attributes before sending image/jpeg:
// Query for supported document formats
IppPacket attributeRequest = IppPacket.getPrinterAttributes(uri)
.putOperationAttributes(
requestingUserName.of(CMD_NAME),
requestedAttributes.of(documentFormatSupported.getName()))
.build();
Best of luck with your project.
The printing format is set to image/jpeg. When the printing task was started, the printer received error 853. The machine used was a Canon printer, but for some reason it failed. PDF format can be printed normally.Do I need any special Settings for this picture?