gpt4 book ai didi

fonts - OTS 解析错误 : incorrect file size in WOFF

转载 作者:行者123 更新时间:2023-12-01 09:00:19 29 4
gpt4 key购买 nike

当您尝试下载字体 woff 格式时,我收到一个错误:

OTS parsing error: incorrect file size in WOFF header



我究竟做错了什么 ?

最佳答案

如果您使用 gulp 或 grunt,忘记将字体格式添加到任务的 src 中,则可能会发生此错误。

就我而言,它发生在使用 gulp-rigger 时,它更改了文件的内容,将其作为 text 。

由于字体文件是二进制格式,因此输出是损坏的文件。

为我修复:

gulp.task('start', function () {
// with filter by file type (.js or .html)
gulp.src(['./src/**/*.js', './src/**/*.html'])
.pipe(rigger())
.pipe(gulp.dest('./target'));
});

反而:
gulp.task('start', function () {
// all files, iclude fonts .woff
gulp.src('./src/**/*.*')
.pipe(rigger())
.pipe(gulp.dest('./target'));
});

关于fonts - OTS 解析错误 : incorrect file size in WOFF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33782318/

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