PHP -加载代码时出现白色小方块

kpbpu008  于 2023-02-28  发布在  PHP
关注(0)|答案(1)|浏览(71)
<?php
  // Set the font file and font size for the text
  $font_file = '/path/to/font.ttf';
  $font_size = 12;

  // Create an array of image filenames
  $images = array('image1.png', 'image2.png', 'image3.png', 'image4.png', 'image5.png');

  // Select a random image filename from the array
  $random_image = $images[array_rand($images)];

  // Load the image using the GD library
  $image = imagecreatefrompng($random_image);

  // Get the width and height of the image
  $width = imagesx($image);
  $height = imagesy($image);

  // Send the appropriate HTTP headers and output the image
  header('Content-Type: image/png');
  imagepng($image);

  // Free up memory
  imagedestroy($image);
?>

代码运行良好,未出现任何错误,但当我加载代码时,仅出现此白色小方块。GD已启用,但不知道如何解决此问题。

lymnna71

lymnna711#

确保您的文件存储在正确的目录中。
我尝试了这个确切的代码,用图像URL替换数组,它工作得很完美。

相关问题