Login   Register  
PHP Classes
elePHPant
Icontem

File: documentation_file

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Dyego Fernandes  >  PhpSecureImageGen  >  documentation_file  >  Download  
File: documentation_file
Role: Documentation
Content type: text/plain
Description: file of documentation, in english, spanish and portuguese
Class: PhpSecureImageGen
Output images with text for CAPTCHA authentication
Author: By
Last change:
Date: 2005-08-01 05:10
Size: 5,252 bytes
 

Contents

Class file image Download
<?
#########################################################################
#### @Autor:  Dyego Fernandes de Sousa                               ####
#### @E-mail: dyegofern@hotmail.com                                  ####
#### @Título: Gerador de Imagens Seguras {Generator of Secure Images}####
#########################################################################

/* PHPSecureImageGen*/
/* Documentation - Documentación - Documentação*/
/*
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!                                    PLEASE HELP ME!!!                                   !
!   I find french,germany,russians,egypts and italians users to translate it to your     !
!                                        languages.                                      !
!         My e-mail to receive your contribuition is dyegofern@hotmail.com               !
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 
		Avaiable Languages - Linguagens Disponíbiles - Linguagens Disponíveis
                            English - Español - Português
-------------------------------------------------------------------------------------------------------
functions:  |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-------------------------------------------------------------------------------------------------------
	->cria_texto()
		ENGLISH		: 
				-SUMARY			:
						This method is called to create the random text that will be displayed into
						the image;
				-ACTION			:
						To Make the random text;
				-APPLICATION	:
						When do you call this method it process the array of characteres, perform some
						mathematical operations and return it as text;
		ESPAÑOL		: 
				-RESUMÉN		:
						Este metodo e llamado para hacer uno texto randómico qué será mostrado dientro de la
						imágen;
				-ACIÓN			:
						Construir uno texto randómico;
				-APLICACIÓN		:
						Cuándo usted llama este metodo ello processa un array de caracteres, calcula algunas
						expressiones aritméticas y returna como un texto;
		PORTUGUÊS	: 
				-RESUMO			:
						Este método é chamado para gerar um texto randômico que será mostrado dentro da imagem;
				-AÇÃO			:
						Construir um texto randômico;
				-APLICAÇÃO		:
						Quando você chama este método ele processa um array de caracteres, faz algumas operações
						matemáticas e retorna tudo isso como um texto;
	->CriaImagem($texto)
		ENGLISH		: 
				-SUMARY			:
						This method receive the parameter $texto (that in english is sinonymous with text),
						this variable is the return of the cria_texto() method. After, create the image pointer
						with your dimensions and properties;
				-ACTION			:
						To Create the image;
				-APPLICATION	:
						The image is created, and his text is the parameter $texto, after perform all operations
						the image pointer is returned;
		ESPAÑOL		: 
				-RESUMÉN		:
						Este metodo recebe la variable $texto como parametro, $texto es lo returno de lo metodo
						cria_texto(). Despues, cria la imágen con su dimensiones y propriedades;
				-ACIÓN			:
						Criar la imágen;
				-APLICACIÓN		:
						La imágen es criada, y su texto será lo parametro $texto. Despues de hacer todas operaciones
						la imágen es returnada;
		PORTUGUÊS	: 
				-RESUMO			:
						Este método recebe a variável $texto como parâmetro, $texto é o retorno do método cria_texto().
						Após isto, cria a imagen com suas dimensões e propriedades;
				-AÇÃO			:
						Criar a imagem;
				-APLICAÇÃO		:
						A imagem é criada e seu texto será o parâmetro $texto. Depois de realizar todas as operações o
						ponteiro da imagem é retornado;
	->MostraImagem()
		ENGLISH		: 
				-SUMARY			:
						If this method was writed in english will be: ShowImage(). This method shows the image on the
						screen;
				-ACTION			:
						To Show the image;
				-APPLICATION	:
						This image change the header of the page and shows the image on screen;
		ESPAÑOL		: 
				-RESUMÉN		:
						Este metodo mostra la imágen gerada na tela;
				-ACIÓN			:
						Mostrar la imágen;
				-APLICACIÓN		:
						Cambía lo header de la pagina y mostra la imagen en la tela;
		PORTUGUÊS	: 
				-RESUMO			:
						Este método mostra a imagem gerada na tela;
				-AÇÃO			:
						Mostrar a imagem;
				-APLICAÇÃO		:
						Modifica o cabeçalho (header) da página e mostra a imagem na tela;
	->SecureImage($texto='')
		ENGLISH		: 
				-SUMARY			:
						This Method is the constructor;
				-ACTION			:
						To Inicialize the class variables, makes the image and shows it;
				-APPLICATION	:
						It Constructs the class.
		ESPAÑOL		: 
				-RESUMÉN		:
						Este es lo metodo construtor;
				-ACIÓN			:
						Inicializar las variables, criar la imágen y mostra lo resultado en la tela;
				-APLICACIÓN		:
						Este metodo constroi la classe;
		PORTUGUÊS	: 
				-RESUMO			:
						Este é o método construtor;
				-AÇÃO			:
						Inicializar as variáveis, criar a imagem e mostrar o resultado na tela
				-APLICAÇÃO		:
						Este método Constrói a classe;
*/
?>