Hi Kalyan,
Just one line of code will do.
'In: Picture In (as Image)
'In: Scaling Factor (as Number)
'Out: Picture Out (As Image)
Picture_Out = new System.Drawing.Bitmap(Picture_In, New Size(Picture_In.Width * Scaling_Factor, Picture_In.Height * Scaling_Factor))
Hope this helps.