Login   Register  
PHP Classes
elePHPant
Icontem

File: example1.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Adi Setiawan  >  PHP Flash SlideShow  >  example1.php  >  Download  
File: example1.php
Role: Example script
Content type: text/plain
Description: Example 1
Class: PHP Flash SlideShow
Create an image slideshow as a Flash animation
Author: By
Last change:
Date: 2004-12-28 20:09
Size: 636 bytes
 

Contents

Class file image Download
<?php
//include class file
include('class.flashslideshow.php');

/*
create new object with the following variabel
flashSlideShow($width, $height, $interval, $bgcolor)
$width, movie width in pixel
$height, movie height in pixel
$interval, interval in seconds between each images
$bgcolor, movie backgground color in hexadecimal value
*/
$movie = new flashSlideShow(3002253'#FFFFFF');


//add first image to sequence
$movie->addImage('image1.jpg');

//add second image to sequence
$movie->addImage('image2.jpg');

//save movie,
//now check file name test.swf in current directory
$movie->save('test.swf');
?>