image size

  • Thread starter Thread starter Eddie
  • Start date Start date
E

Eddie

Hi,

Anyone know how I can get an image size for a picture in Pixel format?

Thanks in advace,

Eddie
 
Load into a bitmap object and pull the width and height.

--
Gregory A. Beamer
MPV; MCP: +I, SE, SD, DBA

**********************************************************************
Think outside the box!
**********************************************************************
 
Hello,

Eddie said:
Anyone know how I can get an image size for a picture in Pixel format?

\\\
Dim b As New Bitmap("C:\bla.bmp")
MsgBox(b.Height)
MsgBox(b.Width)
///
 
Back
Top