사용자 도구

사이트 도구


android:pdfdocument:commandmirroring
commandmirroring

차이

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

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
android:pdfdocument:commandmirroring [2024/12/22 01:32] 이거니맨android:pdfdocument:commandmirroring [2024/12/24 19:55] (현재) 이거니맨
줄 219: 줄 219:
  
 </code> </code>
 +
 +[[android:json파싱하기|JSON 파싱]]에 대한 보다 자세한 설명은 [[android:json파싱하기|JSON 파싱하기]] 문서를 참조하라 
 +
 +
 +=== 나. JSON 스트링을 변환하기 ===
 +
 +다음과 같이 스트링을 가져와서 변환하게 할 수 있다.
 +
 +<code kotlin>
 +// 고소인, 피고소인 연락처 가져오기
 +fun getJsonContactPlaintiff(jsonObject: JSONObject) : PlaintiffContact {
 +
 +    val valueOfContact = PlaintiffContact(
 +        pName = jsonObject.optString("name", "없 음"),
 +        socialNumber = jsonObject.optString("socialNumber", "없 음"),
 +        pAddress = jsonObject.optString("address", "없 음"),
 +        pPhoneNumber = jsonObject.optString("phoneNumber", "없 음"),
 +        pPhoto = jsonObject.optString("photo", ""),
 +
 +    )
 +
 +    return valueOfContact
 +
 +}
 +
 +</code>
 +
 +==== 3. JSON 보내기 ==== 
 +
 +=== 가. 코드 ===
 +
 +다음과이 고소인, 피고소인 주소록 명단 중에서 한명의 정보를 JSON 형태로 내보낸다.
 +
 +<code kotlin>
 +            if (isRecording) {
 +
 +                val jsonContact = setJsonContactPlaintiff(it)
 +                commandList.add(COMMAND("TablePlaintiff", pageNum, index.toString(), jsonContact.toString(), currentPOS))
 +            }
 +</code>
 +
 +
 +=== 나. 전체 코드 ===
 +
 +이해를 위한 전체코드는 다음과 같다. 
 +
 +<file kotlin "tableplaintiff.kt">
 +// 표 : 고소인
 +fun tablePlaintiff() {
 +
 +    nextPage()
 +    /** 변수 **/
 +    val cellHeight = 30   // Row Height : 30
 +    val columnWidth = 60   // 내부선
 +    val secondColumn = 260 // 두번쨰 열
 +    val vcOffset = 4f //  세로 중간을 맞추기 위한 오프셋
 +
 +    plaintiffList?.forEachIndexed() { index, it ->
 +
 +        nextPage(cellHeight * 3)
 +        // 첫째 행
 +        // Rect
 +        val rect1 = Rect(currentPOS.X, currentPOS.Y, body.Width, currentPOS.Y + cellHeight)
 +        canvasList[pageNum].drawRect(rect1, linePaint)  // 첫쨰 줄
 +        val rect1head1 = Rect(currentPOS.X, currentPOS.Y, currentPOS.X + columnWidth, currentPOS.Y + cellHeight)
 +        canvasList[pageNum].drawRect(rect1head1, cellFill)  // 첫쨰 줄  첫쨰 제목
 +        val rect1head2 = Rect(currentPOS.X + secondColumn, currentPOS.Y, currentPOS.X + secondColumn + columnWidth, currentPOS.Y + cellHeight)
 +        canvasList[pageNum].drawRect(rect1head2, cellFill)  // 첫쨰 줄  둘쨰 제목
 +
 +        // Text
 +        canvasList[pageNum].drawText("이   름", rect1head1.exactCenterX(), rect1head1.exactCenterY() + vcOffset , cellHeader)
 +        canvasList[pageNum].drawText(it.pName, currentPOS.X.toFloat() + columnWidth + (secondColumn - columnWidth) / 2, currentPOS.Y.toFloat() + cellHeight / 2 + vcOffset, cellBody)
 +        canvasList[pageNum].drawText("주민번호", currentPOS.X.toFloat() + secondColumn + columnWidth / 2, currentPOS.Y.toFloat() + cellHeight / 2 + vcOffset, cellHeader)   // 2번쨰 칸
 +        canvasList[pageNum].drawText(it.socialNumber, currentPOS.X.toFloat() + secondColumn + columnWidth + (body.Width - (currentPOS.X + secondColumn + columnWidth)) / 2, currentPOS.Y.toFloat() + cellHeight / 2 + vcOffset, cellBody)
 +
 +
 +        // 둘재 행
 +        // Rect
 +        canvasList[pageNum].drawRect(currentPOS.X.toFloat(), currentPOS.Y.toFloat() + cellHeight,  body.Width.toFloat(), currentPOS.Y.toFloat() + cellHeight * 2, linePaint)  // 둘쨰 줄
 +        canvasList[pageNum].drawRect(currentPOS.X.toFloat(), currentPOS.Y.toFloat() + cellHeight,  currentPOS.X.toFloat() + columnWidth, currentPOS.Y.toFloat() + cellHeight * 2, cellFill)  // 제목박스
 +
 +        // Text
 +        canvasList[pageNum].drawText("주  소", currentPOS.X.toFloat() + columnWidth / 2, currentPOS.Y.toFloat() + cellHeight * 1 + cellHeight / 2 + vcOffset, cellHeader)
 +        canvasList[pageNum].drawText(it.pAddress, currentPOS.X.toFloat() + columnWidth + (body.Width - (currentPOS.X + columnWidth)) / 2, currentPOS.Y.toFloat() + cellHeight * 1 + cellHeight / 2 + vcOffset, cellBody)
 +
 +        // 셋쨰 행
 +        // Rect
 +        canvasList[pageNum].drawRect(currentPOS.X.toFloat(), currentPOS.Y.toFloat() + cellHeight * 2,  body.Width.toFloat(), currentPOS.Y.toFloat() + cellHeight * 3, linePaint)  // 셋쨰 줄
 +        canvasList[pageNum].drawRect(currentPOS.X.toFloat(), currentPOS.Y.toFloat() + cellHeight * 2,  currentPOS.X.toFloat() + columnWidth, currentPOS.Y.toFloat() + cellHeight * 3, cellFill)  // 제목박스
 +
 +        // Text
 +        canvasList[pageNum].drawText("연 락 처", currentPOS.X.toFloat() + columnWidth / 2, currentPOS.Y.toFloat() + cellHeight * 2 + cellHeight / 2 + vcOffset, cellHeader)    // 제목
 +        canvasList[pageNum].drawText(it.pPhoneNumber, currentPOS.X.toFloat() + columnWidth + (body.Width - (currentPOS.X + columnWidth)) / 2, currentPOS.Y.toFloat() + cellHeight * 2 + cellHeight / 2 + vcOffset, cellBody)  // 내용
 +
 +        if (isRecording) {
 +
 +            val jsonContact = setJsonContactPlaintiff(it)
 +            commandList.add(COMMAND("TablePlaintiff", pageNum, index.toString(), jsonContact.toString(), currentPOS))
 +        }
 +
 +        // 아래 여백
 +        linePlus(cellHeight * 3 + 20)
 +    }?:{
 +
 +        canvasList[pageNum].drawRect(currentPOS.X.toFloat(), currentPOS.Y.toFloat(),  body.Width.toFloat(), currentPOS.Y.toFloat() + cellHeight, linePaint)  // 첫쨰 줄
 +        canvasList[pageNum].drawText("당사자 정보가 없습니다. 당사자를 추가했는지 확인하세요!", currentPOS.X.toFloat() + body.Width / 2, currentPOS.Y.toFloat() + cellHeight / 2 + vcOffset , cellHeader)
 +
 +        if (isRecording) {
 +            commandList.add(COMMAND("NoneContact", pageNum, "", "", currentPOS))
 +        }
 +        // 아래 여백
 +        linefeed()
 +    }
 +}
 +
 +</file>
 +
 +
 +==== 4. JSON 가져오기 ====
 +
 +JSON으로 가져온 스트링 데이터를 다시 나누어서 표로 그리는건 다음과 같이 하면 된다.
 +
 +<file kotlin "tablePlaintiffget.kt">
 +fun tablePlaintiff(canvas: Canvas, pos: POS, jsonObject: String) {
 +
 +    /** 변수 **/
 +    val cellHeight = 30   // Row Height : 30
 +    val columnWidth = 60   // 내부선
 +    val secondColumn = 260 // 두번쨰 열
 +    val vcOffset = 4f //  세로 중간을 맞추기 위한 오프셋
 +
 +    val contact = getJsonContactPlaintiff(JSONObject(jsonObject))
 +
 +    // 첫째 행
 +    // Rect
 +    val rect1 = Rect(pos.X, pos.Y, body.Width, pos.Y + cellHeight)
 +    canvas.drawRect(rect1, linePaint)  // 첫쨰 줄
 +    val rect1head1 = Rect(pos.X, pos.Y, pos.X + columnWidth, pos.Y + cellHeight)
 +    canvas.drawRect(rect1head1, cellFill)  // 첫쨰 줄  첫쨰 제목
 +    val rect1head2 = Rect(pos.X + secondColumn, pos.Y, pos.X + secondColumn + columnWidth, pos.Y + cellHeight)
 +    canvas.drawRect(rect1head2, cellFill)  // 첫쨰 줄  둘쨰 제목
 +
 +    // Text
 +    canvas.drawText("이   름", rect1head1.exactCenterX(), rect1head1.exactCenterY() + vcOffset , cellHeader)
 +    canvas.drawText(contact.pName, pos.X.toFloat() + columnWidth + (secondColumn - columnWidth) / 2, pos.Y.toFloat() + cellHeight / 2 + vcOffset, cellBody)
 +    canvas.drawText("주민번호", pos.X.toFloat() + secondColumn + columnWidth / 2, pos.Y.toFloat() + cellHeight / 2 + vcOffset, cellHeader)   // 2번쨰 칸
 +    canvas.drawText(contact.socialNumber, pos.X.toFloat() + secondColumn + columnWidth + (body.Width - (pos.X + secondColumn + columnWidth)) / 2, pos.Y.toFloat() + cellHeight / 2 + vcOffset, cellBody)
 +
 +
 +    // 둘재 행
 +    // Rect
 +    canvas.drawRect(pos.X.toFloat(), pos.Y.toFloat() + cellHeight,  body.Width.toFloat(), pos.Y.toFloat() + cellHeight * 2, linePaint)  // 둘쨰 줄
 +    canvas.drawRect(pos.X.toFloat(), pos.Y.toFloat() + cellHeight,  pos.X.toFloat() + columnWidth, pos.Y.toFloat() + cellHeight * 2, cellFill)  // 제목박스
 +
 +    // Text
 +    canvas.drawText("주  소", pos.X.toFloat() + columnWidth / 2, pos.Y.toFloat() + cellHeight * 1 + cellHeight / 2 + vcOffset, cellHeader)
 +    canvas.drawText(contact.pAddress, pos.X.toFloat() + columnWidth + (body.Width - (pos.X + columnWidth)) / 2, pos.Y.toFloat() + cellHeight * 1 + cellHeight / 2 + vcOffset, cellBody)
 +
 +    // 셋쨰 행
 +    // Rect
 +    canvas.drawRect(pos.X.toFloat(), pos.Y.toFloat() + cellHeight * 2,  body.Width.toFloat(), pos.Y.toFloat() + cellHeight * 3, linePaint)  // 셋쨰 줄
 +    canvas.drawRect(pos.X.toFloat(), pos.Y.toFloat() + cellHeight * 2,  pos.X.toFloat() + columnWidth, pos.Y.toFloat() + cellHeight * 3, cellFill)  // 제목박스
 +
 +    // Text
 +    canvas.drawText("연 락 처", pos.X.toFloat() + columnWidth / 2, pos.Y.toFloat() + cellHeight * 2 + cellHeight / 2 + vcOffset, cellHeader)    // 제목
 +    canvas.drawText(contact.pPhoneNumber, pos.X.toFloat() + columnWidth + (body.Width - (pos.X + columnWidth)) / 2, pos.Y.toFloat() + cellHeight * 2 + cellHeight / 2 + vcOffset, cellBody)  // 내용
 +}
 +
 +// 명단이 없을 떄
 +fun noneContact(canvas: Canvas, pos: POS) {
 +    /** 변수 **/
 +    val cellHeight = 30   // Row Height : 30
 +    val vcOffset = 4f //  세로 중간을 맞추기 위한 오프셋
 +
 +    canvas.drawRect(pos.X.toFloat(), pos.Y.toFloat(),  body.Width.toFloat(), pos.Y.toFloat() + cellHeight, linePaint)  // 첫쨰 줄
 +    canvas.drawText("당사자 정보가 없습니다. 당사자를 추가했는지 확인하세요!", pos.X.toFloat() + body.Width / 2, pos.Y.toFloat() + cellHeight / 2 + vcOffset , cellHeader)
 +}
 +
 +</file>
 +
 +
 +===== 여러개의 정보를 스트링으로 넘기기 ===== 
 +
 +==== 1. 텍스트 합치기와 나누기 ==== 
 +
 +=== 가. 텍스트 합치기 === 
 +
 +여러 줄의 데이터를 하나의 텍스트로 합치려면 다음과 같이 하면 될 것이다. 이 때 구분자는 세미콜론(;)으로 하였다. 
 +
 +<code kotlin>
 +        var totalStr = ""
 +        bodyStr.forEach (){
 +            if (totalStr != "") totalStr += ";"
 +            totalStr += it
 +        }
 +</code>
 +
 +
 +=== 나. 텍스트 나누기 ===
 +
 +텍스트를 나누는 함수는 kotlin에서 split함수로 제공한다. 다음과 같이 하면 된다.
 +
 +<code kotlin>
 +        val wordsBits = bodyStr.split(";")
 +        val line = wordsBits.size
 +</code>
 +
 +
 +==== 2. 텍스트 합쳐서 데이터로 전송해주기 ==== 
 +
 +처음에는 다음과 같이 데이터를 뿌려준 다음 이를, command 모음에 다음과 같이 전송해준다. 
 +
 +<code kotlin>
 +    // MultiLine Table Text
 +    fun tableText(header : String, bodyStr : MutableList<String>) {
 +        /** 변수 **/
 +        val cellHeight = 20   // Row Height : 40
 +        val columnWidth = 180f   // 내부선
 +        val vcOffset = 4f //  세로 중간을 맞추기 위한 오프셋
 +        val line = bodyStr.size
 +        nextPage(cellHeight * line + 20)
 +        // Rect
 +        canvasList[pageNum].drawRect(currentPOS.X.toFloat(), currentPOS.Y.toFloat(),  body.Width.toFloat(), currentPOS.Y.toFloat() + line * cellHeight + 20, linePaint)  // 첫쨰 줄
 +        canvasList[pageNum].drawRect(currentPOS.X.toFloat(), currentPOS.Y.toFloat(),  currentPOS.X.toFloat() + columnWidth, currentPOS.Y.toFloat() + line * cellHeight + 20, linePaint)  // 제목박스
 +
 +        // Text
 +        canvasList[pageNum].drawText(header, currentPOS.X.toFloat() + columnWidth / 2, currentPOS.Y.toFloat() + (line * cellHeight + 20) / 2 + vcOffset, cellHeaderLight)
 +
 +        // 칸 내에 여러줄의 글을 쓰기
 +        for (i : Int in 0 until line ) {
 +            canvasList[pageNum].drawText(bodyStr[i], currentPOS.X.toFloat() + columnWidth + 10, currentPOS.Y.toFloat() + cellHeight * (i) + 10 + vcOffset, cellBodyLeft)
 +        }
 +
 +        var totalStr = ""
 +        bodyStr.forEach (){
 +            if (totalStr != "") totalStr += ";"
 +            totalStr += it
 +        }
 +
 +        if (isRecording) {
 +            commandList.add(COMMAND("TableTextMultiLine", pageNum, header, totalStr, currentPOS))
 +        }
 +
 +
 +        // 아래 여백
 +        totalPOS += POS(0, cellHeight * line + 20)
 +        currentPOS += POS(0, cellHeight * line + 20)
 +    }
 +</code>
 +
 +
 +==== 3. 2차 그리기에서 텍스트 나눠서 다시 그리기 ====
 +
 +이렇게 묶음으로 받은 텍스트를 나눠서 다시 뿌려주면 된다. 
 +
 +<code kotlin>
 +    // Table Text 2nd paint
 +    fun tableTextMultiLine(header : String, bodyStr : String, canvas: Canvas, pos: POS) {
 +        /** 변수 **/
 +        val cellHeight = 20   // Row Height : 40
 +        val columnWidth = 180f   // 내부선
 +        val vcOffset = 4f //  세로 중간을 맞추기 위한 오프셋
 +
 +        val wordsBits = bodyStr.split(";")
 +        val line = wordsBits.size
 +
 +        // Rect
 +        canvas.drawRect(pos.X.toFloat(), pos.Y.toFloat(),  body.Width.toFloat(), pos.Y.toFloat() + line * cellHeight + 20, linePaint)  // 첫쨰 줄
 +        canvas.drawRect(pos.X.toFloat(), pos.Y.toFloat(),  pos.X.toFloat() + columnWidth, pos.Y.toFloat() + line * cellHeight + 20, linePaint)  // 제목박스
 +
 +        // Text
 +        canvas.drawText(header, pos.X.toFloat() + columnWidth / 2, pos.Y.toFloat() + (line * cellHeight + 20) / 2 + vcOffset, cellHeaderLight)
 +
 +        // 칸 내에 여러줄의 글을 쓰기
 +        for (i : Int in 0 until line ) {
 +            canvas.drawText(wordsBits[i], pos.X.toFloat() + columnWidth + 10, pos.Y.toFloat() + cellHeight * (i) + 20 + vcOffset, cellBodyLeft)
 +        }
 +
 +    }
 +</code>
 +
 +=====  최종 결과물 ===== 
 +
 +이렇게 PDF 2차로 그리면 본문과 머릿말 꼬릿말을 모두 벡터형식으로 그릴 수가 있다.
 +
 +최종 결과물은 다음과 같다. 실제 PDF로 파일을 다운 받아 보면, 스케일을 키워도 글자가 깨지지 않고 자연스럽게 크기가 커지는 것을 볼 수 있다. 
 +
 +^  벡터로 저장된 PDF 문서 ^^
 +|  {{android:pdfdocument:간이고소장_모욕_20241224_241224_195111_1.jpg?400|vector1}}  |  {{android:pdfdocument:간이고소장_모욕_20241224_241224_195111_2.jpg?400|vector2}}  |
android/pdfdocument/commandmirroring.1734798744.txt.gz · 마지막으로 수정됨: 2024/12/22 01:32 저자 이거니맨