带有 PHP GD 库的图像保存 JPG 300 DPI

image with PHP GD library save JPG 300 DPI

我正在编写将文本写入图像的简单 php 代码。我发现这段代码是完美的一个问题,它将图像保存为 72 dpi。我找到了可以更改其 DPI 但未找到的选项。如果有人有想法

      //Set the Content Type
  header('Content-type: image/jpeg');

  // Create Image From Existing File
  $jpg_image = imagecreatefromjpeg('pic.jpg');

  // Allocate A Color For The Text
  $white = imagecolorallocate($jpg_image, 255, 255, 255);

  // Set Path to Font File
  $font_path = 'arialbd.ttf';

  // Set Text to Be Printed On Image
  $text = "This is a sunset!";

  // Print Text On Image
  imagettftext($jpg_image, 25, 0, 75, 300, $white, $font_path, $text);

  // Send Image to Browser
  imagejpeg($jpg_image,'a.jpg');

  // Clear Memory
  imagedestroy($jpg_image);

尝试imageresolution()设置和获取图像的 DPI 分辨率(每英寸点数)。

注意:分辨率仅在从支持此类信息的格式(当前为 PNG 和 JPEG)读取和写入图像时用作元信息。