|
|
|
@ -346,7 +346,6 @@ public class PDFWriter {
|
|
|
|
|
result.put("file", new File(resultFilePath));
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
throw new RuntimeException("출력오류."+e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -562,7 +561,6 @@ public class PDFWriter {
|
|
|
|
|
contentStream.drawImage(image, xyAbsolute[0], xyAbsolute[1]-size[1], size[0], size[1]);
|
|
|
|
|
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다."+e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -737,7 +735,6 @@ public class PDFWriter {
|
|
|
|
|
contentStream.stroke();
|
|
|
|
|
contentStream.setLineDashPattern(new float[]{}, 0);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다."+e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -832,7 +829,6 @@ public class PDFWriter {
|
|
|
|
|
);
|
|
|
|
|
return fontMap;
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
throw new RuntimeException("글꼴 로드 오류"+e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|