wps使用技巧:[3]在A4纸上统一图片尺寸
在办公时,我们也经常用到要在A4纸上排版照片,需要照片尺寸大小相同,那么怎样能在A4纸上排版呢?
操作方法
- 01
启动软件,页面布局——页边距——自定义页边距
- 02
在自定义页边距对话框中,在页边距上下左右都选择5,方向改为横向
- 03
插入——图片,选择需要插入的图片确定
- 04
开发工具——宏,输入宏名,点击创建
- 05
再出现的代码栏内输入以下代码: Dim i As Integer For i = 1 To ActiveDocument.InlineShapes.Count With ActiveDocument.InlineShapes(i) .Height = 238 * 0.7 .Width = 315 * 0.8 .Borders(wdBorderTop).LineStyle = wdLineStyleSingle .Borders(wdBorderTop).LineWidth = wdLineWidth050pt .Borders(wdBorderTop).Color = wdColorAutomatic End With Next i
- 06
回到宏,选择刚才创建的宏名,选中后点击运行
- 07
预览下就出现如下图所示
赞 (0)