Home

The Characteristics of a Picture Box

 

Introduction

As a regular visual control, after a picture box has been added to a form, it assumes a default size (unless you dragged and drew when adding it). You can then move or resize it using the techniques of application design we reviewed in Lessons 3 and 4. Of course, you can also specify the location and the size of the control programmatically. Here is an example:

Public Sub InitializeComponent()
            pctBox = New PictureBox()
            pctBox.Location = New Point(10, 10)
            pctBox.Size = New Size(200, 150)
            Controls.Add(pctBox)
End Sub
 

The Border Style of a Picture Box

By default, when you have added a picture box to a form, it appears without borders. At run time, the form designer would show the borders so you can conveniently move or resize it:

Picture Box

At run time, unless you display an object in the picture box or draw a shape in it, the user would not know where the picture box starts and where it ends:

Picture Box

There is no way of knowing that the above form contains a picture box. If you want the picture box to show its borders to the user, you can use the BorderStyle property. We described this property in Lesson 5.

The Image of a Picture Box

As stated in the introduction, the primary purpose of a picture box is to display a picture. To support this, the PictureBox class is equipped with a property named Image. This property is of type Image. At design time, to specify the picture that this control would hold, first click the picture box on the form to select it:

  • Click the triangular button in the top line:
     

     
    and click Choose Image
  • Click the ellipsis button of the Image field in the Properties window

In both cases, a dialog box would come up to assist you with locating and selecting a picture. 

To programmatically specify the picture to display, assign an Image object to the instance of the PictureBox class. Here is an example:

Public Sub InitializeComponent()
            pctBox = New PictureBox()
            pctBox.Location = New Point(10, 10)
            pctBox.Size = New Size(200, 150)
            pctBox.Image = Image.FromFile("person.gif")
            Controls.Add(pctBox)
End Sub

If you decide to specify the picture programmatically, make sure you provide a valid picture or a valid path to the picture; otherwise you would receive an error if the application cannot find the image.

The Image Location of the Image of a Picture Box

Besides the PictureBox.Image property, to assist you with specifying the image to display, the PictureBox class provides a property named ImageLocation. This property, which is of type String, expects either the path to the file or the URL of the image. At design time, difference with the Image property is that you are not asked to selected a picture but to give its location. Therefore, to use it, in the Properties window, type the complete path:

Properties Window 

Remember that you can also provide a URL to the picture:

Properties Windows

In both cases, if you provide a bad path or a broken link, that is, if the compiler cannot find the image, the picture box would display an X icon on its body.

At run time, you can also specify the path or the URL to the picture by assigning it to the PictureBox.ImageLocation property. Here is an example:

Public Sub InitializeComponent()
            pctBox = New PictureBox()
            pctBox.Location = New Point(10, 10)
            pctBox.Size = New Size(200, 150)
            pctBox.ImageLocation = "http://www.functionx.com/cars/civic.gif"
            Controls.Add(pctBox)
End Sub

After assigning a string to the ImageLocation property, you can call the PictureBox.Load() method to actually show the image. This method is overloaded with two versions.

Author Note When accessing this property, if you use an event such as the Paint event of the picture box or the Click event of a button, you don't have to call the Load() method to show the picture; but it is more effective and faster.

Instead of assigning a string to the PictureBox.ImageLocation property and calling the parameter-less PictureBox.Load() method, you can call the other version of the method. Its syntax is:

Public Sub Load(url As String)

This version takes as argument the URL of, or the path to, the picture. Here is an example:

Public Sub InitializeComponent()
            pctBox = New PictureBox()
            pctBox.Location = New Point(10, 10)
            pctBox.Size = New Size(200, 150)
            pctBox.Load("person.gif")

            Controls.Add(pctBox)
End Sub

After you have specified the image that the picture box would display, by default, it is located from the top-left corner of the control. In some cases, for example if the picture's size is lower than the control's, this would be fine and you may not need to be concerned with that:

The picture box can show only as far as its size. If an image goes beyond the control, its parts would be hidden. In some cases, the image may appear too wide, too narrow, too tall, or too short for the picture box. And in some cases, if the image's size is higher than the picture box, the control would not show some important aspects. Therefore, in some cases, you want to resize either the picture to fit the control, or the control to fit the picture. In some cases, you can programmatically resize a control by changing its Size property. On the other hand, you can scale a picture as we learned with bitmap. The PictureBox class provides an alternative.

The Size Mode of a Picture Box

The SizeMode property of the PictureBox class allows you to specify how the image in the control would be displayed. This property is based on the PictureBoxSizeMode enumeration and its members are as follows:

  • Normal: The picture is positioned from the top-left corner of the control as seen in the above form
  • CenterImage: The picture is positioned in the middle-center of the control
     

     
    If you give the user the ability to resize the picture box, when this is done, the picture would always be drawn in the middle-center of the control
  • StretchImage: The picture is resized to fit the control. Any dimension of the picture that is lower than its equivalent on the control is increased to match its equivalent. Any dimension of the picture that is higher than its equivalent on the control is decreased to match its equivalent:
      
    Before After
     
    Before After

    If you give the user the ability to resize the picture box, when this is done, the picture would always resize itself to fit the size of the control
  • Zoom: The image is positioned in the middle of the control but it is also resized following a certain algorithm:
    • If the image is taller than the control, the picture gets resized to be smaller so its new width and height can fit in the control and the ratio Bitmap.Width/Bitmap.Height ratio is respected. Here is an example
       
      Before After
    • If the image is wider than the control, the picture gets resized to be small enough so its new width and height can fit in the control and the ratio Bitmap.Width/Bitmap.Height is respected. Here is an example
       
      Before After
    • Imagine the image is smaller than the control:
       


      In this case, the picture's width and height would be increased but the ratio Bitmap.Width/Bitmap.Height is kept.
      To resize the picture, the compiler first finds out what dimension is closer to its equivalent of the control:
      • If the PictureBox.Height/Bitmap.Height ratio is lower than the PictureBox.Width/Bitmap.Width ratio, then the height of the image would first be increased to match the height of the picture box. Then the compiler would use the Bitmap.Width/Bitmap.Height ratio to calculate and apply the new width of the picture. Here is an example:
         
        Before After
      • If the PictureBox.Width/Bitmap.Width ratio is lower than the PictureBox.Height/Bitmap.Height  ratio, then the width of the image would first be increased to match the width of the picture box. Then compiler would then use the Bitmap.Width/Bitmap.Height ratio to calculate and apply the new height of the picture. Here is an example:
         
        Before After

    If you give the user the ability to resize the picture box, every time this is done, the compiler would use the above descriptions to resize and position the picture inside of the control

  • AutoSize: The size of the control would be changed to fit the picture:
    • If the picture is smaller than the control, the size of the control would be increased to show the whole picture
       
      Before After
    • If the picture is bigger than the control, the size of the picture box control would be decreased to fit the picture
       
      Before After
    If you had given the user the ability to resize the picture box, it cannot be resized and the size of the picture cannot change
 

Previous Copyright © 2008-2016, FunctionX, Inc. Home