您的位置:首页 > 其它

批量调整word 图片大小

2015-05-27 10:19 120 查看
打开文档后,按Alt+F11,在左边Porject下找到ThisDocument,右键插入模块,贴上下面的

Sub Macro()
For Each iShape In ActiveDocument.InlineShapes
iShape.Height = iShape.Height * 0.25
iShape.Width = iShape.Width * 0.25
Next iShape
End Sub

按F5运行一次就可以了。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: