@AlecRust विचार के आधार पर, मैंने png पाठ सेवा का कार्यान्वयन किया।
डेमो यहाँ है:
http://lingtalfi.com/services/pngtext?color=cc0000&size=10&text=Hello%20World
चार पैरामीटर हैं:
- पाठ: प्रदर्शित करने के लिए स्ट्रिंग
- फ़ॉन्ट: उपयोग नहीं है क्योंकि मेरे पास केवल एरियल है। वैसे भी इस डेमो पर।
- fontSize: एक पूर्णांक (12 में चूक)
- रंग: एक 6 वर्ण हेक्साडेसिमल कोड
कृपया इस सेवा का सीधे उपयोग न करें (परीक्षण को छोड़कर), लेकिन मेरे द्वारा बनाई गई कक्षा का उपयोग करें जो सेवा प्रदान करती है:
https://github.com/lingtalfi/WebBox/blob/master/Image/PngTextUtil.php
class PngTextUtil
{
/**
* Displays a png text.
*
* Note: this method is meant to be used as a webservice.
*
* Options:
* ------------
* - font: string = arial/Arial.ttf
* The font to use.
* If the path starts with a slash, it's an absolute path to the font file.
* Else if the path doesn't start with a slash, it's a relative path to the font directory provided
* by this class (the WebBox/assets/fonts directory in this repository).
* - fontSize: int = 12
* The font size.
* - color: string = 000000
* The color of the text in hexadecimal format (6 chars).
* This can optionally be prefixed with a pound symbol (#).
*
*
*
*
*
*
* @param string $text
* @param array $options
* @throws \Bat\Exception\BatException
* @throws WebBoxException
*/
public static function displayPngText(string $text, array $options = []): void
{
if (false === extension_loaded("gd")) {
throw new WebBoxException("The gd extension is not loaded!");
}
header("Content-type: image/png");
$font = $options['font'] ?? "arial/Arial.ttf";
$fontsize = $options['fontSize'] ?? 12;
$hexColor = $options['color'] ?? "000000";
if ('/' !== substr($font, 0, 1)) {
$fontDir = __DIR__ . "/../assets/fonts";
$font = $fontDir . "/" . $font;
}
$rgbColors = ConvertTool::convertHexColorToRgb($hexColor);
//--------------------------------------------
// GET THE TEXT BOX DIMENSIONS
//--------------------------------------------
$charWidth = $fontsize;
$charFactor = 1;
$textLen = mb_strlen($text);
$imageWidth = $textLen * $charWidth * $charFactor;
$imageHeight = $fontsize;
$logoimg = imagecreatetruecolor($imageWidth, $imageHeight);
imagealphablending($logoimg, false);
imagesavealpha($logoimg, true);
$col = imagecolorallocatealpha($logoimg, 255, 255, 255, 127);
imagefill($logoimg, 0, 0, $col);
$white = imagecolorallocate($logoimg, $rgbColors[0], $rgbColors[1], $rgbColors[2]); //for font color
$x = 0;
$y = $fontsize;
$angle = 0;
$bbox = imagettftext($logoimg, $fontsize, $angle, $x, $y, $white, $font, $text); //fill text in your image
$boxWidth = $bbox[4] - $bbox[0];
$boxHeight = $bbox[7] - $bbox[1];
imagedestroy($logoimg);
//--------------------------------------------
// CREATE THE PNG
//--------------------------------------------
$imageWidth = abs($boxWidth);
$imageHeight = abs($boxHeight);
$logoimg = imagecreatetruecolor($imageWidth, $imageHeight);
imagealphablending($logoimg, false);
imagesavealpha($logoimg, true);
$col = imagecolorallocatealpha($logoimg, 255, 255, 255, 127);
imagefill($logoimg, 0, 0, $col);
$white = imagecolorallocate($logoimg, $rgbColors[0], $rgbColors[1], $rgbColors[2]); //for font color
$x = 0;
$y = $fontsize;
$angle = 0;
imagettftext($logoimg, $fontsize, $angle, $x, $y, $white, $font, $text); //fill text in your image
imagepng($logoimg); //save your image at new location $target
imagedestroy($logoimg);
}
}
नोट: यदि आप ब्रह्मांड ढांचे का उपयोग नहीं करते हैं , तो आपको इस लाइन को बदलना होगा:
$rgbColors = ConvertTool::convertHexColorToRgb($hexColor);
इस कोड के साथ:
$rgbColors = sscanf($hexColor, "%02x%02x%02x");
जिस स्थिति में आपका हेक्स रंग 6 वर्ण लंबा होना चाहिए (उसके सामने हैश चिन्ह (#) न रखें)।
नोट: अंत में, मैंने इस सेवा का उपयोग नहीं किया, क्योंकि मैंने पाया कि फ़ॉन्ट बदसूरत और बदतर था: पाठ का चयन करना संभव नहीं था। लेकिन इस चर्चा के लिए मुझे लगा कि यह कोड साझा करने लायक था ...