티스토리 뷰

반응형
생성된 차트를 이미지 파일로 저장하는 방법은 아래와 같습니다.
 
JFreeChart chart = null;
 
//
 
// 차트 생성 생략
 
//
 
 
 
FileOutputStream fos = null;
 
 
try{
        fos = new FileOutputStream(new File(d:\\chart\\pie.jpeg));
 
 
       // 함수만 변경하면 gif,png ... 등등 다른 이미지 형식으로 저장 가능            
        ChartUtilities.writeChartAsJPEG(fos, chart, 300, 300);    
 
}catch(Exception ig){
        ig.printStackTrace();
        throw ig;        
}finally{
        if(fos != null) try{fos.close();}catch(Exception ig){}
}
 
반응형