工作常见格式转换一网打尽!国产Java文档开发套包Spire.Office v4.3最新发布 丨附下载

Spire.Office for Java v4.3.0现已正式发布。本次更新带来了一些新的功能,比如Spire.Presentation for Java 优化了转换PPT到PDF的时间,新增了添加自定义路径动画的功能,还支持了添加 、检测和移除数字签名的功能。同时,该版本还修复了大量的问题。

你在寻找支持在Java中用编程方法处理各类格式文档的API吗巧,Java版企业级文档管理组合套包Spire.Office 2021全新上线!Word、Excel、PPT、PDF、条形码等格式一网打尽。

目前,

新功能及问题修复详情,请参阅如下内容。

Spire.Doc for Java

问题修复

Spire.Presentation for Java

优化

  • 优化了转换PPT到PDF的时间

新功能

  • 支持添加自定义的路径动画。
    Presentation ppt = new Presentation();//Add shapeIAutoShape shape = ppt.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE,new Rectangle(0, 0, 200, 200));//Add animationAnimationEffect effect = ppt.getSlides().get(0).getTimeline().getMainSequence().addEffect(shape, AnimationEffectType.PATH_USER);CommonBehaviorCollection common = effect.getCommonBehaviorCollection();AnimationMotion motion = (AnimationMotion)common.get(0);motion.setOrigin(AnimationMotionOrigin.LAYOUT);motion.setPathEditMode(AnimationMotionPathEditMode.RELATIVE);MotionPath moinPath = new MotionPath();moinPath.addPathPoints(MotionCommandPathType.MOVE_TO,new Point2D.Float[]{new Point2D.Float(0,0)},MotionPathPointsType.CURVE_AUTO,true);moinPath.addPathPoints(MotionCommandPathType.LINE_TO,new Point2D.Float[]{new Point2D.Float(0.1f,0.1f)},MotionPathPointsType.CURVE_AUTO,true);moinPath.addPathPoints(MotionCommandPathType.LINE_TO,new Point2D.Float[]{new Point2D.Float(-0.1f,0.2f)},MotionPathPointsType.CURVE_AUTO,true);moinPath.addPathPoints(MotionCommandPathType.END,new Point2D.Float[]{},MotionPathPointsType.CURVE_AUTO,true);motion.setPath(moinPath);ppt.saveToFile(outputFile, FileFormat.PPTX_2010);ppt.dispose();
  • 支持添加/验证/删除数字签名。
    Presentation ppt =new Presentation();ppt.loadFromFile(input);//Adds digital signatureppt.addDigitalSignature("C:/gary.pfx", "e-iceblue","Gary", new Date());ppt.saveToFile(result,FileFormat.PPTX_2013);//Checks if the document is signedboolean digitalSigned = ppt2.isDigitallySigned();if (ppt2.isDigitallySigned() == true){//Removes digital signatureppt2.removeAllDigitalSignatures();}

Bug修复


是E-iceblue官方友好合作伙伴,如果您对spire.office感兴趣,可以联系在线客服了解具体授权价格和使用机制。
标签:

来源:慧都

声明:本站部分文章及图片转载于互联网,内容版权归原作者所有,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

上一篇 2021年1月19日
下一篇 2021年1月19日

相关推荐

发表回复

登录后才能评论