Giter VIP home page Giter VIP logo

Comments (2)

robertgr991 avatar robertgr991 commented on June 27, 2024 3

The size of the icon should be changed from here:

hicon = LoadImage(self.hinst, icon_path, IMAGE_ICON, 0, 0, icon_flags)

The first 0 is the width in pixles, the second 0 is the height in pixels. However, it didn't worked for me so it's not a guarantee that it will work for others, but that's the place where the size should be provided.

You can see more about the parameters of the LoadImage function here: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-loadimagea

Edit:

After trying different things, I noticed that adding a certain flag makes the icon bigger, but I don't know if this is the intended behavior.
To achieve this import the flag:

from win32gui import NIIF_ICON_MASK

Then add it here:

Shell_NotifyIcon(NIM_MODIFY, (self.hwnd, 0, NIF_INFO, WM_USER + 20, hicon, "Balloon Tooltip", msg, 200, title, NIIF_ICON_MASK))

@domdfcoding @angus-y

from windows-10-toast-notifications.

domdfcoding avatar domdfcoding commented on June 27, 2024

I'd like to know the answer to this too. The example image in the readme shows a larger icon, so I assume it's possible

from windows-10-toast-notifications.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.