Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrelease/datafiles/splash_scale.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/release/datafiles/splash_scale.sh b/release/datafiles/splash_scale.sh
new file mode 100755
index 00000000000..8a3f2c6d1eb
--- /dev/null
+++ b/release/datafiles/splash_scale.sh
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+# Use this script to generate splash.png from splash_2x.png.
+# Supposed to give best quality image.
+#
+# Based on ImageMagic documentation, which is interesting
+# to read anyway:
+#
+# http://www.imagemagick.org/Usage/filter
+# http://www.imagemagick.org/Usage/filter/nicolas/
+
+convert \
+ splash_2x.png \
+ -colorspace RGB \
+ -filter Cosine \
+ -resize 50% \
+ -colorspace sRGB \
+ splash.png