JasperReports Imagens HTML

ola , estou gerando alguns relatórios usando o iReport e o Jasper , tem funcionado bem , mas estou com um problema , eu gero os relatórios em pdf sem problemas , mas quando gero os de html as imagens nao aparecem , creio estar precisando setar algum parâmetro especifico do html que nao estou setando , os metodo que geram cada um sao :

[code] public void gerarRelatorioHtml(){
JRHtmlExporter jrhtml = new JRHtmlExporter();
String outFileName = “/Users/GMelo/Desktop/teste2.html”;
try {

	print = JasperFillManager.fillReport( fileName,bean.hash,jrds ); 
	fos = new FileOutputStream(outFileName);
	jrhtml.setParameter(JRHtmlExporterParameter.IS_USING_IMAGES_TO_ALIGN, Boolean.FALSE);
	jrhtml.setParameter(JRExporterParameter.OUTPUT_STREAM, fos);
	jrhtml.setParameter(JRExporterParameter.JASPER_PRINT, print);

	jrhtml.exportReport();
	


fos.close();

System.out.println("Arquivo Criado: " + outFileName); 
}
catch (JRException e) 
{ 
e.printStackTrace(); 
System.exit(1); 
} 
catch (Exception e) 
{ 
e.printStackTrace(); 
System.exit(1); 
}

}
public void gerarRelatorioPdf() {

	JRExporter jrpdf = new JRPdfExporter();
    String outFileName = "/Users/GMelo/Desktop/teste2.pdf";
	
	try {
		
		print = JasperFillManager.fillReport( fileName,bean.hash,jrds ); 
		fos = new FileOutputStream(outFileName);
		jrpdf.setParameter(JRExporterParameter.OUTPUT_STREAM, fos);
		jrpdf.setParameter(JRExporterParameter.JASPER_PRINT, print);
		jrpdf.exportReport();
		fos.close();
        

	System.out.println("Arquivo Criado: " + outFileName); 
	}
	catch (JRException e) 
	{ 
	e.printStackTrace(); 
	System.exit(1); 
	} 
	catch (Exception e) 
	{ 
	e.printStackTrace(); 
	System.exit(1); 
	}
	
}[/code]

alguma ideia ?
procurei na internet nos exemplos mas nao encontrei nada para imagens estaticas em html .

desculpa se postei no topico errado =P

Obrigado !

Qual é a referência das imagens?
Está assim:

<IMG SRC="/home/usuario/pagina/imagens/imagem.gif">

Ou está assim:

<IMG SRC="http://caminhoDaAplicacao/imagens/imagem.gif">

?