码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-01-15 22:24:37      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:for   point   str   aspect   lines   宏命令   word   next   strong   

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使用宏命令批量按比例设置图片大小

标签:for   point   str   aspect   lines   宏命令   word   next   strong   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!