what are in image creating functions in php

Answers were Sorted based on User's Feedback



what are in image creating functions in php..

Answer / harsh

GD library

Is This Answer Correct ?    10 Yes 2 No

what are in image creating functions in php..

Answer / guest

yes

Is This Answer Correct ?    4 Yes 2 No

what are in image creating functions in php..

Answer / yukti vig

extension=php_gd2.dll

you need to open an extension for gdlibrary in the php.ini
file. and then use simple image functions as suggested by
Munesh

Is This Answer Correct ?    2 Yes 0 No

what are in image creating functions in php..

Answer / sanjeev kumar

image creating functions

dir()

Example :-

<?php
//Open images directory
$dir = dir("images");//List files in images directory
while (($file = $dir->read()) !== false)
{
echo "filename: " . $file . "<br />";
}$dir->close();
?>

Is This Answer Correct ?    3 Yes 1 No

what are in image creating functions in php..

Answer / munesh singh tomar

imagecreate(W,H)

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More PHP Interview Questions

How would you determine the size of a file in php?

0 Answers  


What is php how it works?

0 Answers  


What types of loops exist in php?

0 Answers  


What is the use of trim in php?

0 Answers  


What is the exact Diff. between include_once() and require_once() in PHP?

12 Answers  


Is php a float?

0 Answers  


I just installed php 5.3.1 in my linux server and now my old work which i used to write with tags is not working at all.. Please help me out.. How can i resolve this??

1 Answers  


What is the importance of php?

0 Answers  


what is the difference between php and my sql

4 Answers  


What is a base url?

0 Answers  


Do you know what is php?

0 Answers  


How to send a cookie to the browser?

0 Answers  


Categories