gpt4 book ai didi

javascript - React pdf-renderer 不显示字符 č、ć 和 đ

转载 作者:行者123 更新时间:2023-12-02 22:22:01 24 4
gpt4 key购买 nike

我正在使用@react-pdf/renderer版本“1.6.8”。但是,我无法获取以下字符:čćđ。相反,获取空白空间。

这些字符来自克罗地亚语,可以在其官方页面上进行测试。

https://react-pdf.org/repl?example=page-wrap

可能有人知道要设置什么或如何解决问题。在他们的official docs上没有找到任何东西.

Github问题:https://github.com/diegomura/react-pdf/issues/780

最佳答案

试试这个

import { Page, Font, Text } from '@react-pdf/renderer';

// Register Font
Font.register({
family: "Roboto",
src:
"https://cdnjs.cloudflare.com/ajax/libs/ink/3.1.10/fonts/Roboto/roboto-light-webfont.ttf"
});

// Create style with font-family
const styles = StyleSheet.create({
page: {
fontFamily: "Roboto"
},
});

const MyDocument = () => (

<Document >
<Page size="A4" style={styles.page} > <!--Add Font style to the page-->
<Text >Some text čćđ</Text>
</Page>
</Document>
)

它对我有用,对于波兰语

关于javascript - React pdf-renderer 不显示字符 č、ć 和 đ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59200939/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com