[TIFF FILE TO PDF] tiff 파일을 pdf로 변환
public String convertTIFFToPDF(String ttfFilePath, String afterPath) throws Exception{ //tif 파일 주소 File tiffFile = new File(ttfFilePath); // pdf로 변환될 주소 , 변환될 파일명도 같이 붙임 // 단 폴더는 존재하지 않으면 에러 발생하니 폴더까지는 미리만들어야함 ex)file.mkdir File pdfFile = new File(afterPath); try { //import com.lowagie.text.pdf... RandomAccessFileOrArray myTiffFile = new RandomAccessFileOrArray(tiffFile.getCanonicalPath()); // F..