Modify

Opened 16 years ago

Closed 15 years ago

#1439 closed Bug (Wont Fix)

Icons included in script use wrong size

Reported by: P5ych0Gigabyte Owned by: Jon
Milestone: Component: AutoIt
Version: 3.3.4.0 Severity: None
Keywords: Cc:

Description (last modified by J-Paul Mesnage)

I have a script which uses a button with a 48x48 icon. When using an external ico file it works fine. However when using AutoIt3Wrapper to add an icon to the script it shows as 32x32. It is not a bug in AutoIt3Wrapper as opening the exe is reshacker shows the icon is indeed 48x48.

Attachments (1)

IconBug.zip (2.5 KB ) - added by anonymous 16 years ago.

Download all attachments as: .zip

Change History (7)

by anonymous, 16 years ago

Attachment: IconBug.zip added

comment:1 by P5ych0Gigabyte, 16 years ago

Please remove the link as I have added the file as an attachement.

comment:2 by J-Paul Mesnage, 16 years ago

Description: modified (diff)

comment:3 by VittGam <vittgam@…>, 16 years ago

The same bug is with GUICtrlCreateIcon, because if I set width and height to 48 px like this:

GUICtrlCreateIcon(@AutoItExe,0,0,0,48,48)

the image is pixeled from the 32px version. I have to use this:

GUICtrlCreateIcon(@AutoItExe,99,0,0,48,48)

assuming that the icon is named 99 in the resource hacker to have the right size.

comment:4 by J-Paul Mesnage, 16 years ago

in fact icons can only be 16x16 or 32x32 as the Windows extraction API we are using only return those formats.
We don't want to reimplement the Windows API, so I will document this restiction.
If we use the same algorithm as for GUICtrlCreateIcon the Icon is not center in the button area. At least that what we found when we implement GuiCtrlSetImage for button

comment:5 by J-Paul Mesnage, 16 years ago

Owner: set to Jon
Status: newassigned

comment:6 by Jon, 15 years ago

Resolution: Wont Fix
Status: assignedclosed

Modify Ticket

Action
as closed The owner will remain Jon.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.