Dim proporcion As Double
i = imgProporcion.Width
j = imgProporcion.Height
imgProporcion.Visible = False
imgProporcion.Stretch = False
i = (i / imgProporcion.Width)
j = (j / imgProporcion.Height)
If j > i Then proporcion = j Else proporcion = i
imgProporcion.Stretch = True
imgProporcion.Width = CInt(proporcion * imgProporcion.Width)
imgProporcion.Height = CInt(proporcion * imgProporcion.Height)
imgProporcion.Visible = True
No hay comentarios:
Publicar un comentario