-
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x230: move splashscreen docs to common
- Loading branch information
Showing
2 changed files
with
14 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
In order to create your own splashscreen image, before building, | ||
overwrite the `bootsplash.jpg` with your own JPEG, using | ||
* "Progressive" turned off, and | ||
* "4:2:0 (chroma quartered)" Subsampling | ||
|
||
You can use `imagemagick` to prepare the .jpg file using: | ||
* `mogrify logo.jpg -interlace none <splashscreen>` | ||
* `mogrify logo.jpg -sampling-factor 4:2:0 <splashscreen>` | ||
* `convert <splashscreen> -resize 1024x768! <splashscreen> # optional, but converts image size to match screen dimensions` | ||
|
||
`ImageMagick` can also be used to convert images of another format into .jpg using the [convert](https://imagemagick.org/script/convert.php) tool. | ||
|
||
**Note**: replace `<splashscreen>` with the file name. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters