最近用 iTextSharp 拆分 Pdf 文档加水印的时候遇到错误:windows-1252 is not a supported encoding name. For information on defining a custom encoding, see the documentation for the Encoding.RegisterProvid...
最近用 iTextSharp 拆分 Pdf 文档
加水印的时候遇到错误:
'windows-1252' is not a supported encoding name. For information on defining a custom encoding, see the documentation for the Encoding.RegisterProvider method.
Parameter name: name
需要在 NuGet 里添加 System.Text.Encoding.CodePages
然后在程序里注册下就可以了
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
iTextSharp 还是很好用的
就是不能 Pdf 转图片或生成缩略图…
本文标题为:.Net Core 遇到 “'windows-1252' is not a supported encoding name.”
基础教程推荐
- C# windows语音识别与朗读实例 2023-04-27
- ZooKeeper的安装及部署教程 2023-01-22
- linux – 如何在Debian Jessie中安装dotnet core sdk 2023-09-26
- winform把Office转成PDF文件 2023-06-14
- C#控制台实现飞行棋小游戏 2023-04-22
- unity实现动态排行榜 2023-04-27
- C# 调用WebService的方法 2023-03-09
- 一个读写csv文件的C#类 2022-11-06
- C#类和结构详解 2023-05-30
- C# List实现行转列的通用方案 2022-11-02