"Photoshop" is graphic editing software developed and publishedby "Adobe Systems" that is widely used by "website designers". It is recognized by most website professionals as a unique tool for creative image making, image editing, and drawing. Each new version brings new features to assist in image editing and drawing complexity. Photoshop have several features known to everybody working with graphical application.
Adobe Photoshop is Ideal:
For Web designers
For Professional photographers
For Serious amateur photographers
For Graphic designers
For Manufacturing professionals
For Medical professionals
For Architects and engineers
For Scientific researchers
For Film, video, and multimedia professionals
For Graphic and web designers using 3D and motion
Features:
It is all about healing brush, clone stamp and a little smudge. CIPL Prefers Photoshop for designing purpose because of the following features in Photoshop.
Layers
Adjustment layers
Layer masks
Levels
Curves
Shadow/Highlight adjustment
Image Size command
Camera Raw
Image Processor script in CS2
Browse to Bridge
Layers and channels are supplemented by path and all text editing is done with vector-based tool just as you create from library of 2D vector shapes. This adds more life to your drawing. Layer styles allow you quick and simple logos with outline right gradients shadows and more.
";
if($exit == 1)
exit;
}
return $db_rec_row_array;
}
//use to insert record
function insert($query,$debug=0)
{
if(trim($query) == "")
die("Query is Empty: ".mysql_error());
/*
This is used to check that query has insert word or not
If you try to execute other types of query in that case this will give the error
*/
if(!preg_match("/^insert/i",$query))
die(" Invalid Query: ".$query." ");
$this->result = mysql_query($query,$this->links);
if(!$this->result)
die(" Result Erorr: ".mysql_error()." ".$query." ");
/*
This is used to debug the code and print the query
You have to pass 1 (one) as the second argument of the edit function
Default is $debug 0 set.
*/
if($debug == 1)
{
print "
";
exit;
}
return $this->result;
}
//use to update record
function update($query,$debug=0)
{
if(trim($query) == "")
die("Query is Empty: ".mysql_error());
/*
This is used to check that query has update word or not
If you try to execute other types of query in that case this will give the error
*/
if(!preg_match("/^update/i",$query))
die(" Invalid Query: ".$query." ");
$this->result = mysql_query($query,$this->links);
if(!$this->result)
die(" Result Erorr: ".mysql_error()." ".$query." ");
/*
This is used to debug the code and print the query
You have to pass 1 (one) as the second argument of the edit function
Default is $debug 0 set.
*/
if($debug == 1)
{
print "
";
exit;
}
return $this->result;
}
//use to insert, update, replace and delete record
function delete($query,$debug=0)
{
if(trim($query) == "")
die("Query is Empty: ".mysql_error());
/*
This is used to check that query has delete word or not
If you try to execute other types of query in that case this will give the error
*/
if(!preg_match("/^delete/i",$query))
die(" Invalid Query: ".$query." ");
$this->result = mysql_query($query,$this->links);
if(!$this->result)
die(" Result Erorr: ".mysql_error()." ".$query." ");
/*
This is used to debug the code and print the query
You have to pass 1 (one) as the second argument of the edit function
Default is $debug 0 set.
*/
if($debug == 1)
{
print "