We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented IPP printing function in Android using CUPS.
I print via CUPS in simple application/pdf format.
application/pdf
Printing was successful, but I found that there are quite a few printers that do not support PDF.
ipp_attribute_t* attr; if ((attr = ippFindAttribute(response, "document-format-supported", IPP_TAG_MIMETYPE)) != NULL){ ipp_attribute_t* attrTemp = attr; while(attrTemp->name){ LOGE("2. attrTemp attr name => %s", attrTemp->name); attrTemp = attrTemp->next; if(attrTemp == NULL) break; } }else LOGE("2. attr is null");
The printer I have with the code above
The mimetype commonly supported by the three printers was the image/urf format.
image/urf
Since I create the content to be printed as a PDF, I need to change the format before printing. Is there a way to convert the format from pdf to urf?
pdf
urf
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Implemented IPP printing function in Android using CUPS.
I print via CUPS in simple
application/pdf
format.Printing was successful, but I found that there are quite a few printers that do not support PDF.
The printer I have with the code above
I searched for Mimetypes supported by .
The mimetype commonly supported by the three printers was the
image/urf
format.Since I create the content to be printed as a PDF, I need to change the format before printing. Is there a way to convert the format from
pdf
tourf
?The text was updated successfully, but these errors were encountered: