Login   Register  
PHP Classes
elePHPant
Icontem

File: examples/writeTexts/index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of hyyan  >  Tulip Image Processor  >  examples/writeTexts/index.php  >  Download  
File: examples/writeTexts/index.php
Role: Example script
Content type: text/plain
Description: index
Class: Tulip Image Processor
Apply different types of effects to images
Author: By
Last change:
Date: 2012-07-01 19:03
Size: 1,162 bytes
 

Contents

Class file image Download
<?php

/**
 * Require The tuliIP class
 */
require_once '../../tulipIP/tulipIP.class.php';

/**
 * Load The Image From Source File
 */
$path "../../src.jpg";
$image tulipIP::loadImage($path);

//font file in (TTF) OR (OTF) Format
$fontFile "put your font path here";

// text to be written
$text "Powered By TulipIP";

/*
 * text position one of supported tulipIP positions
 * TuliIp positions :
 * ===================
 *
 * TIP_TOP_LEFT
 * TIP_TOP_CENTER
 * TIP_TOP_RIGHT
 *
 * TIP_LEFT_CENTER
 * TIP_CENTER
 * TIP_RIGHT_CENTER
 *
 * TIP_BOTTOM_LEFT
 * TIP_BOTTOM_CENTER
 * TIP_BOTTOM_RIGHT
 */
$position TIP_BOTTOM_RIGHT;
// font size(Optional) in range(0,72) where default=20
$fontSize 20;
// font angel(Optional) in range(-360,360) where default=0
$angle 30;
// text margin (Optional) where default=0
$margin 5;
// text color(Optional) where default=black
$color tulipIP::toRGB("#fff");

tulipIP::addText($image$fontFile$text$position$margin$color$fontSize$angle);

// save the result
$dest "./";
header('Content-type:'.TIP_PNG);
tulipIP::saveImage(null$image);
tulipIP::saveImage($dest$imageTIP_JPG"Watermark");
?>