Reply
Thread Tools
Morpog's Avatar
Posts: 956 | Thanked: 2,628 times | Joined on Nov 2011
#1
You always wanted to do your own backgrounds in Sailfish OS Silica style?




I created a photoshop pattern and a tileable PNG for your pleasure.


Have fun with it!

http://db.tt/YitXvQS8
 

The Following 13 Users Say Thank You to Morpog For This Useful Post:
qwazix's Avatar
Moderator | Posts: 2,622 | Thanked: 5,447 times | Joined on Jan 2010
#2
and this
Code:
composite -compose Screen -tile jolla_pyramid.png wallpaper.jpg output.jpg
will silica-fy your wallpapers on the fly, right on your N9

If composite returns command not found type
Code:
apt-get install imagemagick
as root

you will need Morpog's file in the working directory

A better version according to my taste:

1. darken Morpog's image (you only need to do this once)
Code:
convert jolla_pyramid.png -modulate 50 jolla_pyramid_dark.png
2. blur your wallpaper
Code:
convert your_image.jpeg -blur 0x4 temp.jpg
3. darken it
Code:
mogrify -modulate 80 temp.jpg
4. compose the images
Code:
composite -compose Screen -tile jolla_pyramid_dark.png temp.jpg  test.jpg
5. Delete temporary image
Code:
rm temp.jpg
you can try with Soft_Light or Multiply instead of Screen for alternate effects

full code, assuming darkened jolla_pyramid
Code:
#!/bin/sh
convert "$1" -blur 0x4 /tmp/img_temp.jpg
mogrify -modulate 80 /tmp/img_temp.jpg
composite -compose Screen -tile jolla_pyramid_dark.png /tmp/img_temp.jpg  "jollified-$1"
rm /tmp/img_temp.jpg
__________________
Proud coding competition 2012 winner: ρcam
My other apps: speedcrunch N9 N900 Jolla –– contactlaunch –– timenow

Nemo UX blog: Grog
My website: qwazix.com
My job: oob

Last edited by qwazix; 2013-05-13 at 18:01. Reason: fixed syntax
 

The Following 10 Users Say Thank You to qwazix For This Useful Post:
Morpog's Avatar
Posts: 956 | Thanked: 2,628 times | Joined on Nov 2011
#3
awesome qwazix!
 

The Following User Says Thank You to Morpog For This Useful Post:
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 14:06.