{"id":2289,"date":"2022-07-10T08:13:32","date_gmt":"2022-07-10T03:13:32","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=2289"},"modified":"2022-07-10T08:13:36","modified_gmt":"2022-07-10T03:13:36","slug":"php7-fpdi-create-thumbnails-of-existing-pdf-document","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/","title":{"rendered":"PHP 7 FPDI Create Thumbnails of Existing PDF Document"},"content":{"rendered":"\n<p>PHP 7 FPDI Library Example to Create Thumbnails of Existing PDF Document in Browser.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">index.php<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;php&quot;,&quot;mime&quot;:&quot;text\/x-php&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;PHP&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;php&quot;}\">&lt;?php\n\/\/your variables\n$filename = 'Brand-Guide.pdf';\n\nuse setasign\\Fpdi\\Fpdi;\n\nrequire_once('fpdf\/fpdf.php');\nrequire_once('fpdi2\/src\/autoload.php');\n\n$pdf = new Fpdi();\n\n$pageCount = $pdf-&gt;setSourceFile($filename);\n\n$width = $pdf-&gt;GetPageWidth() \/ 2 - 15;\n$height = 0;\n\n$_x = $x = 10;\n$_y = $y = 10;\n\n$pdf-&gt;AddPage();\nfor ($n = 1; $n &lt;= $pageCount; $n++) {\n    $pageId = $pdf-&gt;importPage($n);\n\n    $size = $pdf-&gt;useImportedPage($pageId, $x, $y, $width);\n    $pdf-&gt;Rect($x, $y, $size['width'], $size['height']);\n    $height = max($height, $size['height']);\n    if ($n % 2 == 0) {\n        $y += $height + 10;\n        $x = $_x;\n        $height = 0;\n    } else {\n        $x += $width + 10;\n    }\n\n    if ($n % 4 == 0 &amp;&amp; $n != $pageCount) {\n        $pdf-&gt;AddPage();\n        $x = $_x;\n        $y = $_y;\n    }\n}\n\n$pdf-&gt;Output('F', 'thumbnails.pdf');<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>PHP 7 FPDI Library Example to Create Thumbnails of Existing PDF Document in Browser. index.php<\/p>\n","protected":false},"author":1,"featured_media":1762,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-2289","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PHP 7 FPDI Create Thumbnails of Existing PDF Document<\/title>\n<meta name=\"description\" content=\"PHP 7 FPDI Library Example to Create Thumbnails of Existing PDF Document in Browser. index.php &lt;?php \/\/your variables $filename = &#039;Brand-Guide.pdf&#039;;\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP 7 FPDI Create Thumbnails of Existing PDF Document\" \/>\n<meta property=\"og:description\" content=\"PHP 7 FPDI Library Example to Create Thumbnails of Existing PDF Document in Browser. index.php &lt;?php \/\/your variables $filename = &#039;Brand-Guide.pdf&#039;;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-10T03:13:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-10T03:13:36+00:00\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PHP 7 FPDI Create Thumbnails of Existing PDF Document","description":"PHP 7 FPDI Library Example to Create Thumbnails of Existing PDF Document in Browser. index.php &lt;?php \/\/your variables $filename = 'Brand-Guide.pdf';","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/","og_locale":"en_US","og_type":"article","og_title":"PHP 7 FPDI Create Thumbnails of Existing PDF Document","og_description":"PHP 7 FPDI Library Example to Create Thumbnails of Existing PDF Document in Browser. index.php &lt;?php \/\/your variables $filename = 'Brand-Guide.pdf';","og_url":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-07-10T03:13:32+00:00","article_modified_time":"2022-07-10T03:13:36+00:00","author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"PHP 7 FPDI Create Thumbnails of Existing PDF Document","datePublished":"2022-07-10T03:13:32+00:00","dateModified":"2022-07-10T03:13:36+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/"},"wordCount":23,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/","url":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/","name":"PHP 7 FPDI Create Thumbnails of Existing PDF Document","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","datePublished":"2022-07-10T03:13:32+00:00","dateModified":"2022-07-10T03:13:36+00:00","description":"PHP 7 FPDI Library Example to Create Thumbnails of Existing PDF Document in Browser. index.php &lt;?php \/\/your variables $filename = 'Brand-Guide.pdf';","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","width":880,"height":495,"caption":"Default Featured Image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/php7-fpdi-create-thumbnails-of-existing-pdf-document\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"PHP 7 FPDI Create Thumbnails of Existing PDF Document"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2289","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=2289"}],"version-history":[{"count":0,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2289\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/1762"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=2289"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=2289"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=2289"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}