Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How can I rotate an image?

Answer Posted / jude jeevanraj.p

Probably not something you will want to do a lot of in
ordinary day PHP use, but if you want to rotate an image
use the well-named imagerotate function.

This takes the image to rotate, the angle of rotation, and
a color to fill the blank space around the rotated image
with.

Here's an example:
<?php
$original = imagecreatefrompng("myimage.png");
$red = imageColorAllocate($original,255,0,0);
imagerotate($original,50,$red);
header("content-type:image/png");
imagepng($rotated);
imagedestroy($original);
imagedestroy($rotated);
?>

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can php run without server?

995


What is the use of magic function in php?

924


What are default session time and path?

1059


What are helpers in php?

894


Which function is used in php to check the data type of any variable?

897


What's the output of the ucwords function in this example?

986


How to remove the new line character from the end of a text line in php?

935


Which function would you use to replace a record in a database in php?

980


What is lazy loading in php?

915


Explain what are psrs? Choose 1 and briefly describe it?

889


Explain what is the function file_get_contents() usefull for?

898


What are the functions to be used to get the image's properties (size, width and height)?

940


What is php built on?

920


Tell me how to initiate a session in php?

1044


Explain which cryptographic extension provide generation and verification of digital signatures?

949