-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
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
Enable persist Renderable's conversion result by mimeType #320
Comments
Hi @lmtoo, Indeed. Storing renditions as additional content on the entity is a goal. The basic plan I have is to indicate which renditions you want to store on an Entity (perhaps through additional |
Entities may have different mimeTypes , for example Document may be doc/docx or xlsx. only doc/docx convert to pdf should be persist, and xlsx already exists a web preview solution , like sheetjs. |
docx4j will convert docx to pdf if the request's Accept is application/pdf, but it will also slow the request , even for just 10 pages document, it will cost at least 30 seconds, if persist the conversion result when the first request, to will speed up subsequent request, also ,if original docx is changed ,auto cleanup conversion result.
The text was updated successfully, but these errors were encountered: