How to Make All Pictures of Same Size in Microsoft Word

Picture this — you want to insert several images in your Word document. Initially, the pictures are of different sizes, but you want them to be of the same size in your document. While one can take the help of proper photo-editing tools, sometimes, one doesn’t have access to them. In such situations, you can use Microsoft Word itself to resize all the pictures.

Resize All Pictures In Microsoft Word Fi

There’s no denying the fact that Microsoft Word is amazing when it comes to text. But if you dive deep into it, you will unearth its hidden features related to other things too such as photo editing. For instance, did you know you can give your image a perfectly round shape directly in Word?

Similarly, you can make pictures of the same size in Word. Let’s see how to do that by using the two methods mentioned below.

Method 1: Using Macros

Sometimes, we wish we had a single button where pressing it would perform a difficult task automatically. That’s what macros do in Word.

Macros automate a certain task that otherwise would require you to perform it repeatedly. You can create a macro by either recording the steps that you want to perform or write a set of instructions.

Since we need to resize all the pictures in MS Word, we would be taking the help of Macros. We would create it by writing the code to resize photos. Don’t get confused. Here are the steps in detail:

Step 1: Open the Word file where you want to make all the pictures of the same size.

Step 2: Click on the first photo in the file to select it. Then, click on the View tab at the top.

Resize All Pictures In Microsoft Word 1

Step 3: Click on Macros.

Resize All Pictures In Microsoft Word 2

Step 4: A pop-up window will open. Type a name in the box under the Macro name. You can name it anything. For the sake of understanding, we would be calling it Resize.

Then, click on Create.

Resize All Pictures In Microsoft Word 3

Step 5: A new Microsoft Visual Basic for Applications window will open. Select the existing code and delete it.

Resize All Pictures In Microsoft Word 4

Step 6: Then, copy and paste one of the following codes into the window.

Type A: Use the following code if you want to change the height and width in terms of pixels. Replace 500 and 600 by your own values.

Sub resize() Dim i As Long With ActiveDocument  For i = 1 To .InlineShapes.Count  With .InlineShapes(i) .Height = 500 .Width = 600  End With  Next i End With End Sub 

Type B: Use this if you want to change the size by inches. Replace 2 by your value.

Sub resize() Dim i As Long With ActiveDocument  For i = 1 To .InlineShapes.Count  With .InlineShapes(i) .Height = InchesToPoints(2) .Width = InchesToPoints(2)  End With  Next i End With End Sub 

Type C: If you want to scale the images, the following code will help you. Replace 30 and 40 by your preferred values.

Sub resize() Dim i As Long With ActiveDocument  For i = 1 To .InlineShapes.Count  With .InlineShapes(i)  .ScaleHeight = 30  .ScaleWidth = 40  End With  Next i End With End Sub  

Step 7: Once copied, close the Microsoft Visual Basic for Applications window by clicking on the cross icon.

Resize All Pictures In Microsoft Word 5

Step 8: With the image selected, click on Macros under the View tab again.

Resize All Pictures In Microsoft Word 6

Step 9: The Macros window will open. Click on Run with your macro selected.

Resize All Pictures In Microsoft Word 7

As soon as you press the Run button, you will notice the size will change for all images.

Resize All Pictures In Microsoft Word 8

Method 2: Using the Magical Key

Did you know you could repeat your last performed action on Microsoft Office apps by just clicking a button on your keyboard? That key is the F4 on Windows and Y key on Mac.

Tip:

Here are the steps for this method:

Step 1: Open the Word document that contains your images.

Step 2: Right-click on the first image and select Size and Position.

Resize All Pictures In Microsoft Word 9

Step 3: In the Layout box that opens, click on the Size tab. Then, uncheck the box next to Lock aspect ratio. Enter the required values for the height and width of images in the given boxes. Click on Ok.

Resize All Pictures In Microsoft Word 10

Step 4: You will notice the size will be changed for the selected image. Now, click on other images one by one and hit the F4 (or fn + F4 on Windows) or Y key (on macOS) for each of them. Doing that will repeat the action done in step 3 — change the height and width of the picture.

Note

Size Is Important

A well organized document with images of proper size looks better than an unorganized one. While the above methods will let you perform your intended task of resizing all images, we wish there was an easy way. Till we get that, you will have to rely on the two methods mentioned above. If you know of another way, we are always listening in the comments below.

Next up: Want to change the theme for Microsoft Office products? Find out how to change the theme and disable dark mode on Word, Excel, and PowerPoint from the given link.

Was this helpful?

Yes
No
Thanks for your feedback!

Last updated on 07 February, 2022

The article above may contain affiliate links which help support Guiding Tech. The content remains unbiased and authentic and will never affect our editorial integrity.