zuqing

直接上代码

Document doc = new Document("f:\\333.doc");
ImageSaveOptions iso = new ImageSaveOptions(SaveFormat.Jpeg);
iso.Resolution = 128;
iso.PrettyFormat = true;
iso.UseAntiAliasing = true;
 for (int i = 0; i < doc.PageCount; i++)
{
      iso.PageIndex = i;
      doc.Save("D:/test/test" + i + ".jpg", iso);
}

分类:

技术点:

相关文章:

  • 2021-12-24
  • 2018-11-07
  • 2022-01-01
  • 2021-08-20
  • 2021-06-22
  • 2022-01-01
  • 2022-01-01
猜你喜欢
  • 2021-11-27
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
  • 2021-10-16
  • 2021-11-27
相关资源
相似解决方案