|
|
@ -156,7 +156,7 @@ public class PDFPrintUtil extends PrintUtil {
|
|
|
|
contentStream.endText();
|
|
|
|
contentStream.endText();
|
|
|
|
|
|
|
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
} catch (IOException e) {
|
|
|
|
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다.");
|
|
|
|
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다."+e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -237,7 +237,8 @@ public class PDFPrintUtil extends PrintUtil {
|
|
|
|
contentStream.drawImage(image, xyAbsolute[0], xyAbsolute[1]-size[1], size[0], size[1]);
|
|
|
|
contentStream.drawImage(image, xyAbsolute[0], xyAbsolute[1]-size[1], size[0], size[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
} catch (IOException e) {
|
|
|
|
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다.");
|
|
|
|
e.printStackTrace();
|
|
|
|
|
|
|
|
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다."+e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -411,7 +412,8 @@ public class PDFPrintUtil extends PrintUtil {
|
|
|
|
contentStream.stroke();
|
|
|
|
contentStream.stroke();
|
|
|
|
contentStream.setLineDashPattern(new float[]{}, 0);
|
|
|
|
contentStream.setLineDashPattern(new float[]{}, 0);
|
|
|
|
} catch (IOException e) {
|
|
|
|
} catch (IOException e) {
|
|
|
|
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다.");
|
|
|
|
e.printStackTrace();
|
|
|
|
|
|
|
|
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다."+e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -506,7 +508,8 @@ public class PDFPrintUtil extends PrintUtil {
|
|
|
|
);
|
|
|
|
);
|
|
|
|
return fontMap;
|
|
|
|
return fontMap;
|
|
|
|
} catch (IOException e) {
|
|
|
|
} catch (IOException e) {
|
|
|
|
throw new RuntimeException("글꼴 로드 오류");
|
|
|
|
e.printStackTrace();
|
|
|
|
|
|
|
|
throw new RuntimeException("글꼴 로드 오류"+e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|