resize

  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 =...
  2. N

    Resize images in a doc file

    Hello, I would like to resize all the images in a doc file. The images are all small and I need to make them as big as the A4 paper. Thus, one image per page. Any help how to get me started? I have no clue. See attached pictures to understand better what I would like to do Thank you in...
  3. P

    Question Resize a Bitmap Type

    Using this forum, i was able to interigate a file and then alter a mouse cursor to become a bitmap based on the file information. As part of the bitmap type, is it possible to resize the bitmap to ensure that they are always exactly the same. Currently, the application will get the bitmap, but...
  4. C

    Answered How can I make my forms Auto Resize?

    Hello I am creating an application and I am running 1280, 1024 Res and I want my application to be able to support any computer res. How can I do this if it is at all possible? I am sure this has been asked and I have tried searching but with no luck Thanks for any help -- Chris
Back
Top