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?



How can I rotate an image? ..

Answer / 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

More PHP Interview Questions

How to protect special characters in query string?

0 Answers  


What is the integer?

0 Answers  


What is difference between include and include_once in php?

0 Answers  


What is a php session?

0 Answers  


What is the use of limit in mysql?

0 Answers  


What is php session and how it works?

0 Answers  


What is php dependency injection?

0 Answers  


How to redirect https to http url and vice versa in .htaccess?

0 Answers  


Tell me what is the definition of a session?

0 Answers  


What is the difference between get and post method in php?

0 Answers  


What is php rest api?

0 Answers  


Explain Traits in PHP?

0 Answers  


Categories