Logo
제품 지원 연락처 회사 소개
arrow1 File Converters
arrow1 TIFF and PDF apps
arrow1 Forensic
arrow1 Freeware

서버용 Excel 변환기

웹 서버를 통해 XLS, XLSX, ODS, XML 스프레드시트를 일괄 변환합니다.

ActiveX를 사용한 서버용 엑셀 변환기

Windows
2000/2003/Vista
7/8/10/11
and
2012/2016/2019/2022 Server
and
Docker/Citrix/Wine

Total Excel Converter X는 XLSX, XLS, XLSM, ODS, CSV, XML 스프레드시트를 PDF, JSON, XML, HTML, DBF, SQL을 비롯한 15가지 이상의 형식으로 변환하는 서버용 SDK입니다 — 서버에 Microsoft Excel이나 Office 런타임을 설치하지 않고도 작동합니다. 헤드리스로 실행됩니다: GUI 없음, 대화상자 없음, 팝업 없음. Total Excel Converter X는 명령줄 바이너리와 ActiveX/COM 인터페이스를 함께 제공하므로 ASP, PHP, .NET, Python, Ruby, Java 및 COM을 지원하는 모든 백엔드에 손쉽게 통합됩니다. 지원되는 입력 형식 전체 목록:

  • Microsoft Excel 형식 (XLS, XLSX, XLSM)
  • OpenDocument Spreadsheet (ODS)
  • 쉼표로 구분된 값 (CSV, TSV, 사용자 지정 구분자 포함)
  • SpreadsheetML (XML)
  • Lotus 1-2-3 워크시트 (WK2, WKS)
  • dBase 데이터베이스 파일 (DBF)
  • Data Interchange Format (DIF)
  • TeX 표 (TEX)
Total Excel Converter X는 모든 스프레드시트를 PDF(비밀번호 보호, AES-256 암호화, 권한별 플래그 지원), HTML(반응형 또는 엄격 모드), DOC/DOCX, JSON, XML, 임의 구분자 CSV, DBF, SQL, LaTeX 또는 이미지(JPG, TIFF, PNG)로 변환할 수 있습니다. 시트별 선택, 시트 결합, 여러 워크북을 단일 PDF로 일괄 결합, 재귀적 폴더 탐색, Total Folder Monitor를 통한 핫 폴더 감시, 무인 실행을 위한 큐 파일(-list) 처리를 지원합니다.

이 프로그램은 워크북을 직접 읽습니다 — Excel 자동화 없이, Open XML SDK 의존성 없이, 관리해야 할 헤드리스 Office 인스턴스도 없이.

높은 변환 속도와 일괄 변환으로 단순하고 지루하지 않은 작업이 가능합니다. 무료로 사용해 보세요(30일 평가판, 제한 없음). 그만한 가치가 있다는 것을 직접 확인하실 수 있습니다.

현재 지원되는 파일 형식 변환 일부:

    XLSX
  • XLSX → PDF (암호화 포함)
  • XLSX → CSV (임의 구분자)
  • XLSX → JSON
  • XLSX → DBF
    XLS
  • XLS → PDF
  • XLS → HTML
  • XLS → XML
  • XLS → DOC / DOCX
    ODS / CSV
  • ODS → XLSX
  • CSV → XLSX
  • CSV → PDF
지금 다운로드!

(30일 무료 평가판 포함)

라이선스 구입

(만 $550.00)



Total Excel Converter X 예제

Total Excel Converter X와 .NET으로 Excel 파일 변환하기


string src  = @"C:\test\Source.xlsx";
string dest = @"C:\test\Dest.pdf";

var cnv = new ExcelConverterX();
cnv.Convert(src, dest, "-cPDF -log c:\\test\\Excel.log");

if (!string.IsNullOrEmpty(cnv.ErrorMessage))
    throw new Exception(cnv.ErrorMessage);

Total Excel Converter X로 웹 서버에서 Excel 파일 변환하기

public static class Function1
    {
        [FunctionName("Function1")]
        public static async Task Run(
            [HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
            ILogger log)
        {
            StringBuilder sbLogs = new StringBuilder();
            sbLogs.AppendLine("started...");
            try
            {
                ProcessStartInfo startInfo = new ProcessStartInfo();
                startInfo.CreateNoWindow = true;
                startInfo.UseShellExecute = false;
                var assemblyDirectoryPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
                assemblyDirectoryPath = assemblyDirectoryPath.Substring(0, assemblyDirectoryPath.Length - 4);

                var executablePath = $@"{assemblyDirectoryPath}\Converter\ExcelConverterX.exe";
                sbLogs.AppendLine(executablePath + "...");
                var srcPath = $@"{assemblyDirectoryPath}\src\sample.xlsx";
                var outPath = Path.GetTempFileName() + ".pdf";
                startInfo.FileName = executablePath;

                if (File.Exists(outPath))
                {
                    File.Delete(outPath);
                }

                if (File.Exists(executablePath) && File.Exists(srcPath))
                {
                    sbLogs.AppendLine("files exists...");
                }
                else
                    sbLogs.AppendLine("EXE & source files NOT exists...");
                startInfo.WindowStyle = ProcessWindowStyle.Hidden;
                startInfo.Arguments = $"{srcPath} {outPath}";
                using (Process exeProcess = Process.Start(startInfo))
                {
                    sbLogs.AppendLine($"wait...{DateTime.Now.ToString()}");
                    exeProcess.WaitForExit();
                    sbLogs.AppendLine($"complete...{DateTime.Now.ToString()}");
                }

                int sleepCounter = 10;

                while(!File.Exists(outPath) && sleepCounter > 0)
                {
                    System.Threading.Thread.Sleep(1000);
                    sbLogs.AppendLine("sleep...");
                    sleepCounter--;
                }
                if (File.Exists(outPath))
                    sbLogs.AppendLine("Conversion complete successfully.");
            }
            catch (Exception ex)
            {
                sbLogs.AppendLine(ex.ToString());
            }

            return new OkObjectResult(sbLogs);
        }
    }
Azure Functions에 대한 자세한 정보.

Total Excel Converter X로 웹 서버에서 Excel 파일 변환하기

dim C
Set C=CreateObject("ExcelConverter.ExcelConverterX")
C.Convert "c:\test\source.xlsx", "c:\test\dest.pdf", "-cPDF -log c:\test\Excel.log"
Response.Write C.ErrorMessage
set C = nothing

ASP에서 결과 PDF를 직접 스트리밍하기

dim C
Set C=CreateObject("ExcelConverter.ExcelConverterX")
Response.Clear
Response.AddHeader "Content-Type", "binary/octet-stream"
Response.AddHeader "Content-Disposition", "attachment; filename=test.pdf"
Response.BinaryWrite C.ConvertToStream("C:\www\ASP\Source.xlsx", "C:\www\ASP", "-cpdf -log c:\html.log")
set C = nothing

PHP와 Total Excel Converter X로 Excel 스프레드시트 변환하기

$src="C:\\test\\test.xlsx";
$dest="C:\\test\\test.csv";
if (file_exists($dest)) unlink($dest);
$c= new COM("ExcelConverter.ExcelConverterX");
$c->convert($src,$dest, "-c csv -log c:\\test\\xls.log");
if (file_exists($dest)) echo "OK"; else echo "fail:".$c->ErrorMessage;

Total Excel Converter X와 Ruby로 Excel 스프레드시트 변환하기

require 'win32ole'
c = WIN32OLE.new('ExcelConverter.ExcelConverterX')

src = "C:\\test\\test.xlsx"
dest = "C:\\test\\test.pdf"

c.convert(src, dest, "-c PDF -log c:\\test\\Excel.log")

if not File.exist?(dest)
  puts c.ErrorMessage
end

Total Excel Converter X와 Python으로 Excel 스프레드시트 변환하기

import win32com.client
import os.path

c = win32com.client.Dispatch("ExcelConverter.ExcelConverterX")

src  = "C:\\test\\test.xlsx"
dest = "C:\\test\\test.pdf"

c.convert(src, dest, "-c PDF -log c:\\test\\Excel.log")

if not os.path.exists(dest):
    print(c.ErrorMessage)

Pascal과 Total Excel Converter X로 Excel 파일 변환하기

uses Dialogs, Vcl.OleAuto;

var
  c: OleVariant;
begin
  c := CreateOleObject('ExcelConverter.ExcelConverterX');
  c.Convert('c:\test\source.xlsx', 'c:\test\dest.pdf', '-cPDF -log c:\test\Excel.log');
  if c.ErrorMessage <> '' then
    ShowMessage(c.ErrorMessage);
end;

Total Excel Converter X로 웹 서버에서 Excel 및 ODS 파일 변환하기

var c = new ActiveXObject("ExcelConverter.ExcelConverterX");
c.Convert("C:\\test\\source.xlsx", "C:\\test\\dest.pdf", "-c PDF");
if (c.ErrorMessage != "")
  alert(c.ErrorMessage)

Total Excel Converter X와 Perl로 Excel 스프레드시트 변환하기

use Win32::OLE;

my $src  = "C:\\test\\test.xlsx";
my $dest = "C:\\test\\test.csv";

my $c = CreateObject Win32::OLE 'ExcelConverter.ExcelConverterX';
$c->convert($src, $dest, "-c csv -log c:\\test\\xls.log");
print $c->ErrorMessage if -e $dest;

quote

서버용 Excel 변환기 고객 리뷰 2026

평가하기
고객 리뷰를 바탕으로 4.7/5로 평가됨
5 Star

"2년 전에 Excel-Interop COM 자동화 스크립트를 Total Excel Converter X로 교체했습니다. Interop 파이프라인은 핸들 누수가 있고, 앱 풀이 충돌했으며, 모든 변환 VM에 Office 전체 설치가 필요했습니다. 이제 그 VM들은 큐 뒤에서 ExcelConverterX.exe만 실행합니다. 워크북당 변환 지연 시간이 약 12초에서 1.5초로 떨어졌고, Office 라이선스 항목도 없어졌습니다. 우리 워커와의 .NET 통합은 반나절이면 끝났습니다."

5 Star Mateusz K.
Senior Backend Developer at a fintech

"고객들은 온갖 형태의 급여 스프레드시트를 업로드합니다: 벤더의 XLS 템플릿, 매크로가 포함된 최신 XLSX, 가끔 LibreOffice 사용자가 보내는 ODS. Total Excel Converter X는 모든 것을 AES-256 암호화가 적용된 단일 보관용 PDF 프로파일로 정규화하고, 컴플라이언스에 필요한 권한별 플래그를 새깁니다. -list 큐 파일과 -verbosity detail 로그가 우리 로그 집계기로 바로 흘러 들어갑니다. Windows Server Core에서 헤드리스로, Office 없이, 예상 밖의 일도 없이 잘 돌아갑니다."

5 Star Sofia L.
DevOps Engineer at a payroll SaaS

"우리는 ETL 고객들에게 XLSX-to-JSON을 서비스로 제공합니다. Total Excel Converter X가 그 엔드포인트의 엔진입니다. -FirstRowIsHeader와 직접 JSON 출력 덕분에 자체 파서를 작성하거나 별도의 CSV-to-JSON 단계를 유지할 필요가 없었습니다. 5년간 하루 수천 건의 변환을 처리했지만, 변환기 탓으로 돌릴 만한 실패는 없었습니다. CLI는 안정적이며 출력은 실행할 때마다 비트 단위로 동일합니다."

5 Star Hamid Y.
CTO at an ETL platform vendor

"Royalty-Free License로 Total Excel Converter X를 우리 보고 제품에 번들했습니다. 프로젝트당 일회성 비용은 Aspose-Cells가 개발자별 구독으로 요구하던 금액의 일부에 불과했습니다. 우리 설치 프로그램이 ActiveX를 배포하고 등록하며, 우리 앱이 직접 호출하고, 최종 사용자는 우리 UI만 봅니다. 32비트 ActiveX 제한 때문에 파이프라인 재작업에 며칠이 들었지만, 우회 방법을 문의했을 때 지원팀의 응답이 빨랐습니다."

4 Star Britt N.
Independent Software Vendor

"중개인들이 사진과 병합된 셀이 포함된 XLSX 매물 목록을 업로드하면, 우리는 공개 포털용 깔끔한 PDF가 필요합니다. Total Excel Converter X는 우리가 평가했던 오픈소스 라이브러리들보다 렌더링 특이사항(병합된 셀, 고정 창, 명명된 범위)을 더 잘 처리합니다. -combine -sort name으로 워크북 10개를 한 달치 PDF 하나로 결합하는 기능은 매 릴리스 주기마다 사용하는 기능입니다."

5 Star Daichi T.
Lead .NET Developer at a real-estate platform


Total Excel ConverterX을 사용하는 사람은?

Developers and IT teams that convert Excel files to PDF, DOC, CSV, and more on servers

Web Applications

Online Spreadsheet Conversion

Add Excel-to-PDF conversion to your web app via ActiveX

Web developers integrate Total Excel ConverterX into ASP, PHP, or .NET applications so users can upload Excel files and receive converted PDF, HTML, or CSV output instantly. The converter runs silently on the server with no GUI, supporting multiple simultaneous users without interruption.

Enterprise Automation

ERP & CRM Data Export

Auto-convert Excel exports from business systems

Enterprise IT teams schedule Total Excel ConverterX to process nightly XLS and XLSX exports from ERP, CRM, and BI platforms. Convert financial reports to protected PDF, extract data to CSV for databases, or transform spreadsheets to HTML for internal dashboards — all unattended via command line.

Hot Folder Automation

Folder Monitor Integration

Auto-convert new Excel files as they arrive in folders

Paired with Total Folder Monitor, Total Excel ConverterX watches designated folders and automatically converts new XLS files as they appear. Incoming spreadsheets from partner uploads, FTP drops, or automated exports are converted to the required format and routed to the right destination hands-free.

Multi-User Networks

Network Conversion Service

Serve Excel conversion to all users on your local network

Organizations deploy Total Excel ConverterX as a shared service on the company network. Employees from finance, sales, and operations submit Excel files for conversion to PDF, DOC, or CSV through a centralized server — no need to install desktop converters on every workstation.

Software Development

Excel SDK for Custom Apps

Embed spreadsheet conversion into your own software

Software vendors embed Total Excel ConverterX into their products to add Excel export capabilities. The ActiveX interface provides conversion functions through simple API calls — convert XLS, XLSX, ODS, and DBF files to PDF, HTML, CSV, SQL, LaTeX, and 15+ other formats from within any COM-compatible application.

명령줄 예제

Total Excel ConverterX에는 ExcelConverterX.exe라는 콘솔 바이너리가 포함되어 있어 스크립트, 예약 작업, CI 러너 또는 백엔드 서비스에서 실행할 수 있습니다. 플래그 세트는 GUI ExcelConverter.exe와 일치합니다. 전체 참조는 명령줄 문서를 참조하세요. 아래의 예제는 SDK 고객들이 가장 자주 묻는 사례를 다룹니다.

1. 단일 워크북을 PDF로 변환

가장 단순한 호출 — 하나의 소스 파일, 하나의 출력, 하나의 대상 형식.

ExcelConverterX.exe "C:\reports\Q4-financials.xlsx" "C:\out\Q4-financials.pdf" -cPDF

2. XLSX 파일 폴더 일괄 처리

폴더 내 모든 워크북을 처리하고 형제 출력 디렉터리에 PDF를 떨어뜨립니다. 다른 소스 형식을 선택하려면 마스크를 *.xls, *.ods 또는 *.csv로 바꾸세요.

ExcelConverterX.exe "C:\reports\*.xlsx" "C:\out\" -cPDF

3. 사용자 정의 구분 기호로 CSV로 내보내기

대부분의 데이터 파이프라인에는 CSV가 필요하지만, 일반 쉼표인 경우는 거의 없습니다. -td를 사용하여 표준 구분 기호(탭, 공백, 세미콜론, 쉼표)에서 선택하거나 -td Other -tdo로 다른 것을 설정하세요 — 여기서는 파이프 문자입니다.

ExcelConverterX.exe "C:\reports\*.xlsx" "C:\out\" -cCSV -td Other -tdo "|" -FirstRowIsHeader -UseQuote

-FirstRowIsHeader는 변환기에 1행을 열 이름으로 처리하도록 지시합니다. -UseQuote는 텍스트 필드를 따옴표로 감싸서 임베드된 구분 기호가 구문 분석을 깨뜨리지 않도록 합니다.

4. API 수집을 위한 XLSX에서 JSON 또는 XML로

워크북 데이터를 REST 엔드포인트나 ETL 작업에 공급하려면 CSV를 거치지 않고 구조화된 형식으로 직접 렌더링하세요.

ExcelConverterX.exe "C:\reports\*.xlsx" "C:\out\" -cJSON -FirstRowIsHeader
ExcelConverterX.exe "C:\reports\*.xlsx" "C:\out\" -cXML -FirstRowIsHeader

5. 레거시 데이터베이스 내보내기를 위한 XLSX에서 DBF로

많은 회계 및 ERP 도구가 여전히 DBF 테이블을 사용합니다. 변환기는 워크북에서 직접 유효한 dBase 파일을 작성합니다.

ExcelConverterX.exe "C:\reports\customers.xlsx" "C:\out\customers.dbf" -cDBF -FirstRowIsHeader

6. 특정 시트만 변환

기본적으로 모든 표시되는 시트는 자체 출력 파일이 됩니다. -sheets는 사용자가 지정한 시트만 선택합니다. -cs는 이를 단일 문서로 결합합니다. -ExportAll은 숨겨진 시트를 포함합니다.

ExcelConverterX.exe "C:\reports\workbook.xlsx" "C:\out\summary.pdf" -cPDF -sheets "Summary;Q4;Forecast" -cs

7. 여러 워크북을 하나의 PDF로 결합

월말 보고는 종종 10~20개의 워크북을 하나의 산출물로 묶는 것을 의미합니다. -combine은 소스 파일 순서대로 하나의 PDF로 병합합니다. -sort name은 해당 순서를 제어합니다.

ExcelConverterX.exe "C:\reports\monthly\*.xlsx" "C:\out\monthly-pack.pdf" -cPDF -combine -sort name

8. 프로젝트 트리를 재귀적으로 처리하고 폴더 구조 미러링

워크북이 중첩된 클라이언트 폴더에 있을 때, -Recurse는 하위 디렉터리를 탐색하고 -kfs는 모든 것을 하나의 버킷에 평평하게 만드는 대신 출력 측에서 동일한 트리를 다시 만듭니다.

ExcelConverterX.exe "C:\clients\*.xlsx" "C:\out\clients\" -cPDF -Recurse -kfs

9. 배포를 위한 비밀번호 보호 PDF

외부 수신자에게 재무 자료를 보낼 때의 표준입니다: 소유자 비밀번호로 편집/인쇄 권한을 잠그고, 사용자 비밀번호로 파일 열기를 제어하며, AES-256 암호화로 견고하게 유지합니다.

ExcelConverterX.exe "C:\reports\*.xlsx" "C:\out\" -cPDF -mp "owner-pwd" -up "user-pwd" -perm Print -EncryptStrength es256AES

PrintCopy, Modify, Annotation, FormFill, HighResPrint의 조합으로 바꾸어 원하는 권한을 정확히 부여하세요. 소스 워크북 자체가 비밀번호로 보호된 경우 미리 -Pass "wb-pwd"를 추가하세요.

10. 목록 파일과 자세한 로그가 포함된 무인 실행

워커가 큐 파일을 작성하고 변환기가 이를 사용하는 경우, 명령줄 자체에 파일 경로를 인코딩하고 싶지 않을 것입니다. -list는 텍스트 파일에서 파일 마스크(한 줄에 하나)를 읽습니다. -verbosity detail은 파일당 한 줄을 작성합니다. -logmode append는 실행 간에 기록을 유지합니다.

ExcelConverterX.exe -list "C:\queues\batch.txt" "C:\out\" -cPDF -log "C:\logs\xlsxconv.log" -verbosity detail -logmode append
지금 다운로드!

업데이트됨 Fri, 01 May 2026

라이선스 구입

(만 $550.00)



Total Excel Converter X 자주 묻는 질문 ▼

아니요. Total Excel Converter X는 자체 파서를 통해 XLS, XLSX, XLSM, ODS, CSV, XML, DBF 및 Lotus 형식을 직접 읽습니다. Microsoft Excel, Office, Open XML SDK 또는 헤드리스 Office 자동화 프레임워크가 필요하지 않습니다. 이것이 고객들이 Excel-Interop 또는 Office 자동화 파이프라인에서 Excel Converter X로 전환하는 주된 이유입니다 — 라이선스 비용 없음, 앱 풀 충돌 없음, 살아 있게 유지해야 할 헤드리스 Office 인스턴스 없음.
입력: XLS, XLSX, XLSM, ODS, CSV, TSV, XML (SpreadsheetML), WK2, WKS, DBF, DIF, TEX. 출력: PDF (AES-256 암호화 및 세분화된 권한 지원), DOC, DOCX, HTML, JSON, XML, 임의 구분자 CSV, DBF, SQL, LaTeX, JPG, TIFF, PNG, ODT, ODS. 시트별 선택, 시트 결합, 워크북 전체를 단일 PDF로 결합하는 기능을 모두 지원합니다.
Total Excel Converter X는 COM/ActiveX 인터페이스를 노출하므로 COM을 지원하는 모든 언어가 직접 호출할 수 있습니다: PHP에서 new COM("ExcelConverter.ExcelConverterX"), .NET에서 new ExcelConverterX(), Python에서 win32com.client.Dispatch, Ruby에서 WIN32OLE.new. 또는 ExcelConverterX.exe 명령줄 바이너리를 어떤 프로세스, 스케줄러, 셸 스크립트에서도 호출할 수 있습니다. ASP/PHP 웹 응답을 위한 ConvertToStream을 통한 직접 PDF 스트리밍도 가능합니다.
Total Excel Converter는 워크스테이션에서 대화형으로 사용하는 데스크톱 GUI 버전입니다. Total Excel Converter X는 서버 SDK입니다: 그래픽 인터페이스 없음, 대화상자 없음, 최종 사용자 상호작용 없음. 무인 서버 측 사용을 위해 라이선스가 부여되며, 애플리케이션 통합용 ActiveX/COM 인터페이스를 포함하고, 자체 제품에 재배포할 수 있는 Royalty-Free License를 지원합니다.
네. 이 변환기는 COM 인터페이스를 가진 일반적인 Windows 바이너리이므로 Windows가 실행되는 곳이라면 어디서든 작동합니다: IIS 애플리케이션 풀, Windows 컨테이너, Windows 런타임의 Azure App Service 또는 Azure Functions, AWS EC2 Windows 인스턴스, 온프레미스 Windows Server. 참고: ActiveX 컴포넌트는 32비트 전용이므로 COM을 통해 호출할 때는 IIS 애플리케이션 풀 또는 .NET 런타임을 32비트로 구성하세요. 명령줄 바이너리는 64비트 Windows에서 제한 없이 작동합니다.
네. 소유자 비밀번호는 -mp "owner-pwd"로, 파일 열기를 제어하는 사용자 비밀번호는 -up "user-pwd"로 설정하세요. -perm 플래그는 Print, HighResPrint, Copy, Modify, Annotation, FormFill의 임의 조합을 받습니다. 암호화 강도는 -EncryptStrength es256AES로 제어합니다. 원본 워크북 자체가 비밀번호로 보호되어 있다면 변환기가 열 수 있도록 미리 -Pass "workbook-pwd"를 전달하세요.
-sheets "Summary;Q4;Forecast"로 워크북에서 이름이 지정된 시트를 선택하세요. -cs를 추가하면 선택한 시트를 단일 출력 문서로 결합하고, -ExportAll은 숨겨진 시트도 포함합니다. 여러 워크북을 원본 파일 순서대로 단일 PDF로 병합하려면 폴더 마스크에 대해 -combine -sort name을 실행하세요. -Recurse는 하위 디렉토리를 탐색하고, -kfs는 모든 것을 하나의 버킷으로 평면화하는 대신 출력 측에 폴더 트리를 그대로 미러링합니다.
네. 다운로드는 모든 출력 형식, ActiveX, 명령줄 기능이 잠금 해제된 완전한 기능의 30일 평가판입니다 — 시작하는 데 신용카드나 이메일이 필요 없습니다. 30일 후에 구매 여부를 결정하세요. 라이선스는 평생 업데이트와 기술 지원을 포함한 일회성 결제입니다.

지금 작업을 시작하세요!

무료 평가판을 다운로드하고 몇 분 만에 파일을 변환하세요.
신용카드나 이메일이 필요하지 않습니다.

⬇ 무료 평가판 다운로드 Windows 7/8/10/11 • 120 MB
Pro Suite

전체 등록 버전의 주요 기능

  • 소스 형식: XLS, XLSX, CSV, TSV, XLSM, XLSB, XLT, XLTM, XLTX, XLK, XLW, OTS, PXL, QPW, WB2, WB1, WQ2, WQ1, SDC, VOR, DBF, SLK, UOS, UOF, WK1, WK2, WK3, WK4, WKS, WAB, DIF, ET, Clarion, DBISAM, Advantage.
  • 출력 형식: DOC, PDF, HTML, MHT, XHTML, CSV, TXT, TIFF, JPEG, SVG, RTF, XML, XLS, XLSX, ODS, ODT, Lotus, DIFF, SYLK, LATEX, SQL, DBF, Access.
  • 숨겨진 시트 내보내기
  • 차트가 포함된 XLS 변환
  • PDF 파일 서명 가능
  • Excel 2019 파일 지원
  • 페이지 맞춤 옵션 제공
  • Excel을 Access 명령줄로 변환
  • Excel을 XML 명령줄로 변환
  • Excel을 CSV 명령줄로 변환

API 내장 지원이 있는 응용 프로그램 목록

Copyright 2003-2026 CoolUtils Development. 모든 권리 보유.