How to resize all / multiple images in Word?
When copying or importing images from the Internet or other files, the sizes of these images can vary significantly. While resizing pictures one by one is a common task, doing so for multiple images can be time-consuming. This tutorial will guide you through several methods, starting with resizing a single image and then moving on to techniques for resizing multiple images efficiently.
Resize images manually in Word
Resize multiple images all at once with Kutools for Word
Resize images to specific dimensions with VBA
Resize images manually in Word
- Select a picture to display its sizing handles.
- Drag any of the sizing handles until the picture meets your desired dimensions.
Note: This method does not allow you to resize multiple pictures simultaneously. You'll need to resize each picture individually.
Resize all images in bulk with Kutools for Word
Using Kutools for Word's Resize Images utility offers a seamless way to resize all images in your document, saving you time and effort compared to manually resizing each image in Word. This feature allows you to resize images in bulk quickly and efficiently.
- To resize all images to a certain percentage of their original size:
- Click Kutools Plus > Resize, and select one of the six percentages from the drop-down list. For example, choose 50% to resize all images to half of their original size.
- Click Kutools Plus > Resize, and select one of the six percentages from the drop-down list. For example, choose 50% to resize all images to half of their original size.
- To adjust all images to match the size of a selected image:
- Select an image to serve as the model size.
- Click Kutools Plus > Resize > Resize All Images Based On Selection. All images will be resized to the same size as the selected image.
- If you require more specific options, click Kutools Plus > Resize > Customize to access advanced resizing settings.
For more detailed information about Kutools for Wordβs Resize Images utility, please click here to read the full guide and see step-by-step instructions.
Resize an image to specific dimensions with VBA
With the following VBA code, you can resize a picture to your ideal size. The example below shows how to resize a picture to 1.78 inches in height and 3.17 inches in width.
- Please select a picture you want to resize.
- Press Alt + F11 to open the Microsoft Visual Basic for Applications window.
- Click Module from the Insert tab, and copy and paste the following VBA code into the Module window.
Sub ResizePics() Dim shp As Word.Shape Dim ishp As Word.InlineShape If Word.Selection.Type <> wdSelectionInlineShape And _ Word.Selection.Type <> wdSelectionShape Then Exit Sub End If If Word.Selection.Type = wdSelectionInlineShape Then Set ishp = Word.Selection.Range.InlineShapes(1) ishp.LockAspectRatio = False ishp.Height = InchesToPoints(1.78) ishp.Width = InchesToPoints(3.17) Else If Word.Selection.Type = wdSelectionShape Then Set shp = Word.Selection.ShapeRange(1) shp.LockAspectRatio = False shp.Height = InchesToPoints(1.78) shp.Width = InchesToPoints(3.17) End If End If End Sub
Note: In the above code, ishp.Height = InchesToPoints(1.78) and shp.Width = InchesToPoints(3.17) define the height and width of the picture in inches. You can change these values to suit your needs.
- Click the Run button or press F5 to run the VBA code. The selected image will be resized to the specified dimensions.
While this VBA code is useful, it cannot resize all or multiple pictures at once. You need to go back and forth between the Word document and the Microsoft Visual Basic for Applications window to select and resize each picture, which can be time-consuming. In such cases, use the Kutools method.
Demo: How to resize images in Word
Discover the Kutools / Kutools Plus tab in this video from Kutools for Word. Enjoy 100+ features and permanently free AI utilities. Download now!
Best Office Productivity Tools
Kutools for Word - Elevate Your Word Experience with Over 100 Remarkable Features!
π€ Kutools AI Features: Generate Content / Rewrite Text / Document Q&A / Get Quick Answers / Translate documents / Polish Document (Preserve Format)...
π Document Mastery: Split Pages / Merge Documents / Export Selection in Various Formats (PDF/TXT/DOC/HTML...) / Batch Convert to PDF...
β Contents Editing: Batch Find and Replace across Multiple Files / Resize All Pictures / Transpose Table Rows and Columns / Convert Table to Text...
π§Ή Effortless Clean: Sweap away Extra Spaces / Section Breaks / Text Boxes / Hyperlinks / For more removing tools, head to the Remove group...
β Creative Inserts: Insert Thousand Separators / Check Boxes / Radio Buttons / QR Code / Barcode / Multiple Pictures / Discover more in the Insert group...
π Precision Selections: Pinpoint Specific Pages / Tables / Shapes / Heading Paragraphs / Enhance navigation with more Select features...
β Star Enhancements: Navigate to Any Location / Auto-Insert Repetitive Text / Toggle Between Document Windows / 11 Conversion Tools...

Best Office Productivity Tools
Kutools for Word - 100+ Tools for Word
- π€ Kutools AI Features: Generate, Rewrite, Summarize, Translate Documents / Get Quick Answers / Polish Document (Preserve Format)
- π Document Mastery: Split Pages / Merge Documents / Batch Convert to PDF
- β Contents Editing: Batch Find and Replace / Resize All Pictures
- π§Ή Effortless Clean: Remove Extra Spaces / Remove Section Breaks
- β Creative Inserts: Insert Thousand Separators / Insert Check Boxes / Create QR Codes