Add a note about where to edit %callout-graphics-number-limit% [1]
Split the generation of images up to use a larger font on 1-9, and smaller on 10-30 to further improve the appearance. s/seq/jot/ so users on < 9.x can run this script Submitted by: gjb [1]
svn path=/head/; revision=37652
Before Width: | Height: | Size: 422 B After Width: | Height: | Size: 443 B |
Before Width: | Height: | Size: 535 B After Width: | Height: | Size: 529 B |
Before Width: | Height: | Size: 465 B After Width: | Height: | Size: 459 B |
Before Width: | Height: | Size: 532 B After Width: | Height: | Size: 524 B |
Before Width: | Height: | Size: 540 B After Width: | Height: | Size: 524 B |
Before Width: | Height: | Size: 517 B After Width: | Height: | Size: 508 B |
Before Width: | Height: | Size: 538 B After Width: | Height: | Size: 528 B |
Before Width: | Height: | Size: 537 B After Width: | Height: | Size: 534 B |
Before Width: | Height: | Size: 505 B After Width: | Height: | Size: 502 B |
Before Width: | Height: | Size: 555 B After Width: | Height: | Size: 531 B |
Before Width: | Height: | Size: 539 B After Width: | Height: | Size: 529 B |
Before Width: | Height: | Size: 520 B After Width: | Height: | Size: 526 B |
Before Width: | Height: | Size: 592 B After Width: | Height: | Size: 573 B |
Before Width: | Height: | Size: 533 B After Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 580 B After Width: | Height: | Size: 578 B |
Before Width: | Height: | Size: 609 B After Width: | Height: | Size: 576 B |
Before Width: | Height: | Size: 563 B After Width: | Height: | Size: 538 B |
Before Width: | Height: | Size: 578 B After Width: | Height: | Size: 583 B |
Before Width: | Height: | Size: 599 B After Width: | Height: | Size: 583 B |
Before Width: | Height: | Size: 573 B After Width: | Height: | Size: 554 B |
Before Width: | Height: | Size: 605 B After Width: | Height: | Size: 583 B |
Before Width: | Height: | Size: 600 B After Width: | Height: | Size: 579 B |
Before Width: | Height: | Size: 529 B After Width: | Height: | Size: 537 B |
Before Width: | Height: | Size: 612 B After Width: | Height: | Size: 585 B |
Before Width: | Height: | Size: 494 B After Width: | Height: | Size: 475 B |
Before Width: | Height: | Size: 508 B After Width: | Height: | Size: 511 B |
Before Width: | Height: | Size: 518 B After Width: | Height: | Size: 530 B |
Before Width: | Height: | Size: 475 B After Width: | Height: | Size: 483 B |
Before Width: | Height: | Size: 538 B After Width: | Height: | Size: 541 B |
Before Width: | Height: | Size: 526 B After Width: | Height: | Size: 541 B |
|
@ -2,8 +2,17 @@
|
|||
|
||||
# $FreeBSD$
|
||||
|
||||
for i in `seq 1 30`
|
||||
do
|
||||
convert -size 101x101 xc:green -transparent green -fill black -draw 'circle 50,50 50' -fill white -stroke none -pointsize 83 -gravity center -kerning -5 -font Helvetica-bold -draw "text 0,5 \"$i\"" -scale '12x12' $i.png
|
||||
# For more than 30 adjust %callout-graphics-number-limit%
|
||||
# in doc/share/sgml/freebsd-html.dsl
|
||||
|
||||
for i in `jot 9 1`
|
||||
do
|
||||
convert -size 101x101 xc:green -transparent green -fill black -draw 'circle 50,50 50' -fill white -stroke none -pointsize 90 -gravity center -kerning -5 -font Helvetica-bold -draw "text 0,5 \"$i\"" -scale '12x12' $i.png
|
||||
done
|
||||
|
||||
for i in `jot 21 10`
|
||||
do
|
||||
convert -size 101x101 xc:green -transparent green -fill black -draw 'circle 50,50 50' -fill white -stroke none -pointsize 80 -gravity center -kerning -5 -font Helvetica-bold -draw "text 0,5 \"$i\"" -scale '12x12' $i.png
|
||||
done
|
||||
|
||||
exit 0
|
||||
|
|