Wrox Programmer Forums
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 25th, 2007, 04:00 AM
Friend of Wrox
 
Join Date: Oct 2003
Posts: 479
Thanks: 0
Thanked 3 Times in 3 Posts
Send a message via MSN to surendran Send a message via Yahoo to surendran
Default rotate text inm45 degrees.

Hi Freinds,

I'm trying to rotate text in a cell 45 degrees.



surendran
(Anything is Possible)
http://ssuren.spaces.msn.com
__________________
surendran
(Anything is Possible)
http://www.suren.info
http://ssuren.spaces.msn.com
 
Old January 25th, 2007, 05:55 AM
Friend of Wrox
 
Join Date: Oct 2003
Posts: 479
Thanks: 0
Thanked 3 Times in 3 Posts
Send a message via MSN to surendran Send a message via Yahoo to surendran
Default

Hi friends,
I found a solution in php, if you want try, but you have to copy the font same folder.

    $image = imagecreate(70,30);
    $blue = imagecolorallocate($image, 141, 191, 6);
    $white = ImageColorAllocate($image, 147,13,124);
    if(!isset($_GET['size'])) $_GET['size'] = 10;
    if(!isset($_GET['text'])) $_GET['text'] = "Suren";
    imagettftext($image, $_GET['size'], 15, 10, 27, $white, "arial.ttf", $_GET['text']);
    header("content-type: image/png");
    imagepng($image);
    imagedestroy($image);


surendran
(Anything is Possible)
http://ssuren.spaces.msn.com





Similar Threads
Thread Thread Starter Forum Replies Last Post
How rotate Text in HTML Table Rahul Gupta ASP.NET 2.0 Professional 3 October 17th, 2007 11:58 PM
Rotate a report by 90 degrees csecharith Beginning VB 6 1 January 15th, 2007 02:20 PM
Rotate Text surendran Javascript How-To 3 December 18th, 2006 02:08 AM
Solved: Auto-Rotate Pictures - smartphones Mantis PHP How-To 0 April 8th, 2005 09:52 AM
rotate text 90 degrees lcsgeek Classic ASP Databases 2 September 15th, 2003 10:39 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.