Search results for query: *

  • Users: chrldmp
  • Content: Threads
  • Order by date
  1. C

    Question Shrink a bitmpap with high resolution

    Hi to all, I have written this code to resize (shrink) a bitmap: Public Function ResizeBitmap(bm_source As Bitmap, scale_factor As Double) As Bitmap Try Dim bm_dest As New Bitmap(CInt(bm_source.Width * scale_factor), CInt(bm_source.Height * scale_factor)) Dim g As Graphics =...
Back
Top