Hi, I'm running Alfresco Community with docker-compose and facing an issue after upgrading to version 7.3.0.
I have installed Japanese fonts on the transform-core-aio container. Japanese text in plaintext and .docx files is correctly converted to PDF now. But only in .eml file, Japanese characters are displayed as question marks.
It didn't happen in version 7.1.0. How can I fix this issue? Is there someone having the same problem?
It seems that the EMLTransformer didn't change in a while:
Any other change in your deployment from previous version?
With the previous version, I used to install IPA fonts with the following Dockerfile:
FROM alfresco/alfresco-transform-core-aio:2.5.7 USER root RUN yum install -y \ ipa-gothic-fonts \ ipa-pgothic-fonts \ ipa-mincho-fonts \ ipa-pmincho-fonts \ && yum clean all USER ${AIOUSERNAME}
With version 7.3.0, IPA fonts were not available in the distro so I chose Noto fonts:
FROM alfresco/alfresco-transform-core-aio:3.0.0 USER root RUN yum install -y \ google-noto-sans-cjk-ttc-fonts \ google-noto-serif-cjk-ttc-fonts \ && yum clean all USER ${AIOUSERNAME}
It looks working fine with plaintext and .docx, I'm wondering why it isn't only with eml.
Ask for and offer help to other Alfresco Content Services Users and members of the Alfresco team.
Related links:
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.