字體字距調整

This article was translated from English: Does it need improvement?
Translated
View the article in English

此問題專門影響WebKit版本(<=2021.3.1)的圖書館。 系統字體如 Arial 和 Arial Bold 的字體字偶距問題是由 Windows 系統字體中的錯誤字偶距引起的。 為了解決這個問題,我們建議過渡到更新版本的IronPDF。 Starting from version (>=2021.9.3678),我們引入了 Chrome 引擎渲染,提供了更好的相容性並解決了這些字體字元間距問題。

變通方法

請移除系統字體並下載新字體。(例如 ArialMT)從網上資源。 然後,使用 @font-face 將此字體連結到HTML中:

@font-face { 
    font-family: 'ArialMT Regular'; 
    font-style: normal; 
    font-weight: normal; 
    src: local('ArialMT Regular'), url('arialmt.woff') format('woff'); 
    }

font-family: Arial; 替換為 font-family: ArialMT Regular; 在你的 HTML 中,然後渲染 PDF。