How To Add Border To Picture In Word



  1. How To Add A Border To A Picture In Word On Mac
  2. Add Border To Picture Online
  3. How To Add Border To Picture In Word 2007
  4. How To Add Border To Picture In Word 2016

What This VBA Code Does

This VBA code will apply a custom border to all the pictures in your Word Document.

Sub AddBorderToAllPictures()
'PURPOSE: Add borders around all images in the document
'SOURCE: www.TheSpreadsheetGuru.com
Dim myPic As InlineShape
'Loop Through All Pictures (aka Inline Shapes) in Document
ForEach myPic In ActiveDocument.InlineShapes
'Border Thickness
myPic.Line.Weight = 5
'Border Line Style
myPic.Line.Style = msoLineSingle
'Border Color
myPic.Line.ForeColor.RGB = RGB(191, 219, 255)
Next myPic
EndSub

Adding Variability

  • Learn how to create and apply a custom border in Microsoft Word.Creating your own custom border can be done by using a saved image on your computer and placi.
  • The below screenshot shows that a table border is added in the Word document. Add a picture border in Word document. Microsoft Word provides the fastest way to add borders around a picture. Step 1: Open the Word document in which you want to add a picture border. Step 2: Go to Insert tab and select the Picture option under the illustration section.

How To Add A Border To A Picture In Word On Mac

Microsoft database daemon error mac. Let's modify the above code a little bit and allow the user to cycle through each of the pictures in the Word document and decide whether the picture should have a border.

Hacked version of mac with windows. Sub AddBorderToAllPictures_AskUser()
'PURPOSE: Loop through all images in ActiveDocument and ask if border should be added
'SOURCE: www.TheSpreadsheetGuru.com
Dim myPic As InlineShape
Dim MyAnswer AsInteger
'Loop Through All Pictures (aka Inline Shapes) in Document
ForEach myPic In ActiveDocument.InlineShapes
'Select Image so user can see what image we are talking about
myPic.Select
'Ask and receive verification from user via Messagebox
MyAnswer = MsgBox('Do you wish to add a border to the selected image?', vbYesNo, 'Add Border')
'See if User wants to add border
If MyAnswer = vbYes Then
'Border Thickness
myPic.Line.Weight = 5
'Border Line Style
myPic.Line.Style = msoLineSingle
'Border Color
myPic.Line.ForeColor.RGB = RGB(191, 219, 255)
EndIf
Next myPic
EndSub

How Do I Modify This To Fit My Specific Needs?

How to add a checkbox in Word How to add page numbers in Word How to convert Word document to a PDF How to create a Table of contents in Word How to insert a line in Word How to add a border in Word How to add fonts in Microsoft Word How to alphabetize data in Microsoft Word How to center text in Word How to delete a page in Word How to add and remove a page break in Word How to add and remove.

Add

Chances are this post did not give you the exact answer you were looking for. We all have different situations and it's impossible to account for every particular need one might have. That's why I want to share with you: My Guide to Getting the Solution to your Problems FAST! In this article, I explain the best strategies I have come up with over the years to getting quick answers to complex problems in Excel, PowerPoint, VBA, you name it!

Add Border To Picture Online

How To Add Border To Picture In Word

I highly recommend that you check this guide out before asking me or anyone else in the comments section to solve your specific problem. I can guarantee 9 times out of 10, one of my strategies will get you the answer(s) you are needing faster than it will take me to get back to you with a possible solution. I try my best to help everyone out, but sometimes I don't have time to fit everyone's questions in (there never seem to be quite enough hours in the day!).

I wish you the best of luck and I hope this tutorial gets you heading in the right direction!

Chris 'Macro' Newman :)

How

Most images on the web are either square or rectangle. Sometimes however we may need round images or rounded rectangle. For example, many business websites have a staff page with round thumbnails of staff members in the team. If you want rounded corners for avatars or images, you may think of Photoshop, the most well known image editor software. Check out this step-by-step tutorial to make round pictures in Photoshop. This tool is very powerful in editing and creating all kinds of image files, but it may be difficult to use for beginners. We deserve an easier way to merely add round corners to images. In fact, the Office Word, the most well-known word processor, can help you round a corner of a rectangle in easy steps.

How To Add Border To Picture In Word

How To Add Border To Picture In Word 2007

Create round images or round corners using Word

Launch Word on your PC and create a new blank document. Then click Insert tab, click the down arrow below Shapes, then choose a ready-made shape, in this case you can choose Oval if you want to create round photos, or choose Rounded Rectangle if you like to add round corners to a rectangle picture. We will choose the latter in this demo. Drag the borders of the added shape to the size you need. Click the down arrow besides Shape Fill, choose Picture from the drop-down menu. Instead of filling the shape with color or texture, we will fill the rounded rectangle with the picture we like to add rounded corners to. Browse to the image file you like to edit and insert the picture into the shape in Word document. See below screenshot.

How To Add Border To Picture In Word 2016

Press Ctrl+C or right click on the Oval or Rounded Rectangle in Word and choose Copy. This will copy the rounded image to clipboard. Now we need to paste it to an image editor on PC. We recommend the Windows Paint app which you can find in the Windows OS. You can find it from Start >> All apps >> Windows Accessories >> Paint. Create a new file in Paint app, paste the rounded image from clipboard to MS Paint app. Drag and drop the borders in paint to remove unnecessary blank area. Currently MS Paint can’t save images with transparency. The blank area in the background will become part of the output image file. Final burn alpha mac. Save the image file from Paint app to your computer hard drive and you get the image with rounded shape or rectangle picture with rounded corners.





Comments are closed.