Link to home
Start Free TrialLog in
Avatar of Clif
ClifFlag for United States of America

asked on

VBA - Sizing Various Images

Using VB.Net 2010 (Pro) to create an Excel 2010 spreadsheet.

I'm in the process of creating a report.  At first, there were two images on the report.  Our company logo and the customer's logo.  These were "hard coded" as to the size.  Now, I'm charged with re-writing the code to allow us to offer the report app to other customers, which means I need to allow the customer to choose their own image file to be put in the report.

The problem is, I only have a certain area for that logo image to go and the customer's image can (literally) be any size.  What I need is to adjust the image size so that it does not overwrite (or be overwritten by) the text that will be going in the cells near it.  Further complicating the situation is the fact that Excel deals with inches and points, and image files are in pixels (with no easy conversion).

Here is the code I used originally to place the image in the spreadsheet...
m_oSheet.Shapes.AddPicture(sLogoFilePathName, _
                           TriState.False, _
                           TriState.True, _
                           m_oXL.InchesToPoints(1.1), _
                           m_oXL.InchesToPoints(0.11), _
                           m_oXL.InchesToPoints(1.3), _
                           m_oXL.InchesToPoints(0.49))

Open in new window

The original image size is 1.3" wide by .49" high (measured by me on a printout).  Right or wrong, this has been working correctly so, ultimately, I need to keep the 1.3"w by .49" h ratio.

I also know that the original image is 123px wide and 47px high.

So here's my question...

Once I have an image file (whatever the user selected), how do I enlarge or shrink the image so that it will fit the hole where the image goes?  I'm guessing that I can alter the height to match the original (maintaining aspect ratio), then compare the width.  If the width is wider than the original, then alter the width to match the original.  But I'm not sure exactly how to code it, nor do I know how to figure out the image height/width in inches to put in the AddPicture() procedure.

TIA
Avatar of Clif
Clif
Flag of United States of America image

ASKER

Excuse me for thinking out loud (as it were), but I've been researching and see that (in my case) the actual ratio between sizes (points vs pixels) is 72:96 (the original image depth noted above is 96dpi).

So, if I know the depth, then I sould be able to figure out everything else.  

However, it does not seem that depth is a property of the image object.
ASKER CERTIFIED SOLUTION
Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Clif

ASKER

I got that, but something's not working right.  My new image is ending up the correct height, but far wider than it should be.

Here is my code:
Dim fLogoHeight As Single = 0
Dim fLogoWidth As Single = 0
Dim fLogoHDPI As Single = 0
Dim fLogoWDPI As Single = 0
Dim fLogoSizeRatio As Single = 0
Dim imgLogo As Image = Image.FromFile(sLogoFilePathName)
fLogoHeight = imgLogo.Height
fLogoWidth = imgLogo.Width
fLogoHDPI = imgLogo.HorizontalResolution
fLogoWDPI = imgLogo.VerticalResolution

fLogoSizeRatio = 47 / fLogoHeight

m_oSheet.Shapes.AddPicture(sLogoFilePathName, _
                           TriState.False, _
                           TriState.True, _
                           m_oXL.InchesToPoints(1.1), _
                           0, _
                           (fLogoWidth * fLogoSizeRatio) * (72 / fLogoWDPI), _
                           m_oXL.InchesToPoints(0.71))

Open in new window

I did make a change to the top and height parameters to position the new logo more along the lines of our company logo.  If I put the top and height parameters back, the logo looks fine.
Avatar of Clif

ASKER

It seems to be working, albeit in it's original (smaller) form.  But that'll do.