Mobile app splash screen generator
$ npm install --save mobisplash
This library depends on GraphicsMagick, so be sure to install this library as well.
$ brew install graphicsmagick
$ sudo apt-get install graphicsmagick
Manual installation or via chocolatey.
$ choco install graphicsmagick
const mobisplash = require('mobisplash');
mobisplash('logo.png', {platform: 'ios'}).then(() => {
// splash screens generated
});
mobisplash('logo.svg', {platform: 'android', draw9patch: false}).then(() => {
// splash screens generated
});
Type: string
Source file of the splash screen.
Required
Type: string
Values: android
ios
blackberry10
Platform to generate the splash screens for.
Type: string
Values: both
portrait
landscape
Default: both
Orientation to generate the splash screens for.
Type: string
Default: white
Color of the splash screen background.
Type: number
Default: 0.8
Logo-splash screen ratio. 1
means the logo will fill up the entire width (or height) of the splash screen.
Type: boolean
Default: true
9-patch the Android
splash screens.
Type: string
Default: process.cwd()
Directory to save the generated splash screens to.
The supported platforms are Android
, iOS
and BlackBerry 10
. Every platform generates a different set of icons.
drawable-ldpi-land/splash.png
drawable-mdpi-land/splash.png
drawable-hdpi-land/splash.png
drawable-xhdpi-land/splash.png
drawable-xxhdpi-land/splash.png
drawable-xxxhdpi-land/splash.png
drawable-ldpi-port/splash.png
drawable-mdpi-port/splash.png
drawable-hdpi-port/splash.png
drawable-xhdpi-port/splash.png
drawable-xxhdpi-port/splash.png
drawable-xxxhdpi-port/splash.png
Default-667h.png
Default-736h.png
Default-Landscape-736h.png
Default-568h@2x~iphone.png
Default~iphone.png
Default@2x~iphone.png
Default-Landscape~ipad.png
Default-Landscape@2x~ipad.png
Default-Portrait~ipad.png
Default-Portrait@2x~ipad.png
splash-1280x720.png
splash-720x1280.png
splash-1280x768.png
splash-768x1280.png
splash-720x720.png
splash-1440x1440.png
- mobisplash-cli - CLI for this module
- mobicon - Mobile app icon generator
MIT © Sam Verschueren