0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Word内の画像を一括で拡大する。あ、拡大ってのはサイズを変えずにズームすることです。

Last updated at Posted at 2024-10-13

なぜWordで画像をzoomする必要があるのか

前回に引き続き、、、

、、、仕事で必要だったからです!!!(二回目)

こんな使い道の狭すぎるマクロを書くの、自分だって不本意なんですよ。
ただ、備忘録的に残しておくと何かの役に立つのではないかと思ってます。

このスクリプトを使ってくれるような仲間が欲しい

要件

今回の要件は、

  • もとの画像はどんな形でも可
  • zoom倍率を指定する
  • サイズはもとのまま
    です

申し訳ないのですが、今回のスクリプトはかなり簡便なので、行内図すべて含みます。画像以外に図形がある場合はそれも対象になります。

では早速コードです

コピペしてください。

Sub zoom()
'
' zoom Macro
'
'

  Dim Image As Object
  Dim zoom As Double
  Dim TempWidth As Double
  Dim TempHeight As Double

  '拡大倍率を指定
  zoom = InputBox("zoom (倍) : ")
  For Each Image In ActiveDocument.InlineShapes
    If Image.Type = wdInlineShapePicture Then
      'ここが重要!
      With Image.PictureFormat
        .CropLeft = Image.Width * (1 - 1 / zoom) / 2
        .CropRight = Image.Width * (1 - 1 / zoom) / 2
        .CropTop = Image.Height * (1 - 1 / zoom) / 2
        .CropBottom = Image.Height * (1 - 1 / zoom) / 2
      End With
      '縦横比を固定してサイズをもとにもどす
      Image.LockAspectRatio = msoTrue
      Image.Width = TempWidth
    
    End If
 Next Image

End Sub

おわり

簡単でしたね!

一緒にこの記事も見てクレメンス!

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?