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

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

fill website pages

File size: 634 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# EVOLUTIONS
22# ==========
23#
24# - fplod 20110401T090359Z aedon.locean-ipsl.upmc.fr (Darwin)
25#
26#   * creation (superdraft)
27#
28#-
29convert -size 544x111 xc:skyblue -fill white -stroke black \
30        -pointsize 100 -gravity center -draw "text 0,0 'TropFlux'" \
31        _static/logo.png
32
33exit 0
Note: See TracBrowser for help on using the repository browser.