VB3 Converting an Icon (.ICO) to Bitmap (.BMP) Format (90872)



The information in this article applies to:

  • Microsoft Visual Basic Standard Edition for Windows 2.0
  • Microsoft Visual Basic Standard Edition for Windows 3.0
  • Microsoft Visual Basic Professional Edition for Windows 2.0
  • Microsoft Visual Basic Professional Edition for Windows 3.0
  • Microsoft Visual Basic Standard Edition for Windows 1.0

This article was previously published under Q90872

SUMMARY

You can convert a Windows icon file (.ICO) to a Windows bitmap (.BMP) file by storing the icon in a picture box, and then using the SavePicture statement with the Image property of the picture control.

MORE INFORMATION

You may wish to convert an icon format file to the bitmap format to perform operations that cannot be performed on icon format files, such as loading the image into Microsoft Windows Paintbrush.

To convert an icon format file to a bitmap format file, assign the icon to the Picture property of a picture box property (at design-time or run-time). At run-time, use the following statement:
   SavePicture Picture1.Image, "filename.bmp"
				

When you convert an icon to a bitmap, you lose device independence for resolution characteristics. Windows bitmap format files, which usually have a .BMP extension, represent an image with device independent color information. Windows icon files, which usually have an .ICO extension, can contain information for both color and resolution device independence.

The steps listed below demonstrate how to convent an icon format file to a bitmap format file:
  1. Run Visual Basic for Windows, or from the File menu, choose New Project (press ALT, F, N) if Visual Basic for Windows is already running. Form1 will be created by default.
  2. Place a picture box named Picture1 on Form1.
  3. Enter the following code into the form's Click event:
       Sub Form_Click ()
          Picture1.AutoSize = -1
          Picture1.Picture = LoadPicture("icons\arrows\arw01dn.ico")
          SavePicture Picture1.Image, "arw01dn.bmp"
       End Sub
    
    						
  4. Press the F5 key to run the program. Click Form1 to convert the file.

REFERENCES

Chapter 19 File Formats of "Microsoft Windows Programmer's Reference"

Modification Type:MajorLast Reviewed:12/12/2003
Keywords:kbcode KB90872