While writing up I decided I needed a header image for all my bandcamp blog posts so I created one; a combination of my profile image from bandcamp, the bandcamp logo and because I wanted it wider, an xplanet view centred on home (or at least the nearest airport)
- image one – download my profile pic. from https://bandcamp.com/ajft as
bandcamp-ajft.jpg
- image two – find an SVG bandcamp logo and save it
Then investigate how to stick them together side-by-side and found montage(1) instructions, then realised I needed a third image, and them all to be the same dimensions. Image one is 640x640, so resize images two:
convert -geometry 640x640 1280px-Bandcamp-button-square-aqua.svg.png bandcamp-logo.png
For the third image, I used xplanet(1) and some ancient snippets from scripts used to created the images for my “where” page.
xplanet -config $HOME/.xplanet/config -geometry 640x640 \
-color white -num_times 1 -date 1200 -radius 200 \
-lat -37.933333333333 -lon 145.03333333333 \
-output mbw.jpg
Then stick them all together:
montage bandcamp-ajft.jpg bandcamp-logo.png mbw.jpg \
-tile 3x1 -geometry +0+0 bandcamp-hdr.png