Programming303 curl POST , UTF-8 형식으로 URL Encode 하여 호출 진행 방법 curl POST , utf-8 형식으로 URL Encode 하여 호출 진행 방법 입니다. UTF-8 형식으로 인코딩하려면 Content-Type에 charset=UTF-8 이 추가되어야 정상적으로 처리 되었습니다.. Encode 할 문자열의 경우 --data-urlencode 를 앞에 명시 해주어 호출 하였습니다 ex) --data-urlencode "filepath=가나다라마바/테스트" curl -X POST "Content-Type:application/x-www-form-urlencoded;charset=UTF-8" -d "systemID=stream" --data-urlencode "filepath=가나다라마바/테스트" https://localhost:58888 -i 2024. 7. 8. [MFC] PRINTER_INFO_4를 이용한 프린터 설치 여부 체크 진행 예제 [MFC] PRINTER_INFO_4를 이용한 프린터 설치 여부 체크 진행 예제 입니다.#include void CPrinterInfoMFCDlg::CheckPrinter() { PRINTER_INFO_4* pPrinterInfo4; DWORD dwNeeded; DWORD dwDrvRet; BOOL bRet = FALSE; wchar_t lpTemp[MAX_PATH]; wchar_t lpPrinterName[MAX_PATH] = L"L3150 Series(네트워크)"; EnumPrinters(PRINTER_ENUM_LOCAL, NULL, 4, NULL, 0, &dwNeeded, &dwDrvRet); if (dwNeeded == 0) { m_edit1.SetWindowText(L"프린터가 없습니다.").. 2024. 6. 28. PdfSharp을 이용한 Tiff To Pdf 변환 예제 PdfSharp을 이용한 Tiff To Pdf 변환 예제 입니다. PdfSharp 은 MIT Licence로 opensource로 알고 있습니다.출처 : https://www.pdfsharp.net/Licensing.ashx?AspxAutoDetectCookieSupport=1 Licensing - PDFsharp & MigraDocPDFsharp and MigraDoc Foundation are published under the MIT License. See the PDFsharp License. See the MigraDoc Foundation License. PDFsharp and MigraDoc Foundation are Open Source and free to useCopy, modify a.. 2024. 6. 16. BitMiracle.Docotic.Pdf를 이용한 Tiff To Pdf 변환 예제 BitMiracle.Docotic.Pdf를 이용한 Tiff To Pdf 변환 예제입니다. BitMiracle.Docotic.Pdf 는 유료입니다. , 31일 동안의 무료 라이선스를 받을 수 있더라구요 , 라이선스를 등록 하지 않으면 변환 시마다 왼쪽 상단에 메시지가 표시 됩니다. 출처 : https://bitmiracle.com/pdf-library/ C# PDF library | Docotic.Pdf for .NETPDF library for C# and VB.NET Docotic.Pdf is a high-performance C# PDF library for .NET. You can use it to create, read, and edit PDF documents in .NET Core, ASP... 2024. 6. 16. 이전 1 2 3 4 5 6 7 8 ··· 76 다음