如何在php中设置由imagecreate(width,height)形成的图像的x和y坐标

时间:2012-09-04 19:44:44

标签: php image coordinates

我使用

在php中创建了一个示例图像

$image = imagecreate($width , $height);

在Mozilla firefox中,它在中心显示图像,而在chrome中,它显示在屏幕的左中间...

我想在屏幕的任何位置控制此图像的x和y坐标。另外,任何人都可以告诉我屏幕的尺寸是什么; i,e max(身高,宽度)...... 请告诉我,因为我无法解决此问题,谢谢。

1 个答案:

答案 0 :(得分:0)

您必须使用HTML(可能还有CSS)来控制图像的显示。

尝试这样的事情:

档案:image.html

<style>
    .top_corner_image img {
        border:0;
        margin:0;
        padding:0;
        position:absolute;
        top:0;
        left:0;
    }
</style>
<img class="top_corner_image" src="myimage.php">

档案:myimage.php

//put your PHP code to generate the image...
$image = imagecreate($width , $height);