Pdf 에서 html API
애플리케이션의 모든 파일 유형을 변환하는 하나의 간단한 API: 200개 이상의 형식, 뛰어난 문서, 지원 팀
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiKey = 'myApiKey';
$client = new Webpractik\OcfConverter\Sdk\OcfClient($apiKey);
$filePath = '/path/to/file/to/convert.png';
$extensionToConvertTo = 'pdf';
try {
$task = $client->uploadFile($filePath, $extensionToConvertTo);
$result = $task->waitForConversion();
if ($result->isSuccess()) {
$resultUrl = $result->getResultingFileUrl();
$resultFileName = basename($resultUrl);
if (file_put_contents($resultFileName, file_get_contents($resultUrl))) {
$result->deleteFile();
}
}
} catch (Exception $e) {
echo 'Exception: ', $e->getMessage(), PHP_EOL;
}
API 사용의 이점
온라인 변환기로 원활한 파일 변환을 경험하세요! 다양한 파일 형식을 빠르고 쉽게 변환하세요. 속도, 안정성, 호환성의 이점을 누려보세요.
사용자는 어떤 크기의 파일도 제한 없이 변환할 수 있어 다양한 데이터로 작업할 때 편리하고 유연하게 사용할 수 있습니다.
변환 프로세스에 시간 제한이 없으므로 프로세스가 완료될 때까지 기다릴 필요 없이 크고 복잡한 파일도 처리할 수 있습니다.
사용자는 여러 파일을 동시에 변환할 수 있어 대량의 데이터로 작업할 때 효율성을 높이고 시간을 절약할 수 있습니다.
What our customers say
Questions? We'll be your guide
Contact Sales