Announcement

Collapse
No announcement yet.

Plugin for run PNG file as splash screen

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Plugin for run PNG file as splash screen

    hai

    I want a plugin to run png file as splash screen , using the PNG file we can create any shape of splash screen.


    Thank You

  • #2
    What is cause not support nsis from PNG photo to show as SPLASH?


    i have two dll for show png as splash but dont know how can use thats with parameter sending method!
    Attached Files

    Comment


    • #3
      There is no reason to develop new plugin or support the .png format. Existing NSIS plugin advsplash can do this for you:

      PHP Code:
      Function .onInit
        
      Splash Bitmap
        InitPluginsDir
        SetOutPath $PLUGINSDIR
           File 
      /oname=$PLUGINSDIR\splash.bmp "${SPLASH_BITMAP}"
           
      advsplash::show 1000 1500 1500 0xFF00FF $PLUGINSDIR\splash
           Pop 
      $; $0 has '1' if the user closed the splash screen early'0' if everything closed normally, and '-1' if some error occurred.
           
      Delete $PLUGINSDIR\splash.bmp
      FunctionEnd 
      The key is to set color which will be transparent: in this case it is 0xFF00FF.
      Attached Files
      Cool looking installers with custom design: www.graphical-installer.com
      Create Setup Pages easily: www.install-designer.com
      Build installers in Visual Studio 2005-2022: www.visual-installer.com
      or RAD Studio 2009 - 11 Alexandria: www.rad-installer.com

      Comment


      • #4
        Originally Posted by T.Slappy View Post
        There is no reason to develop new plugin or support the .png format
        …unless you want to use more than 1 alpha channel, which is likely when using shapes other than rectangles
        NSIS IDE for Atom | NSIS for Visual Studio Code | NSIS for Sublime Text | NSIS.docset

        Comment

        Working...
        X