博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在word中输入任意角度旋转图片
阅读量:6235 次
发布时间:2019-06-22

本文共 1185 字,大约阅读时间需要 3 分钟。

 

Sub 图片旋转任意角度()Dim sha As Shape, isa As InlineShape    Static s As Integer    Application.ScreenUpdating = 0   s = InputBox("请输入要旋转的角度:", "图像旋转", s)    If ActiveDocument.Range.InlineShapes.Count > 0 Then        For n = 1 To ActiveDocument.Range.InlineShapes.Count '还可使用count to 1 step-1和for each            With ActiveDocument.Range.InlineShapes(n).ConvertToShape                .Rotation = s                s = .Rotation        .PictureFormat.Brightness = 0.36  '这两句放于前面会出错,转换inlineshape对象失败           .PictureFormat.Contrast = 0.73                .ConvertToInlineShape            End With        Next     ElseIf ActiveDocument.Shapes.Count > 0 Then            For n = 1 To ActiveDocument.Shapes.Count                ActiveDocument.Shapes(n).LockAspectRatio = msoTrue                ActiveDocument.Shapes(n).PictureFormat.Brightness = 0.36                ActiveDocument.Shapes(n).PictureFormat.Contrast = 0.73                ActiveDocument.Shapes(n).Rotation = s                s = ActiveDocument.Shapes(n).Rotation            Next    End IfTT:If Err.Number > 0 Then ActiveDocument.Undo 1 Application.ScreenUpdating = 1End Sub

  

转载于:https://www.cnblogs.com/zhanglei1371/p/9259071.html

你可能感兴趣的文章
关于内存条故障引发的系统故障
查看>>
BIGIP-LTM中的NAT和SNAT
查看>>
zabbix server
查看>>
Linux之——五种IO模型
查看>>
怎么样给CentOS6.5增加swap分区
查看>>
mysql启动参数修改管理员密码
查看>>
关于mysql联合索引
查看>>
为你的Android App实现自签名的 SSL 证书
查看>>
STP相关概念 桥ID 端口ID 根路径成本开销 STP的规则,工作流程
查看>>
队列Queue FIFO先进先出 栈Stack FILO先进后出
查看>>
线程的优先级
查看>>
设计模式学习每天一个——Singleton模式
查看>>
2020物联网展新起点新征程扬帆起航
查看>>
珍爱生命,远离数模
查看>>
对软件功程课的改善建议
查看>>
String、StringBuffer、StringBuilder区别
查看>>
Android APK文件解析
查看>>
C++Primer笔记二
查看>>
正则表达式收集
查看>>
Laravel跳转回之前页面,并携带错误信息
查看>>