
tFallbackFontPath("/Library/Fonts/Arial Unicode.ttf") tFallbackFontPath("C:/Windows/Fonts/ARIALUNI.ttf") Suggested Fallback Font for Windows with Microsoft Office WordConvertOptions opts = new WordConvertOptions()

WordDocument converter = new WordDocument ( "C:/input.doc", options ) // Convert and save as PDF setFallbackFontPath ( "/usr/share/fonts/truetype/droid/DroidSansFallbackFull.ttf" ) // Open / Convert the Word Document using the conversion options setFallbackFontPath ( "/Library/Fonts/Arial Unicode.ttf" ) // Suggested Fallback Font for Linux // SansDroid is released under the Apache 2.0 license // and can be used on other platforms as well setFallbackFontPath ( "C:/Windows/Fonts/ARIALUNI.ttf" ) // Suggested Fallback Font for Mac OS X setEmbedded ( true ) // Suggested Fallback Font for Windows with Microsoft Office WordConvertOptions opts = new WordConvertOptions ( ) // Set option to embed fonts to true

Create an object to store the conversion options
