Just let me know what you'd like to achieve!
Below are code "pieces" (snippets) to generate or implement this font across common development environments: 1. Java (iText 5)
from reportlab.pdfbase import pdfmetrics from reportlab.pdfbase.cidfonts import CIDFont from reportlab.pdfgen import canvas # Register the font pdfmetrics.registerFont(CIDFont('STSong-Light')) # Apply to a canvas c = canvas.Canvas("chinese_doc.pdf") c.setFont('STSong-Light', 16) c.drawString(100, 675, "你好,世界 (Hello World)") c.save() Use code with caution. Copied to clipboard 3. XML Configuration (JasperReports / BIRT)
Use code with caution. Copied to clipboard