note 91111 deleted from function.imagestring by danbrown

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: user24 

----

ImageStringRight code:
<?php

function ImageStringRight($image, $font, $y, $str, $col,$r_padding=1, $ImageString = 'ImageString') {
	// http://www.puremango.co.uk/2009/04/php-imagestringright-center-italic/

	$font_width = ImageFontWidth($font);
	$str_width = strlen($str)*$font_width;
	if(!function_exists($ImageString) || $ImageString==__FUNCTION__) {
		// don't allow recursion
		$ImageString = 'ImageString';
	}
	$ImageString($image, $font, ImageSX($image)-$str_width-$r_padding, $y, $str, $col);
}

?>

ImageStringUnderlined code:
<?php
function ImageStringUnderlined($image, $font, $x, $y, $str, $col, $ImageString = 'ImageString') {
	// http://www.puremango.co.uk/2009/04/php-imagestringright-center-italic/
	
	$font_width = ImageFontWidth($font);
	$font_height = ImageFontHeight($font);
	$str_width = strlen($str)*$font_width;
	if(!function_exists($ImageString) || $ImageString==__FUNCTION__) {
		// don't allow recursion
		$ImageString = 'ImageString';
	}
	$ImageString($image, $font, $x, $y, $str, $col);
	ImageLine($image, $x, $y+$font_height, $x+$str_width, $y+$font_height, $col);
}
?>

ImageStringItalic and a dropshadow version along with usage, demo and other imageString functions at http://www.puremango.co.uk/2009/04/php-imagestringright-center-italic/
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.