Image Generator PHP

carlos0410

New Member
Messages
4
Reaction score
0
Points
0
I know I can generate images using PHP, can someone tell the functions to do that, ummm I guess one is imagecreatefrompng(), which are the rest?
 

AutoItKing

New Member
Messages
32
Reaction score
0
Points
0
PHP's documentation has a great page on this. You can find it here: http://us2.php.net/manual/en/ref.image.php

Here's a snapshot of what can be found:
# gd_info — Retrieve information about the currently installed GD library
# getimagesize — Get the size of an image
# image_type_to_extension — Get file extension for image type
# image_type_to_mime_type — Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype
# image2wbmp — Output image to browser or file
# imagealphablending — Set the blending mode for an image
# imageantialias — Should antialias functions be used or not
# imagearc — Draws an arc
# imagechar — Draw a character horizontally
# imagecharup — Draw a character vertically
# imagecolorallocate — Allocate a color for an image
# imagecolorallocatealpha — Allocate a color for an image
 
Last edited:
Top