Display image from file


	UIImage *image1 = [[UIImage alloc] initWithContentsOfFile:filePath];
	if (image1)
	{
		imageView.image = image1;
		[image1 release];
	}