How to Make All Pictures of Same Size in Microsoft Word

Resize All Pictures In Microsoft Word Fi

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.

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: On some keyboards, you need to click on the fn and F4 key together.
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: Do not perform any other action in between.

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.

RELATED TOPICS

Erase unwanted objects and perfect your amazing photos!
Remove objects from photos with Photo Eraser is almost as easy as taking a shot. Now you can use this tool to erase undesirable objects from your pictures, such as tourists, watermarks, logos, texts, blemishes and other unwanted things without real photo-editing skills required at all.

An all-in-one WhatsApp Manager which can be used as a complete solution to backup, restore, recover and transfer WhatsApp chat history, contacts, call logs, pictures, videos, audio messages and all other WhatsApp attachments on Android & iPhone.

Comments

Popular posts from this blog

The 7 Best Sites For Creating Your Personal Newsletter

6 Best Ways to Remove a Smiley from Pictures Online and Offline

How to Create Your Own Photo Filters in Adobe Lightroom for Faster Edits Later