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

What are the Formatting and Printing Strings available in PHP?

0 Answers  


Can we use onclick in submit button?

0 Answers  


How do you use end in python?

0 Answers  


Why is php so popular?

0 Answers  


How do you parse and process html/xml in php?

0 Answers  


Why namespace is used in php?

0 Answers  


Who is the father of php and what is the current version of php and mysql?

0 Answers  


How is csrf token generated?

0 Answers  


what is the difference between mysql_fetch_array() and mysql_fetch_row()?

17 Answers   Google,


How is a session id generated?

0 Answers  


how to use between operator when retrieve from database(format-2008-jun-06)

3 Answers  


What is the use of mysql_fetch_assoc in php?

0 Answers  


Categories