사용자 도구

사이트 도구


android:pdfdocument:pdfdocument_start
pdfdocument start

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
android:pdfdocument:pdfdocument_start [2024/12/05 21:01] 이거니맨android:pdfdocument:pdfdocument_start [2024/12/05 21:45] (현재) – [1. PDF Util Class] 이거니맨
줄 153: 줄 153:
 </resources> </resources>
 </code>  </code> 
 +
 +
 +===== 클래스화 하기 ===== 
 +
 +==== 1. PDF Util Class ====
 +
 +지금까를 정리하면 다음과 같이 텍스트를 만드는 기능들을 클래스화 할 수 있을 것이다. 
 +
 +<file kotlin PDFUtil.kt>
 +class PDFUtil constructor(val context: Context) {
 +
 +    /**Dimension For A4 Size Paper (1 inch = 72 points)**/
 +    val PDF_PAGE_WIDTH = 595 //8.26 Inch
 +    val PDF_PAGE_HEIGHT = 842 //11.69 Inch
 +
 +    /* Font Resource */
 +    val fontStrawberry = ResourcesCompat.getFont(context, R.font.goryeongstrawberry)  // Strawberry font
 +
 +
 +    // A4 Size Page Info
 +    val A4 = a4Paper()
 +
 +    // Paint object to make a Text
 +    val title: Paint = Paint()  // Title paint, Goryoengstrawberry font
 +
 +
 +    // A4 Size Paper Initializer
 +    private fun a4Paper() : PdfDocument.PageInfo {
 +
 +        // Page Information : Page's Width, Height, and PageNumber
 +        val myPageInfo: PdfDocument.PageInfo =
 +            PdfDocument.PageInfo.Builder(PDF_PAGE_WIDTH, PDF_PAGE_HEIGHT, 1).create()
 +
 +        return myPageInfo
 +    }
 +
 +    // Draw Title
 +    fun titleText(text : String, canvas: Canvas) {
 +        title.setTypeface(fontStrawberry)
 +        title.color = ContextCompat.getColor(context, R.color.orange_80)
 +        title.textSize = 16f
 +        title.textAlign = Paint.Align.CENTER
 +
 +        // Draw Text
 +        canvas.drawText(text, (canvas.width / 2).toFloat(), (canvas.height / 2).toFloat(), title)
 +
 +    }
 +
 +
 +    @Throws(IOException::class)
 +    fun savePdfFileExternalStorage(filename: String, document: PdfDocument, context : Context) {
 +
 +        try {
 +            // First, creating External Storage Directory, and a file name,
 +            // Second, write our PDF file to that location.
 +            // Third, close file
 +            val dir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)
 +            val file = File(dir, filename)
 +            val fos = FileOutputStream(file)
 +            document.writeTo(fos)
 +            fos.close()
 +
 +            // on below line we are displaying a toast message as PDF file generated..
 +            Toast.makeText(context, "PDF 파일이 다운로드 폴더에 저장되었습니다.", Toast.LENGTH_SHORT).show()
 +        } catch (e: Exception) {
 +            // below line is used
 +            // to handle error
 +            e.printStackTrace()
 +
 +            // on below line we are displaying a toast message as fail to generate PDF
 +            Toast.makeText(context, "PDF파일 작성에 실패했습니다.", Toast.LENGTH_SHORT).show()
 +        }
 +    }
 +
 +}
 +</file> 
 +
 +
 +==== 2. 유틸리티 클래스 사용하기 ====
 +
 +위에서 만들 클래스는 다음과 같이 사용할 수 있다.
 +
 +<file kotlin pdfgenerator.kt>
 +fun generatePDFStart(context: Context)
 +{
 +    // creating a PDF Document instance
 +    val pdfDocument: PdfDocument = PdfDocument()
 +
 +    // PDFUtil instance
 +    val pdfUtil = PDFUtil(context)
 +    // Page1 Start
 +    val page1: PdfDocument.Page = pdfDocument.startPage(pdfUtil.A4)
 +
 +    // creating a variable for canvas from our page of PDF.
 +    val canvas: Canvas = page1.canvas
 +
 +
 +    pdfUtil.titleText("이건 고령 딸기체 글자입니다.", canvas)
 +
 +
 +    // End of Page
 +    pdfDocument.finishPage(page1)
 +
 +
 +    // Save PDF file
 +    pdfUtil.savePdfFileExternalStorage("StartPDF.pdf", pdfDocument, context)
 +
 +    // Closing PDF Document
 +    pdfDocument.close()
 +}
 +</file>
 +
 +이렇게 하면 상당히 코드가 깔끔해진다. 
 +
 +다음번 부터는 이런 방식으로 소제목 만들기와 표 만들기를 해보자. 
android/pdfdocument/pdfdocument_start.1733400117.txt.gz · 마지막으로 수정됨: 2024/12/05 21:01 저자 이거니맨