Wrox Programmer Forums
Go Back   Wrox Programmer Forums > PHP/MySQL > PHP How-To
|
PHP How-To Post your "How do I do this with PHP?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the PHP 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 December 21st, 2009, 10:30 AM
Registered User
 
Join Date: Dec 2009
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default offsetting imagecreate

hi

i would like to have 4 different graphs one after the other on the same page using imagecreate - here is my (pretty bad) attempy:

<?php header ("Content-type: image/png");
$handle = ImageCreate (1000, 200) or die ("Cannot Create image");
$bg_color = ImageColorAllocate ($handle, 255, 0, 0);
$txt_color = ImageColorAllocate ($handle, 255, 255, 255);
$line_color = ImageColorAllocate ($handle, 0, 0, 0);
ImageLine($handle, 65, 0, 130, 50, $line_color);
ImageString ($handle, 5, 5, 18, "", $txt_color);
ImagePng ($handle);
?>

<br>
<br>
<br>

<?php header ("Content-type: image/png");
$handle = ImageCreate (1000, 200) or die ("Cannot Create image");
$bg_color = ImageColorAllocate ($handle, 0, 255, 0);
$txt_color = ImageColorAllocate ($handle, 255, 255, 255);
$line_color = ImageColorAllocate ($handle, 0, 0, 0);
ImageLine($handle, 65, 0, 130, 50, $line_color);
ImageString ($handle, 5, 5, 18, "", $txt_color);
ImagePng ($handle);
?>


the problem is that the imagecreate always starts from the top left corner - how can it be offset so that it can start from a specified co-ordinate on the browser ?

cheers

Abbey





Similar Threads
Thread Thread Starter Forum Replies Last Post
Working with ImageCreate in PHP? jwang Pro PHP 4 February 24th, 2004 01:50 PM





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