answersLogoWhite

0

Depending on your OS or Linux distro, there should be a package for GD (something like GD lib)

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you get PHP codes for writing on an image?

You can use the GD extension for PHP to edit image files.


How do you make a Tracker on Club Penguin?

I personally use PHP GD Class with indexing of Penguin Client Library. But as I take it you don't know how to do any of that so just use Photoshop CS5.


Will php 4.4.7 server support php 5 files?

Yes php 4.4.7 server support php 5 files. But most of the php 5 features are not supported by php 4.4.7 version


How do you make a document in PHP about image manipulation?

I have had a lot of experience with image modification modules with PHP. In order to perform image manipulation in PHP you need an image processing module installed such as GD2 or imagemagik. GD2 comes with PHP and can be installed fairly easily if it is not already installed. You can follow the PHP GD manually for the usage of these functions.


How do you create a PHP class?

To create a PHP class it is pretty simple, I will show you how to create a very basic class in an example below. <?php // the class class myBasicClass { // a function to add 2 numbers together and return the result function add($num1, $num2) { $result = $num1 + $num2; return $result; } } // load up the class $myBasicClass = new myBasicClass; // output the result echo $myBasicClass->add(5, 10); // outputs the result 15 ?>


PHP case sensitivity refers to what?

PHP case sensitivity refers to that in coding it matters if the code is in capital letters. Case sensitivity specifically in PHP refers to variables, constants, array keys, class properties, and class constants. Some items in PHP that are not case sensitive are functions, class constructors, class methods, and keywords and constructs.


What does a PHP 5 ChangeLog do?

PHP is a scripting language this is used for web development. The PHP 5 ChangeLog is log which lists all of the fixed bugs on PHP Version 5. This can be found on the PHP website as a point of reference.


Where could one find information about how to use PHP 5?

You can find information about how to use PHP 5 on the official PHP website, PHP.net, through the PHP 5 documentation section. Additionally, online tutorials, forums, and books dedicated to PHP programming are great resources to learn how to use PHP 5 effectively.


Which PHP version does Facebook use?

Facebook uses PHP 5.


Need of PHP language?

To generate output server side from files databases etc. You can also make images for example with the GD library. The possibilities are endless.


What is the present social status of the Philippines?

The Philippines, is 12% Class ABC, 49% D and 39% E as of April 2010. Class A - Upper Class - executives, presidents, CEOs (>Php 100,000 / month) Class B - Upper Middle Class - professionals (Php 50,000-100,000 / month) Class C - Middle Class - white-collar jobs (Php 15,000-50,000 / month) Class D - Lower Middle Class - blue-collar/clerical jobs (Php,8,000-15,000 / month) Class E - Lower Class - living below the poverty line (<Php 8,000 / month)


What should you do to enable image functions in PHP?

Image creating and manipulating in PHP can be done with multiple libraries, some officially supported by PHP and some made by third parties. A common library, especially for developers new to image libraries, is the GD package. You must include the library you wish to use upon installation of PHP (if it is officially supported), or manually include the library into your scripts.