ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 1900|回复: 3

[求助] [求助] 请教,word2003 如何用宏实现所有图片等比缩放

[复制链接]

TA的精华主题

TA的得分主题

发表于 2016-10-31 09:46 | 显示全部楼层 |阅读模式
我想批量修改图片大小,网上看到的宏命令只是修改图片的长,或只修改宽。
这样一来图片就不是等比例缩放的,有可能变形。
我想要锁定纵横比的缩放,比如统一把图片的高度设置为8厘米,而图片不变形,如何用宏来实现。
希望高手给解答下,谢谢
Sub Test()
'处理所有的图形和嵌入式图形,锁定长宽比,宽度都变成4厘米
'好像只有嵌入式图形可以加上边框
Dim Shp As Shape, InlineShp As InlineShape
Dim Bder As Border
Dim oldWith As Single, iScale As Single
With ActiveDocument
    For Each Shp In .Shapes
    Shp.LockAspectRatio = msoTrue
    oldWith = Shp.Width
    Shp.Width = 4 * 28.35
    iScale = Shp.Width / oldWith
    Shp.Height = Shp.Height * iScale
    Next
    For Each InlineShp In .InlineShapes
    InlineShp.LockAspectRatio = msoTrue
    oldWith = InlineShp.Width
    InlineShp.Width = 4 * 28.35
    iScale = InlineShp.Width / oldWith
    InlineShp.Height = InlineShp.Height * iScale
            For Each Bder In InlineShp.Borders
           With Bder
            .LineStyle = wdLineStyleSingle
            .LineWidth = wdLineWidth050pt
            .Color = wdColorAutomatic
           End With
        Next
    Next
End With
End Sub                       
这个是宽度的怎么改成调高度的呢



TA的精华主题

TA的得分主题

发表于 2016-10-31 12:58 | 显示全部楼层
可以:
先将 Width 全部替换(Ctrl + H)为 Heigt
再将 Height 全部替换为 Width
再将 Heigt 全部替换为 Height
最后 4*28.35 改为 8*28.35

TA的精华主题

TA的得分主题

发表于 2016-11-1 09:43 | 显示全部楼层
本帖最后由 13907933959 于 2016-11-1 10:04 编辑

网友好!
借花献佛!不知
这个可否帮到您?

Sub 批量调整图片的高度与宽度()
  Dim myShape As Shape, myIns As InlineShape
  For Each myIns In ActiveDocument.InlineShapes
      h = myIns.Height
      w = myIns.Width
      myIns.Height = 80         '80为图片高度,可根据需要修改此数值。
      myIns.Width = w * 80 / h   '80为图片宽度,可根据需要修改此数值。
  Next
End Sub

TA的精华主题

TA的得分主题

发表于 2016-11-4 07:34 | 显示全部楼层
kqbt 发表于 2016-10-31 12:58
可以:
先将 Width 全部替换(Ctrl + H)为 Heigt
再将 Height 全部替换为 Width

版主前辈好!
这个代码按照您教的方法替换了后,运行不了,提示、编译错误:方法和数据成员未找到,这个代码是不是本来就有问题?还请您赐教!谢谢!

Sub Test()
Dim Shp As Shape, InlineShp As InlineShape
Dim Bder As Border
Dim oldWith As Single, iScale As Single
With ActiveDocument
    For Each Shp In .Shapes
    Shp.LockAspectRatio = msoTrue
    oldWith = Shp.Height
    Shp.Height = 8 * 28.35
    iScale = Shp.Height / oldWith
    Shp.Width = Shp.Width * iScale
    Next
    For Each InlineShp In .InlineShapes
    InlineShp.LockAspectRatio = msoTrue
    oldWith = InlineShp.Height
    InlineShp.Height = 8 * 28.35
    iScale = InlineShp.Height / oldWith
    InlineShp.Width = InlineShp.Width * iScale
            For Each Bder In InlineShp.Borders
           With Bder
            .LineStyle = wdLineStyleSingle
            .LineHeight = wdLineHeight050pt
            .Color = wdColorAutomatic
           End With
        Next
    Next
End With
End Sub
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-13 15:55 , Processed in 0.018225 second(s), 7 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表