source: trunk/adm/website/gen_logo.sh @ 56

Last change on this file since 56 was 56, checked in by pinsard, 13 years ago

prepare survey using superbib

File size: 752 bytes
Line 
1#! /bin/sh
2#+
3# .. program: gen_logo.sh
4#
5# ===========
6# gen_logo.sh
7# ===========
8#
9# DESCRIPTION
10# ===========
11#
12# creation logo (:file:`logo.png`) used by Sphinx for the project website
13#
14# SEE ALSO
15# ========
16#
17# see sample_tut from matplotlib for Sphinx usage
18#
19# see ImageMagick for image cration http://www.imagemagick.org/Usage/draw/
20#
21# TODO
22# ====
23#
24# This tool has to be call during website building ... so either in ./Makefile
25# or in ../makefile
26#
27
28# EVOLUTIONS
29# ==========
30#
31# - fplod 20110401T090359Z aedon.locean-ipsl.upmc.fr (Darwin)
32#
33#   * creation (superdraft)
34#
35#-
36convert -size 544x111 xc:skyblue -fill white -stroke black \
37        -pointsize 100 -gravity center -draw "text 0,0 'TropFlux'" \
38        _static/logo.png
39
40exit 0
Note: See TracBrowser for help on using the repository browser.