Generation

generate functionThu, 06 Jul 2023

funzione che carica un immagine e all'interno della stessa scrive un testo esattamente in posizione centrale

function image_text_center($image, $text, $font, $font_size, $r, $g, $b, $alpha, $x, $y) { // Get the size of the text so we can center it $box = imageftbbox($font_size, 0, $font, $text); $textWidth = $box[2]-$box[0]; $textHeight = $box[7]-$box[1]; // Calculate coordinates of the text $x = ($width / 2) - ($textWidth / 2); $y = ($height / 2) - ($textHeight / 2); // Write text imagettftext($image, $font_size, 0, $x, $y, $color, $font, $text); }

Questions about programming?Chat with your personal AI assistant