我使用 php 在 php 中创建了一个示例图像
$image = imagecreate($width , $height);
在 Mozilla firefox 中,它将图像显示在中心,而在 chrome 中,它显示在屏幕的左中...
我想在屏幕上的任何位置控制此图像的 x 和 y 坐标。另外,谁能告诉我屏幕的尺寸是多少?i,e max(height, width) ...请告诉我,因为我无法解决这个问题,谢谢。
我使用 php 在 php 中创建了一个示例图像
$image = imagecreate($width , $height);
在 Mozilla firefox 中,它将图像显示在中心,而在 chrome 中,它显示在屏幕的左中...
我想在屏幕上的任何位置控制此图像的 x 和 y 坐标。另外,谁能告诉我屏幕的尺寸是多少?i,e max(height, width) ...请告诉我,因为我无法解决这个问题,谢谢。
您必须使用 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);