110c110,124
< 		$pdf->MemImage($thepicture["file"],$leftmargin,$topmargin,$tempwidth);	
---
> 			$querystatement="SELECT upper(type) type FROM files WHERE id=1";
> 			$typeresult=mysql_query($querystatement,$dblink);
> 			if(!$typeresult) reportError(300,"Error Retrieving Logo Type");
> 			$picturetype=mysql_fetch_array($typeresult);
> 			
> 			// Insert the image using appropriate function based on type, if not a recognized type, skip it
> 			if ($picturetype[0]=="IMAGE/JPEG"){
> 				$logo = $thepicture[0]; 
> 				$pdf->Image('var://logo', $leftmargin,$topmargin,$tempwidth, 0, 'JPEG');
> 			}
> 			else { 
> 				if ($picturetype[0]=="IMAGE/PNG"){
> 					$pdf->MemImage($thepicture["file"],$leftmargin,$topmargin,$tempwidth);	
> 				}
> 			}

