首页 > 其他 > 详细

word使用宏命令批量按比例设置图片大小

时间:2018-01-15 21:56:31      阅读:679      评论:0      收藏:0      [点我收藏+]

1,单击文件

技术分享图片

2.

 技术分享图片

3.如下图,最后确定

 技术分享图片

 

 

 

 4.如图技术分享图片

 

5.在弹出框中点击创建,

技术分享图片

 

 6.将宏命令copy到命令窗口中并点击运行即可,也无需保存

注意,n需要替换为实际值:如15

技术分享图片

 

 

 

 

 

 

代码中单位厘米

(1)设置固定大小n厘米:

Sub resetImgSize()
Dim iShape As InlineShape
For Each iShape In ActiveDocument.InlineShapes
iShape.LockAspectRatio = msoTrue
iShape.Height = CentimetersToPoints(n)
iShape.Width = CentimetersToPoints(n)
Next
End Sub

(2)等比例缩放n倍

Sub resetImgSize()

Dim imgHeight

Dim imgWidth
Dim iShape As InlineShape
For Each iShape In ActiveDocument.InlineShapes
iShape.LockAspectRatio = msoTrue

imgHeight = iShape.Height

imgWidth = iShape.Width
iShape.Height = CentimetersToPoints(n * imgHeight )
iShape.Width = CentimetersToPoints(n * imgWidth)

Next
End Sub

(3)最大宽度n厘米等比例缩放:

Sub resetImgSize()

Dim imgHeight

Dim imgWidth
Dim iShape As InlineShape
For Each iShape In ActiveDocument.InlineShapes
iShape.LockAspectRatio = msoTrue

imgHeight = iShape.Height
imgWidth = iShape.Width

 

iShape.Height = CentimetersToPoints(n * imgHeight / imgWidth)
iShape.Width = CentimetersToPoints(n)
Next
End Sub

 

word使用宏命令批量按比例设置图片大小

原文:https://www.cnblogs.com/janwang/p/8289803.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!