비주얼스튜디오2 윈도우 Window 32bit 응용프로그램 3GB 메모리 사용 STEP 1 Window 7 , Window 10 -부팅시 환경변수 변경 1) Command Prompt 에서 BCDEDIT /Set IncreaseUserVa 3072 BCDEDIT /Remove IncreaseUserVa STEP 2 1) devenv.exe 백업 c:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe 2) Command Prompt에서 cd "c:\Program Files\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\" vcvarsx86_amd64.bat 실행 cd "c:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE" EDIT.. IT 2022. 12. 19. C# iTextSharp PDF 파일 합치기 Merge 프로젝트를 만들고 Nuget 으로 iTextSharp 을 설치 해주세요 아래코드는 PDF File1 : File1.pdf 파일과 PDF File2 : File2.pdf 파일을 합쳐서 newFile.pdf 로 출력하는 프로그램 입니다. /* 아래코드를 자신의 프로젝트에 맞게 변형해서 넣어 주세요. */ using iTextSharp.text.pdf; using System.IO; using System.Text.RegularExpressions; static void Main(string[] args) { //Pdf 합치는 함수 MergePDF(@"D:/File1.pdf", @"D:/File2.pdf" , @"D:/newFile.pdf"); } private static void MergePDF(strin.. IT 2022. 6. 28. 이전 1 다음 💲 추천 글