Jump to content

Search the Community

Showing results for tags 'write text over images'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to PHP Freaks
    • Announcements
    • Introductions
  • PHP Coding
    • PHP Coding Help
    • Regex Help
    • Third Party Scripts
    • FAQ/Code Snippet Repository
  • SQL / Database
    • MySQL Help
    • PostgreSQL
    • Microsoft SQL - MSSQL
    • Other RDBMS and SQL dialects
  • Client Side
    • HTML Help
    • CSS Help
    • Javascript Help
    • Other
  • Applications and Frameworks
    • Applications
    • Frameworks
    • Other Libraries
  • Web Server Administration
    • PHP Installation and Configuration
    • Linux
    • Apache HTTP Server
    • Microsoft IIS
    • Other Web Server Software
  • Other
    • Application Design
    • Other Programming Languages
    • Editor Help (PhpStorm, VS Code, etc)
    • Website Critique
    • Beta Test Your Stuff!
  • Freelance, Contracts, Employment, etc.
    • Services Offered
    • Job Offerings
  • General Discussion
    • PHPFreaks.com Website Feedback
    • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Age


Donation Link

Found 1 result

  1. hi everyone, i need help to make this script work. got files from http://alvarotrigo.com/blog/using-php-gd-library-to-write-text-over-images-using-truetype-fonts/ the demo is working but mine is not here is my writingOverImage.php file (other files same https://github.com/alvarotrigo/PHP-Backend/tree/master/textPainter) full my script here https://www.dropbox.com/s/vpnup95p572s1s6/textPainter.zip?dl=0 thank you. <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Floating window with tabs</title> <style> /* This defines the workspace where i place the demo. */ #container { text-align: left; background: #FFF; width: 865px; margin: 20px auto; padding: 20px; border-left: 1px solid #CCC; border-right: 1px solid #CCC; -moz-box-shadow: 0px 0px 10px #BBB; -webkit-box-shadow: 0px 0px 10px #BBB; box-shadow: 0px 0px 10px #BBB; } </style> </head> <body> <div id="container"> <?php if($_POST["sending"]=="yes"){ if(strlen($_POST["text"]<50)){ echo ' <img id="imgFinal" src="writingOverImage.php?size=50&text='.$_POST["text"].'" /> <img id="imgFinal" src="writingOverImage.php?x=right&y=center&size=30&r=74&g=50&b=170&text='.$_POST["text"].'" /> <img id="imgFinal" src="writingOverImage.php?x=left&y=bottom&size=90&text='.$_POST["text"].'" /> '; } else{ echo "The text is too large for my demo!! "; } } else{ echo ' <img id="imgFinal" src="writingOverImage.php?size=50&text=Hello world!!" /> '; } ?> <form name="formulario" action="" method="post" class="contactoFormulario"> <div class="caja"><input type="text" name="text" />Text you want to write over the image</div> <button class="botonFormulario" type="submit" name="Submit" value="Enviar" />Generate image</button> <input type="hidden" name="sending" value="yes" /> </form> </div> </body> </html> <?php require_once 'class.textPainter.php'; $x = $_GET["x"]; $y = $_GET["y"]; $R = $_GET["r"]; $G = $_GET["g"]; $B = $_GET["b"]; $size = $_GET["size"]; $text = $_GET["text"]; $img = new textPainter('./imgs/writingOverImage.jpg', $text, './Franklin.ttf', $size); if(!empty($x) && !empty($y)){ $img->setPosition($x, $y); } if(!empty($R) && !empty($G) && !empty($B)){ $img->setTextColor($R,$G,$B); } $img->show(); ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.