Jump to content

Change Height and width with GUICtrlSetImage ?


nyke0
 Share

Recommended Posts

Is it possible to change the height in width of a gif image?
I don't wanna resize the image, only how I let it show in my gui.

$Image = GUICtrlCreatePic(@ScriptDir & '\example.gif', 0, 0, 100, 100)
GUICtrlSetImage($Image, @ScriptDir & '\example_new.gif'); -> to 90, 90
Link to comment
Share on other sites

GUICtrlSetPos() ?

$Image = GUICtrlCreatePic(@ScriptDir & '\example.gif', 0, 0, 100, 100)
GUICtrlSetImage($Image, @ScriptDir & '\example_new.gif')
GUICtrlSetPos($Image, Default, Default, 90, 90)
Edited by jguinch
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...