ASPOSE.Word does not support Korean characters? When we use Korean language characters, the utility displays box type characters instead of actual text. I will attach a document for testing purpose.
Please help me to understand the problem here. Kindly confirm if ASPOSE.Word does not support Korean characters and if you could share the list of character sets and languages supported, that would be very helpful.
@ajay23 Aspose.Words supports Korean characters. I can successfully convert your document to PDF using the latest version of Aspose.Words and Korean characters are displayed properly.
You should note to properly convert document to PDF Aspose.Words requires fonts, which are used in the document.
You can use the following code to check whether fonts used in your document is substituted:
Document doc = new Document(@"C:\Temp\Korean doc.docx");
doc.WarningCallback = new WarningCallback();
doc.Save(@"C:\Temp\out.pdf");
private class WarningCallback : IWarningCallback
{
public void Warning(WarningInfo info)
{
if (info.WarningType == WarningType.FontSubstitution)
Console.WriteLine(info.Description);
}
}
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.