분류 전체보기75 한석원 모의고사 풀이. 2022. 6. 4. 함수 int copyDocumentData(TPtxPdf_Document* pInDoc, TPtxPdf_Document* pOutDoc) int copyDocumentData(TPtxPdf_Document* pInDoc, TPtxPdf_Document* pOutDoc) { TPtxPdf_FileReferenceList* pInFileRefList; TPtxPdf_FileReferenceList* pOutFileRefList; // Output intent if (PtxPdf_Document_GetOutputIntent(pInDoc) != NULL) if (PtxPdf_Document_SetOutputIntent(pOutDoc, PtxPdfContent_IccbBasedColorSpace_Copy(pOutDoc, PtxPdf_Document_GetOutputIntent(pInDoc))) == FALSE) return FALSE; // Met.. 2022. 6. 1. PDFTOOLBOX_ADDSTAMP_C를 빌드하기 위한 CMakeLists.txt 파일 cmake_minimum_required(VERSION 3.16) project(pdftoolboxaddstamp_sample LANGUAGES C) set( PRODUCT_SRC pdftoolboxaddstamp.c ) add_executable(pdftoolboxaddstamp ${PRODUCT_SRC}) if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") set(API_LIB $CMAKE_SOURCE_DIR}/lib/${CMAKE_VS_PLATFORM_NAME}/PdfToolbox.lib ) add_custom_command(TARGET pdftoolboxaddstamp POST_BUILD COMMAND $}CMAKE_COMMAND} -E copy_if_different.. 2022. 5. 29. [Powershell] Wind32_LogicalDisk Get-CimInstance -Class Win32_LogicalDisk | Select-Object -Property Name, @{ label='FreeSpace' expression={($_.FreeSpace/1GB).ToString('F2')} } Name FreeSpace ---- --------- C: 67.40 D: 72.14 2022. 5. 29. 이전 1 ··· 4 5 6 7 8 9 10 ··· 19 다음