aspose获取文件纸张方向以及设置纸张方向

最近的需求是要打印pdf,然后 用aspose 转换pdf 后,发现 打印的时候 横板也打印成竖版了,所以我需要知道 文件是否是横板。

找了很久 然后发现网上现在没有 说如果获取 aspose 文件方向的 ,自己 瞎几把试出来了 ^^ 分享出来 给大家:

 

    @Test
    public void testAsposeConvertDocx2Pdf() throws  Exception{
        String filename = "C:\\User\\Desktop\\aspose测试模板测试12.pdf";
        String docNmae = "C:\\Users\\Desktop\\测试模板1.docx";
//        String docNmae = "C:\\Users\\Liz\\Desktop\\test.xls";
        File pdfFile = new File(filename);
        FileOutputStream os = new FileOutputStream(pdfFile);
        com.aspose.words.Document doc = new Document(docNmae);
//        SaveOptions saveOptions = SaveOptions.createSaveOptions(SaveFormat.PDF);
//        saveOptions.setPrettyFormat(true);
//        saveOptions.setUseAntiAliasing(true);
//        saveOptions.setUseHighQualityRendering(true);
        SectionCollection sections = doc.getSections();

        for(Section section:sections){
            int a =Orientation.LANDSCAPE;//横向
            int b = Orientation.PORTRAIT;//竖向
            section.getPageSetup().getOrientation();
        }
        doc.save(os,SaveFormat.PDF);
    }

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 7
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值