Click here to Skip to main content
15,875,643 members
Articles / Programming Languages / Visual Basic

An Easy Way to Resize an Image

Rate me:
Please Sign up or sign in to vote.
4.44/5 (28 votes)
9 Jun 2009CPOL2 min read 60.2K   1.8K   43   14
This article will show you how to resize an image keeping with the best graphics quality.

Introduction  

This is the most common part to add an image / signature in any web/Windows applications. This article will show you how to resize an image keeping with the best graphics quality.

Background

Most of the time, developers face various problems when they resize an image runtime. In this article, I try to resize an image runtime with keeping the best graphics quality.

Using the Code 

Here I write a function to resize an image (i.e., “ImageResize”), this function has four input parameters that are:

  1. strImageSrcPath: A string that contains the image source file path
  2. strImageDesPath: A string that contains the destination file path
  3. intWidth: An integer value for the new image width
  4. intHeight : An integer value for the new image Height

After successfully calling the function with the valid input values, it will resize and store the image into your given destination path and return the full path to show the new resized image. Here I use .NET framework 3.5 (System.Drawing,IO) namespaces. 

VB.NET
 Public Function ImageResize(ByVal strImageSrcPath As String _
                          , ByVal strImageDesPath As String _
                          , Optional ByVal intWidth As Integer = 0 _
                          , Optional ByVal intHeight As Integer = 0) As String

    If System.IO.File.Exists(strImageSrcPath) = False Then Exit Function

    Dim objImage As System.Drawing.Image = System.Drawing.Image.FromFile(strImageSrcPath)

    If intWidth > objImage.Width Then intWidth = objImage.Width
    If intHeight > objImage.Height Then intHeight = objImage.Height
    If intWidth = 0 And intHeight = 0 Then
        intWidth = objImage.Width
        intHeight = objImage.Height
    ElseIf intHeight = 0 And intWidth <> 0 Then
        intHeight = Fix(objImage.Height * intWidth / objImage.Width)
    ElseIf intWidth = 0 And intHeight <> 0 Then
        intWidth = Fix(objImage.Width * intHeight / objImage.Height)
    End If

    Dim imgOutput As New Bitmap(objImage, intWidth, intHeight)
    Dim imgFormat = objImage.RawFormat

    objImage.Dispose()
    objImage = Nothing

    If strImageSrcPath = strImageDesPath Then System.IO.File.Delete(strImageSrcPath)
    ' send the resized image to the viewer
    imgOutput.Save(strImageDesPath, imgFormat)
    imgOutput.Dispose()

    Return strImageDesPath

End Function

Now we are going to discuss how the above function works. Here, you will find various methods to perform file manipulation and all these are common. I would like to highlight the main properties, methods and class that are used for image resizing.

Property

  • RawFormat: Gets the file format of this image

Methods

  • FromFile: Creates an Image from the specified file
  • Fix: Returns integer form fraction values

Bitmap Class

Encapsulates a GDI+ bitmap, which consists of the pixel data for a graphics image and its attributes. A Bitmap is an object used to work with images defined by pixel data.

The concept is very simple, at first we need to create an instance of  System.Drawing.Image.FromFile and set the new width and height of the image. After that, we use Bitmap object to  populate the new image and set the actual format by using RawFormat property and finally store the new image into the destination path.

Conclusion

This is a very simple and easy way. I hope that it might be helpful to you. Enjoy!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
QuestionJust Thanks Pin
get_junaidu29-Nov-22 12:04
get_junaidu29-Nov-22 12:04 
QuestionI changed it to C# code and sharing on GITHUB Pin
jash.liao23-Mar-18 4:07
jash.liao23-Mar-18 4:07 
GeneralAnother tool Pin
nobihai27-Oct-15 6:58
nobihai27-Oct-15 6:58 
GeneralRe: Another tool Pin
Md. Marufuzzaman30-Oct-15 5:13
professionalMd. Marufuzzaman30-Oct-15 5:13 
QuestionUse imageresizing.net instead for high-quality results Pin
Nathanael Jones6-Jan-12 6:44
Nathanael Jones6-Jan-12 6:44 
AnswerRe: Use imageresizing.net instead for high-quality results Pin
Md. Marufuzzaman6-Jan-12 23:15
professionalMd. Marufuzzaman6-Jan-12 23:15 
GeneralThanks Pin
vickypamgmail28-Jul-09 22:13
vickypamgmail28-Jul-09 22:13 
GeneralRe: Thanks Pin
Md. Marufuzzaman29-Jul-09 2:11
professionalMd. Marufuzzaman29-Jul-09 2:11 
QuestionCan it resize a gif image with multi frames? Pin
taihip9-Jun-09 21:59
taihip9-Jun-09 21:59 
GeneralA generic error occurred in GDI+ Pin
Member 34475229-Jun-09 19:39
Member 34475229-Jun-09 19:39 
GeneralRe: A generic error occurred in GDI+ Pin
Member 34475229-Jun-09 21:21
Member 34475229-Jun-09 21:21 
GeneralRe: A generic error occurred in GDI+ Pin
aa_zz9-Jul-09 21:21
aa_zz9-Jul-09 21:21 
GeneralMy vote of 1 Pin
Nagy Vilmos9-Jun-09 2:01
professionalNagy Vilmos9-Jun-09 2:01 
There is no real substance to this article. All you do is make use of the BitMap constructor to provide a re-sized image.
GeneralRe: My vote of 1 Pin
Member 34475229-Jun-09 20:44
Member 34475229-Jun-09 20:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.