Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

ฟังก์ชัน imageflip() ใน PHP


ฟังก์ชัน imageflip() ใช้เพื่อพลิกภาพโดยใช้โหมดที่กำหนด

ไวยากรณ์

bool imageflip(img, mode )

พารามิเตอร์

  • img :ทรัพยากรรูปภาพที่สร้างขึ้นโดยใช้ imagecreatetruecolor()

  • โหมด :โหมดพลิก ค่าที่เป็นไปได้มีดังนี้:

  • IMG_FLIP_HORIZONTAL – พลิกภาพในแนวนอน

  • IMG_FLIP_VERTICAL – พลิกภาพในแนวตั้ง

  • IMG_FLIP_BOTH – พลิกภาพทั้งในแนวนอนและแนวตั้ง

คืนสินค้า

ฟังก์ชัน imageflip() ส่งคืนค่า TRUE เมื่อสำเร็จ หรือ FALSE เมื่อล้มเหลว

ตัวอย่าง

ต่อไปนี้คือตัวอย่างการพลิกรูปภาพในแนวนอน:

<?php
   $img_file = 'https://www.tutorialspoint.com/images/tp-logo-diamond.png';
   header('Content-type: image/png');
   $img = imagecreatefrompng($img_file);
   imageflip($img, IMG_FLIP_HORIZONTAL);
   imagejpeg($img);
   imagedestroy($img);
?>

ผลลัพธ์

ต่อไปนี้เป็นผลลัพธ์:

ฟังก์ชัน imageflip() ใน PHP