{"id":232,"date":"2025-11-12T10:31:53","date_gmt":"2025-11-12T10:31:53","guid":{"rendered":"http:\/\/pdf4de.com\/?page_id=232"},"modified":"2025-11-27T10:41:24","modified_gmt":"2025-11-27T10:41:24","slug":"pdf-to-jpg","status":"publish","type":"page","link":"https:\/\/pdf4de.com\/ko\/pdf-to-jpg\/","title":{"rendered":"PDF\ub97c JPG\ub85c \ubcc0\ud658"},"content":{"rendered":"<h2 class=\"wp-block-heading has-text-align-center\">\ubcc0\ud658 <strong>PDF\ub97c JPG\ub85c \ubcc0\ud658<\/strong><\/h2>\n\n\n\n<h4 class=\"wp-block-heading has-text-align-center\">\uac01 PDF \ud398\uc774\uc9c0\ub97c JPG\ub85c \ubcc0\ud658\ud558\uac70\ub098 PDF\uc5d0 \ud3ec\ud568\ub41c \ubaa8\ub4e0 \uc774\ubbf8\uc9c0\ub97c \ucd94\ucd9c\ud558\uc138\uc694.<\/h4>\n\n\n\n<p><a href=\"javascript:;\"><\/a><\/p>\n\n\n\n<style>\n  .merge-box {\n    font-family: Arial, sans-serif;\n    max-width: 750px;\n    margin: 30px auto;\n    padding: 25px;\n    border-radius: 15px;\n    background: #fff;\n    box-shadow: 0 3px 15px rgba(0,0,0,0.1);\n  }\n\n  .custom-btn {\n    padding: 18px 40px;\n    background: #2563eb;\n    color: #fff;\n    font-size: 22px;\n    font-weight: bold;\n    border-radius: 10px;\n    cursor: pointer;\n    display: inline-block;\n    margin-bottom: 15px;\n    transition: 0.2s;\n  }\n  .custom-btn:hover { background:#1e40af; }\n\n  #convertBtn {\n    padding: 18px 40px;\n    background:#f97316;\n    color:#fff;\n    font-size:22px;\n    font-weight:bold;\n    border-radius:10px;\n    border:none;\n    cursor:pointer;\n    display:none;\n    margin-top:20px;\n  }\n  #convertBtn:hover { background:#ea580c; }\n\n  #fileList { margin-top: 20px; }\n  .file-item {\n    background:#f3f4f6;\n    padding:12px 15px;\n    border-radius:10px;\n    margin-bottom:10px;\n    display:flex;\n    justify-content:space-between;\n    align-items:center;\n  }\n\n  .remove-btn {\n    background:#ef4444;\n    color:#fff;\n    padding:6px 12px;\n    border-radius:8px;\n    cursor:pointer;\n    border:none;\n  }\n  .remove-btn:hover { background:#dc2626; }\n\n  #dropZone {\n    border:2px dashed #2563eb;\n    padding:20px;\n    border-radius:10px;\n    text-align:center;\n    font-size:16px;\n    color:#2563eb;\n    margin-top:15px;\n  }\n  #dropZone.drag-over {\n    background:#e0e7ff;\n    border-color:#1e40af;\n  }\n\n  #progress-container {\n    width: 100%;\n    background: #e0e0e0;\n    height: 25px;\n    border-radius: 10px;\n    margin-top: 30px;\n    overflow: hidden;\n    display:none;\n  }\n  #progress-bar {\n    height: 100%;\n    width: 0%;\n    background-color: #2563eb;\n  }\n  #status-text { margin-top: 10px; font-size: 18px; }\n<\/style>\n\n<div class=\"merge-box\">\n\n  <label class=\"custom-btn\" id=\"selectBtn\">PDF \ud30c\uc77c \uc120\ud0dd<\/label>\n  <input type=\"file\" id=\"fileInput\" accept=\"application\/pdf\" multiple style=\"display:none\">\n\n  <div id=\"dropZone\">\ub610\ub294 \uc5ec\uae30\uc5d0 PDF \ud30c\uc77c\uc744 \ub4dc\ub86d\ud558\uc138\uc694.<\/div>\n\n  <div id=\"fileList\"><\/div>\n\n  <button id=\"convertBtn\">JPG\ub85c \ubcc0\ud658<\/button>\n\n  <div id=\"progress-container\"><div id=\"progress-bar\"><\/div><\/div>\n  <div id=\"status-text\"><\/div>\n\n<\/div>\n\n<script>\n(function() {\n\n  const selectBtn = document.getElementById('selectBtn');\n  const fileInput = document.getElementById('fileInput');\n  const dropZone = document.getElementById('dropZone');\n  const fileList = document.getElementById('fileList');\n  const convertBtn = document.getElementById('convertBtn');\n  const progress = document.getElementById('progress-container');\n  const progressBar = document.getElementById('progress-bar');\n  const statusText = document.getElementById('status-text');\n\n  let files = [];\n\n  function refreshUI() {\n    fileList.innerHTML = \"\";\n\n    if (files.length === 0) {\n      convertBtn.style.display = \"none\";\n      return;\n    }\n\n    convertBtn.style.display = \"inline-block\";\n\n    files.forEach((file, index) => {\n      const item = document.createElement('div');\n      item.className = \"file-item\";\n      item.innerHTML = `\n        <span>${file.name}<\/span>\n        <button class=\"remove-btn\" data-index=\"${index}\">Remove<\/button>\n      `;\n      fileList.appendChild(item);\n    });\n  }\n\n  function addFiles(selected) {\n    for (let f of selected) {\n      if (f.type === \"application\/pdf\") files.push(f);\n    }\n    refreshUI();\n  }\n\n  selectBtn.onclick = () => fileInput.click();\n  fileInput.onchange = () => {\n    addFiles(fileInput.files);\n    fileInput.value = \"\";\n  };\n\n  dropZone.ondragover = e => { e.preventDefault(); dropZone.classList.add(\"drag-over\"); };\n  dropZone.ondragleave = () => dropZone.classList.remove(\"drag-over\");\n  dropZone.ondrop = e => {\n    e.preventDefault();\n    dropZone.classList.remove(\"drag-over\");\n    if (e.dataTransfer.files.length > 0) addFiles(e.dataTransfer.files);\n  };\n\n  fileList.onclick = e => {\n    if (e.target.classList.contains(\"remove-btn\")) {\n      files.splice(e.target.dataset.index, 1);\n      refreshUI();\n    }\n  };\n\n  convertBtn.onclick = () => {\n    if (files.length === 0) return;\n\n    convertBtn.disabled = true;\n    progress.style.display = \"block\";\n    progressBar.style.width = \"20%\";\n    statusText.textContent = \"Uploading...\";\n\n    const formData = new FormData();\n    files.forEach(f => formData.append(\"file\", f));\n\n    fetch(\"\/api\/pdf-to-jpg\", {\n      method: \"POST\",\n      body: formData\n    })\n    .then(res => res.json())\n    .then(data => {\n      if(data.error){\n        statusText.textContent = \"Error: \" + data.error;\n        convertBtn.disabled = false;\n        return;\n      }\n      pollStatus(data.task_id, data.download_url);\n    })\n    .catch(() => {\n      statusText.textContent = \"Upload failed.\";\n      convertBtn.disabled = false;\n    });\n  };\n\n  function pollStatus(taskId, downloadUrl) {\n    let interval = setInterval(() => {\n      fetch(`\/api\/status\/${taskId}`)\n        .then(res => res.json())\n        .then(data => {\n          if(data.status === \"queued\"){\n            statusText.textContent = \"Queued...\";\n            progressBar.style.width = \"30%\";\n          }\n          else if(data.status === \"processing\"){\n            statusText.textContent = \"Processing...\";\n            progressBar.style.width = \"70%\";\n          }\n          else if(data.status === \"done\"){\n            progressBar.style.width = \"100%\";\n            statusText.textContent = \"Done! Downloading...\";\n            clearInterval(interval);\n            window.location = downloadUrl;\n            convertBtn.disabled = false;\n          }\n          else if(data.status === \"error\"){\n            statusText.textContent = \"Error: \" + data.error;\n            clearInterval(interval);\n            convertBtn.disabled = false;\n          }\n        })\n        .catch(() => {\n          statusText.textContent = \"Failed to get status.\";\n          clearInterval(interval);\n          convertBtn.disabled = false;\n        });\n    }, 1500);\n  }\n\n})();\n<\/script>\n<script async=\"async\" data-cfasync=\"false\" src=\"\/\/clothcreepoak.com\/f35f99bfef1a09c1eecbc6ed867c8f3b\/invoke.js\"><\/script>\n<div id=\"container-f35f99bfef1a09c1eecbc6ed867c8f3b\"><\/div>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">\uba87 \ucd08 \uc548\uc5d0 PDF\ub97c JPG\ub85c \ubcc0\ud658\ud558\ub294 \ubc29\ubc95<\/h2>\n\n\n\n<div class=\"tool-container\">\n\n<ol> <li>PDF \ud30c\uc77c\uc744 \uc5c5\ub85c\ub4dc\ud569\ub2c8\ub2e4.<\/li> <li>\ub97c \ud074\ub9ad\ud569\ub2c8\ub2e4. <strong>JPG\ub85c \ubcc0\ud658<\/strong> \ubc84\ud2bc\uc744 \ud074\ub9ad\ud569\ub2c8\ub2e4.<\/li> <li>\ubcc0\ud658\ub41c JPG \uc774\ubbf8\uc9c0\ub97c \uc989\uc2dc \ub2e4\uc6b4\ub85c\ub4dc\ud558\uc138\uc694.<\/li> <\/ol> <p>\uc800\ud76c \ub3c4\uad6c\ub97c \uc0ac\uc6a9\ud558\uba74 PDF\ub97c JPG\ub85c \ubcc0\ud658\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. <strong>\uc628\ub77c\uc778<\/strong>, <strong>\ubb34\ub8cc<\/strong>, \ubc0f <strong>\uc548\uc804\ud558\uac8c<\/strong>.<\/p> <h2>PDF\ub97c JPG\ub85c \ubcc0\ud658\ud558\ub294 \uae30\ub2a5<\/h2> <h3>\ubb34\ub8cc \ubc0f \ube60\ub978 \uc18d\ub3c4<\/h3> <p>\ube44\uc6a9 \uc5c6\uc774 \ubb34\uc81c\ud55c PDF\ub97c JPG \uc774\ubbf8\uc9c0\ub85c \ubcc0\ud658\ud558\uc138\uc694. \uc800\ud76c \ub3c4\uad6c\ub294 \uc18d\ub3c4\uc5d0 \ucd5c\uc801\ud654\ub418\uc5b4 \uc788\uc5b4 \uba87 \ucd08 \ub9cc\uc5d0 \uacb0\uacfc\ub97c \uc5bb\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p> <h3>\uc124\uce58 \ud544\uc694 \uc5c6\uc74c<\/h3> <p>\uc18c\ud504\ud2b8\uc6e8\uc5b4 \ub2e4\uc6b4\ub85c\ub4dc\ub098 \uac00\uc785\uc774 \ud544\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \uc6b0\ub9ac\uc758 <strong>\uc628\ub77c\uc778 PDF-JPG \ubcc0\ud658\uae30<\/strong> \ube0c\ub77c\uc6b0\uc800\uc5d0\uc11c \ubc14\ub85c \uc791\ub3d9\ud569\ub2c8\ub2e4.<\/p> <h3>\ubaa8\ub4e0 \uae30\uae30\uc5d0\uc11c \uc791\ub3d9<\/h3> <p>\ud638\ud658\uc131 \ubb38\uc81c \uc5c6\uc774 Windows, Mac, Linux \ub610\ub294 \ubaa8\ubc14\uc77c \uc7a5\uce58\uc5d0\uc11c PDF\ub97c JPG\ub85c \ubcc0\ud658\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p> <h3>\uace0\ud488\uc9c8 \uc774\ubbf8\uc9c0<\/h3> <p>\uc6d0\ubcf8 PDF \ub808\uc774\uc544\uc6c3\uacfc \uc774\ubbf8\uc9c0 \uc120\uba85\ub3c4\ub97c \uc720\uc9c0\ud569\ub2c8\ub2e4. \ub2f9\uc0ac\uc758 \ubcc0\ud658\uae30\ub294 \ub2e4\uc74c\uc744 \ubcf4\uc7a5\ud569\ub2c8\ub2e4. <strong>\uace0\ud488\uc9c8 JPG \ud30c\uc77c<\/strong> \ub9e4\ubc88.<\/p> <h2>\uc628\ub77c\uc778 PDF-JPG \ubcc0\ud658 \ub3c4\uad6c\ub97c \uc120\ud0dd\ud574\uc57c \ud558\ub294 \uc774\uc720<\/h2> <ul> <li><strong>\uc644\uc804 \ubb34\ub8cc\uc785\ub2c8\ub2e4:<\/strong> \uc228\uaca8\uc9c4 \uc218\uc218\ub8cc\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.<\/li> <li><strong>\ubcf4\uc548 \ubc0f \ube44\uacf5\uac1c:<\/strong> \ud30c\uc77c\uc740 \ubcc0\ud658 \ud6c4 \uc0ad\uc81c\ub429\ub2c8\ub2e4.<\/li> <li><strong>\uac04\ud3b8\ud55c \uc0ac\uc6a9:<\/strong> \ucd08\ubcf4\uc790\uc640 \uc804\ubb38\uac00 \ubaa8\ub450\uc5d0\uac8c \uc801\ud569\ud569\ub2c8\ub2e4.<\/li> <li><strong>\uc18c\ud504\ud2b8\uc6e8\uc5b4\uac00 \ud544\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4:<\/strong> \uc644\uc804 \uc628\ub77c\uc778 \uc0c1\ud0dc\uc774\uba70 \ubaa8\ub4e0 \uae30\uae30\uc5d0\uc11c \uc791\ub3d9\ud569\ub2c8\ub2e4.<\/li> <\/ul>\n\n\n\n<style>\nbody {\n  font-family: 'Inter', sans-serif;\n  background: #f8fafc;\n  margin: 0;\n  color: #1e293b;\n}\n\nheader {\n  text-align: center;\n  padding: 30px 20px;\n  background: white; \n  color: #1e293b;\n  box-shadow: 0 2px 8px rgba(0,0,0,0.05);\n}\n\nheader h1 {\n  font-size: 2.6rem;\n  margin-bottom: 10px;\n}\nheader p {\n  font-size: 1.1rem;\n  opacity: 0.9;\n}\n\n.section {\n  padding: 60px 5%;\n}\n.section h2 {\n  font-size: 1.6rem;\n  margin-bottom: 25px;\n  color: #0f172a;\n  border-left: 5px solid #3b82f6;\n  padding-left: 10px;\n}\n\n.tools-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));\n  gap: 20px;\n}\n\n\/* Make the whole card clickable *\/\n.tool-card {\n  background: white;\n  border-radius: 10px;\n  padding: 20px;\n  box-shadow: 0 3px 8px rgba(0,0,0,0.05);\n  transition: all 0.25s ease;\n  cursor: pointer;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  text-decoration: none;\n  color: inherit;\n  height: 150px; \/* adjust height if needed *\/\n}\n.tool-card:hover {\n  transform: translateY(-4px);\n  box-shadow: 0 6px 15px rgba(0,0,0,0.08);\n  background: #f0f8ff; \/* light blue hover *\/\n}\n\n.tool-card h3 {\n  margin: 0 0 10px 0;\n  font-size: 1.1rem;\n}\n.tool-card p {\n  font-size: 0.9rem;\n  color: #64748b;\n  margin: 0;\n}\n<\/style>\n\n<section class=\"section\">\n  <h2>\ud83d\udcc4 PDF \uc628\ub77c\uc778 \ub3c4\uad6c<\/h2>\n  <div class=\"tools-grid\">\n    <a href=\"http:\/\/pdf4de.com\/ko\/split-pdf-file\/\" target=\"_blank\" class=\"tool-card\">\n      <h3>PDF \ud30c\uc77c \ubd84\ud560<\/h3>\n      <p>PDF \ud30c\uc77c\uc5d0\uc11c \ud398\uc774\uc9c0\ub97c \uc27d\uac8c \ubd84\ub9ac\ud558\uc138\uc694.<\/p>\n    <\/a>\n    <a href=\"http:\/\/pdf4de.com\/ko\/pdf-to-word\/\" target=\"_blank\" class=\"tool-card\">\n      <h3>PDF\ub97c Word\ub85c \ubcc0\ud658<\/h3>\n      <p>\uc628\ub77c\uc778\uc5d0\uc11c PDF\ub97c Word\ub85c \ubcc0\ud658\ud558\uc138\uc694.<\/p>\n    <\/a>\n    <a href=\"http:\/\/pdf4de.com\/ko\/merge-pdf-files\/\" target=\"_blank\" class=\"tool-card\">\n      <h3>PDF \ud30c\uc77c \ubcd1\ud569<\/h3>\n      <p>\uc5ec\ub7ec \uac1c\uc758 PDF\ub97c \ud558\ub098\uc758 \ubb38\uc11c\ub85c \uacb0\ud569\ud569\ub2c8\ub2e4.<\/p>\n    <\/a>\n    <a href=\"http:\/\/pdf4de.com\/ko\/pdf-to-excel\/\" target=\"_blank\" class=\"tool-card\">\n      <h3>PDF\ub97c \uc5d1\uc140\ub85c \ubcc0\ud658<\/h3>\n      <p>\uc628\ub77c\uc778\uc5d0\uc11c PDF\ub97c EXCEL\ub85c \ubcc0\ud658\ud558\uc138\uc694.<\/p>\n    <\/a>\n <a href=\"http:\/\/pdf4de.com\/ko\/pdf-to-pdf-a\/\" target=\"_blank\" class=\"tool-card\">\n      <h3>PDF\ub97c PDF\/A\ub85c \ubcc0\ud658<\/h3>\n      <p>PDF \ubb38\uc11c\ub97c PDF\/A\ub85c \ubcc0\ud658\ud558\uc5ec \ubcf4\uad00 \ubc0f \uc7a5\uae30 \ubcf4\uc874\ud558\uc138\uc694.<\/p>\n    <\/a>\n    <a href=\"http:\/\/pdf4de.com\/ko\/html-to-pdf\/\" target=\"_blank\" class=\"tool-card\">\n      <h3>HTML\uc744 PDF\ub85c \ubcc0\ud658<\/h3>\n      <p>\uc628\ub77c\uc778\uc5d0\uc11c HTML\uc744 PDF\ub85c \ubcc0\ud658\ud558\uc138\uc694.<\/p>\n    <\/a>\n    <a href=\"http:\/\/pdf4de.com\/ko\/excel-to-pdf\/\" target=\"_blank\" class=\"tool-card\">\n      <h3>EXCEL\uc744 PDF\ub85c \ubcc0\ud658<\/h3>\n      <p>\uc628\ub77c\uc778\uc5d0\uc11c \uc5d1\uc140\uc744 PDF\ub85c \ubcc0\ud658\ud558\uc138\uc694.<\/p>\n    <\/a>\n <a href=\"http:\/\/pdf4de.com\/ko\/word-to-pdf\/\" target=\"_blank\" class=\"tool-card\">\n      <h3>\uc6cc\ub4dc\uc5d0\uc11c PDF\ub85c<\/h3>\n      <p>\uc628\ub77c\uc778\uc5d0\uc11c WORD\ub97c PDF\ub85c \ubcc0\ud658\ud558\uc138\uc694.<\/p>\n    <\/a>\n    <a href=\"http:\/\/pdf4de.com\/ko\/jpg-to-pdf\/\" target=\"_blank\" class=\"tool-card\">\n      <h3>JPG\ub97c PDF\ub85c \ubcc0\ud658<\/h3>\n      <p>\uc628\ub77c\uc778\uc5d0\uc11c JPG\ub97c PDF\ub85c \ubcc0\ud658\ud558\uc138\uc694.<\/p>\n    <\/a>\n    <a href=\"http:\/\/pdf4de.com\/ko\/powerpoint-to-pdf\/\" target=\"_blank\" class=\"tool-card\">\n      <h3>\ud30c\uc6cc\ud3ec\uc778\ud2b8\ub97c PDF\ub85c \ubcc0\ud658<\/h3>\n      <p>\uc628\ub77c\uc778\uc5d0\uc11c \ud30c\uc6cc\ud3ec\uc778\ud2b8\ub97c PDF\ub85c \ubcc0\ud658\ud558\uc138\uc694.<\/p>\n    <\/a>\n  <\/div>\n<\/section>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">\uc790\uc8fc \ubb3b\ub294 \uc9c8\ubb38<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list\">\n<div id=\"faq-question-1763518204494\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">\uc815\ub9d0 \ubb34\ub8cc\uc778\uac00\uc694?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>\uc608! \uc6b0\ub9ac <strong>\uc628\ub77c\uc778 PDF-JPG \ubcc0\ud658\uae30<\/strong> \ub294 \uc644\uc804\ud788 \ubb34\ub8cc\ub85c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1763518236523\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">\ub300\uc6a9\ub7c9 PDF\ub97c \ubcc0\ud658\ud560 \uc218 \uc788\ub098\uc694?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>\ubb3c\ub860\uc774\uc8e0! \uc800\ud76c \ub3c4\uad6c\ub294 \ud488\uc9c8 \uc800\ud558 \uc5c6\uc774 \ub300\uc6a9\ub7c9 PDF \ud30c\uc77c\uc744 \uc9c0\uc6d0\ud569\ub2c8\ub2e4.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1763518251429\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">\uc124\uce58\ud574\uc57c \ud558\ub294 \uac83\uc774 \uc788\ub098\uc694?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>\uc124\uce58\uac00 \ud544\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ubaa8\ub4e0 \uac83\uc774 \ube0c\ub77c\uc6b0\uc800\uc5d0\uc11c \uc628\ub77c\uc778\uc73c\ub85c \uc2e4\ud589\ub429\ub2c8\ub2e4.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1763518253179\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">PDF\uc5d0\uc11c \uc774\ubbf8\uc9c0\ub97c \ucd94\ucd9c\ud560 \uc218 \uc788\ub098\uc694?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>\uc608, \uc804\uccb4 \ud398\uc774\uc9c0\ub97c \ubcc0\ud658\ud558\uac70\ub098 \uc774\ubbf8\uc9c0\ub97c JPG \ud615\uc2dd\uc73c\ub85c \uc27d\uac8c \ucd94\ucd9c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Convert PDF to JPG Convert each PDF page into a JPG or extract all images contained in a PDF. Select PDF files Or drop PDF files here Convert to JPG How to Convert PDF to JPG in Seconds Upload your PDF file. Click the Convert to JPG button. Download your converted JPG images instantly. Our [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":576,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-232","page","type-page","status-publish","has-post-thumbnail","hentry"],"_hostinger_reach_plugin_has_subscription_block":false,"_hostinger_reach_plugin_is_elementor":false,"uagb_featured_image_src":{"full":["https:\/\/pdf4de.com\/wp-content\/uploads\/2025\/11\/jpg-file.png",512,512,false],"thumbnail":["https:\/\/pdf4de.com\/wp-content\/uploads\/2025\/11\/jpg-file-150x150.png",150,150,true],"medium":["https:\/\/pdf4de.com\/wp-content\/uploads\/2025\/11\/jpg-file-300x300.png",300,300,true],"medium_large":["https:\/\/pdf4de.com\/wp-content\/uploads\/2025\/11\/jpg-file.png",512,512,false],"large":["https:\/\/pdf4de.com\/wp-content\/uploads\/2025\/11\/jpg-file.png",512,512,false],"1536x1536":["https:\/\/pdf4de.com\/wp-content\/uploads\/2025\/11\/jpg-file.png",512,512,false],"2048x2048":["https:\/\/pdf4de.com\/wp-content\/uploads\/2025\/11\/jpg-file.png",512,512,false],"trp-custom-language-flag":["https:\/\/pdf4de.com\/wp-content\/uploads\/2025\/11\/jpg-file.png",12,12,false]},"uagb_author_info":{"display_name":"kyronellesmere@gmail.com","author_link":"https:\/\/pdf4de.com\/ko\/author\/kyronellesmeregmail-com\/"},"uagb_comment_info":0,"uagb_excerpt":"Convert PDF to JPG Convert each PDF page into a JPG or extract all images contained in a PDF. Select PDF files Or drop PDF files here Convert to JPG How to Convert PDF to JPG in Seconds Upload your PDF file. Click the Convert to JPG button. Download your converted JPG images instantly. Our&hellip;","_links":{"self":[{"href":"https:\/\/pdf4de.com\/ko\/wp-json\/wp\/v2\/pages\/232","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pdf4de.com\/ko\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/pdf4de.com\/ko\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/pdf4de.com\/ko\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pdf4de.com\/ko\/wp-json\/wp\/v2\/comments?post=232"}],"version-history":[{"count":7,"href":"https:\/\/pdf4de.com\/ko\/wp-json\/wp\/v2\/pages\/232\/revisions"}],"predecessor-version":[{"id":2136,"href":"https:\/\/pdf4de.com\/ko\/wp-json\/wp\/v2\/pages\/232\/revisions\/2136"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/pdf4de.com\/ko\/wp-json\/wp\/v2\/media\/576"}],"wp:attachment":[{"href":"https:\/\/pdf4de.com\/ko\/wp-json\/wp\/v2\/media?parent=232"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}