version 1.2, 2012/08/28 08:15:13
|
version 1.3, 2012/08/28 08:27:25
|
Line 5
|
Line 5
|
# can do whatever you want with this stuff. If we meet some day, and you think |
# can do whatever you want with this stuff. If we meet some day, and you think |
# this stuff is worth it, you can buy me a beer in return Aron Schlesinger |
# this stuff is worth it, you can buy me a beer in return Aron Schlesinger |
# |
# |
# $Paefchen: scripts/pgallery/src/pgallery.sh,v 1.1 2012/08/27 14:23:59 as Exp $ | # $Paefchen: scripts/pgallery/src/pgallery.sh,v 1.2 2012/08/28 08:15:13 as Exp $ |
# |
# |
|
|
ARG_TITLE="PGallery" |
ARG_TITLE="PGallery" |
Line 323 html_img()
|
Line 323 html_img()
|
linkb=$3 |
linkb=$3 |
linkn=$4 |
linkn=$4 |
|
|
height=$($BIN_IMGINFO -f $img | awk '{print $4}') | info=$($BIN_IMGINFO -f $img) |
| width=$(echo $info | awk '{print $3}') |
| height=$(echo $info | awk '{print $4}') |
|
|
if [ "$linkb" != "" ] |
if [ "$linkb" != "" ] |
then |
then |
Line 345 html_img()
|
Line 347 html_img()
|
<div class="right">$hlinkn</div> |
<div class="right">$hlinkn</div> |
</div> |
</div> |
<div class="big"> |
<div class="big"> |
<img src="$img" /> | <img alt="$img" width="$width" height="$height" src="$img" /> |
</div> |
</div> |
<div class="c"> |
<div class="c"> |
$ARG_TITLE $ARG_COPYRIGHT |
$ARG_TITLE $ARG_COPYRIGHT |