gpt4 book ai didi

css - react-pdf 中的样式显示异常行为

转载 作者:行者123 更新时间:2023-12-05 09:10:54 25 4
gpt4 key购买 nike

我正在尝试在 react-pdf 中使用斜体样式。

一切正常,直到我使用font-style: italic;

在 react-pdf 中是否有另一种方式将文本样式设置为斜体?

const Italic = styled.Text`
font-size: 12px;
lineheight: 20px;
text-align: left;
font-family: "Roboto Condensed";
letter-spacing: 0.5px;
font-style: italic;//problem is with this line
font-weight:400;
`;

它给我错误:

Uncaught (in promise) Error: Could not resolve font for undefined, fontWeight 400

最佳答案

当您注册字体时,您需要确保为您希望使用的每个 fontStyle 包含一个变体。例如:

Font.register({
family: 'Roboto',
fonts: [
{ src: '<path-to-normal-font-variant>' },
{ src: '<path-to-italic-font-variant>', fontStyle: 'italic' },
...
]
});

关于css - react-pdf 中的样式显示异常行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60705386/

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