Crop Image Like Orkut

Crop Image Like Orkut

Posted by Sajith M.R in Downloads, php, php source code on 05. Jun, 2008 | 15 Comments

Online Photoshop in PHP (Series Part 4) >>

Today we will discuss about cropping of images using php and gd library.
Look at the simple example here:
http://www.sajithmr.com/photoshop-tuts/crop/simplecrop.php

$x1 = $_GET['x1'];
$y1 = $_GET['y1'];

$x2 = $_GET['x2'];
$y2 = $_GET['y2'];

$image_object = imagecreatefromjpeg(’hari.jpg’);
$image_cropped = Crop($image_object,$x1, $y1, $x2,$y2);
$temp_path = rand(1,99999).”hari.jpg”;
imagejpeg( $image_cropped,$temp_path);

header(’Location: simplecrop.php?img=’.$temp_path );

?>
Here the Crop function is doing [...]

Online Photoshop in PHP (Series Part 1)

Online Photoshop in PHP (Series Part 1)

Posted by Sajith M.R in php, php source code on 20. May, 2008 | 6 Comments

Introduction >>

As i announced in my birthday post: celebrating-1st-year-of-sajithmr.com , i am starting my post series How to make Photoshop Express in PHP
Before we starting the step by step procedure, have a look at : http://www.sajithmr.com/photoshop/index.php

This is a basic version of online photo editing tool.
You can either upload a photo to this tool [...]