We are using JasperReports to export pdf. It's working fine for
English :
Font -> Helvetica
Encoding -> CP1252
Japanese :
Font -> KozMinPro-Regular
Encoding -> UniJIS-UCS2-H
But not working for Korean Languages.
I set font and encoding in java as foillows:
JRDesignReportFont font = new JRDesignReportFont();
font.setPdfEncoding("KozMinPro-Regular");
font.setPdfFontName("UniGB-UCS2-H");
I need the exact Font and Encoding Names.
Please give your suggestions.