[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文本处理] 让word文档中的图片适配页面大小

现在的word文档有200页,每一页都插入了一张照片,怎样批处理设置可以把所有照片适配文档的页面尺寸,完整显示整张图片?

Sub 图片锁定纵横比自适应页宽()
'
' 图片锁定纵横比自适应页宽 宏
'
'

Dim shap As InlineShape
Dim maxWith
maxWith = ActiveDocument.PageSetup.PageWidth - ActiveDocument.PageSetup.LeftMargin - ActiveDocument.PageSetup.RightMargin '宽度自适应
For Each shap In ActiveDocument.InlineShapes

    Debug.Print shap.Type; "Shap.Type"; wdInlineShapePicture

    If (shap.Type = wdInlineShapeLinkedPicture) Or (shap.Type = wdInlineShapePicture) Then

        'If shap.Width > maxWith Then

          'Shap.LockAspectRatio = msoTrue
           Debug.Print "before width: "; shap.Width
           Debug.Print "before Height: "; shap.Height
           oW = shap.Width
           oH = shap.Height
           aspect = oH / oW 'aspect ratio
           shap.Width = maxWith
           shap.Height = aspect * maxWith
           Debug.Print "after width: "; shap.Width
           Debug.Print "after Height: "; shap.Height

        'End If
    End If

Next

End Sub

TOP

返回列表