Go to http://host:port/crx/de/index.jsp and log in as admin.
AEM's PDF generation fails for unicode languages like Chinese and Japanese.
Cause
The FOP configuration is to be updated and extra fonts to be added in AEM to support foreign languages that use unicode.
Resolution
-
-
Create a fonts folder under /libs/wcm/core/content/pdf. Then create a config under this path /libs/wcm/core/content/pdf/fonts/foconfig.xml based on the conf/fop.xconf mentioned in article [1].
-
Then upload fonts to that folder using curl. For example:
curl -u admin: admin myfont.ttf /libs/wcm/core/content/pdf/fonts/myfont.ttf
-
The config file and font files would be loaded automatically.
[1] https://stackoverflow.com/questions/25895984/apache-fop-displaying-with-sunsim
Download