Title: PDF Thumbnail Generator
Author: kubiq
Published: <strong>2022년 7월 8일</strong>
Last modified: 2025년 12월 1일

---

플러그인 검색

![](https://ps.w.org/pdf-thumbnail-generator/assets/banner-772x250.png?rev=2753908)

![](https://ps.w.org/pdf-thumbnail-generator/assets/icon.svg?rev=2753908)

# PDF Thumbnail Generator

 작성자: [kubiq](https://profiles.wordpress.org/kubiq/)

[다운로드](https://downloads.wordpress.org/plugin/pdf-thumbnail-generator.1.5.zip)

 * [세부사항](https://ko.wordpress.org/plugins/pdf-thumbnail-generator/#description)
 * [평가](https://ko.wordpress.org/plugins/pdf-thumbnail-generator/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/pdf-thumbnail-generator/#installation)
 * [개발](https://ko.wordpress.org/plugins/pdf-thumbnail-generator/#developers)

 [지원](https://wordpress.org/support/plugin/pdf-thumbnail-generator/)

## 설명

Generates thumbnail for PDF file automatically after file is uploaded to the Media
library.

You can also generate thumbnails for old PDF files that are already in the Media
library – you can generate missing thumbnails or regenerate all thumbnails.

**Imagick library must be installed on your server, otherwise this plugin will not
work**

 * automated test after plugin activation to make sure it will work on your server
 * works with all types of WordPress installations: domain, subdomain, subdirectory,
   multisite/network
 * works on Apache and NGiNX
 * automatically generate thumbnail for new uploaded PDFs
 * (re)generate thumbnails for existing PDFs in Media library
 * set maximum width of PDF thumbnail
 * set maximum height of PDF thumbnail
 * set image quality of PDF thumbnail
 * set image file type of PDF thumbnail

### Shortcodes

### pdf_thumbnail

Maybe you want to display PDF thumbnail by using a shortcode

    ```
    [pdf_thumbnail id="123"]
    ```

### pdf_thumbnail_url

Maybe you want to display PDF thumbnail url by using a shortcode

    ```
    [pdf_thumbnail_url id="123"]
    ```

### pdf_clickable_thumbnail

Maybe you want to display clickable PDF thumbnail that will open PDF in new tab

    ```
    [pdf_clickable_thumbnail id="123"]
    ```

 

### Functions

### get_pdf_thumbnail_url

If you want to return PDF thumbnail URL you can use

    ```
    get_pdf_thumbnail_url( $pdf_id )
    ```

it works similar to `wp_get_attachment_url` and it will return something like

    ```
    https://site.com/wp-content/uploads/2022/01/example.pdf.png
    ```

### get_pdf_thumbnail_path

If you want to return PDF thumbnail URL you can use

    ```
    get_pdf_thumbnail_path( $pdf_id )
    ```

it works similar to `get_attached_file` and it will return something like

    ```
    /www/site.com/wp-content/uploads/2022/01/example.pdf.png
    ```

### get_pdf_thumbnail_image_src

If you want to return PDF thumbnail url, width and height you can use

    ```
    get_pdf_thumbnail_image_src( $pdf_id )
    ```

it works similar to `wp_get_attachment_image_src` and it will return something like

    ```
    [
        0 => 'https://site.com/wp-content/uploads/2022/01/example.pdf.png',
        1 => 600,
        2 => 800
    ]
    ```

### get_pdf_thumbnail_image

If you want to return PDF thumbnail image tag you can use

    ```
    get_pdf_thumbnail_image( $pdf_id )
    ```

it works similar to `wp_get_attachment_image` and it will return something like

    ```
    <img src="https://site.com/wp-content/uploads/2022/01/example.pdf.png" width="600" height="800" alt="example" loading="lazy">
    ```

 

### Hooks

### pdf_thumbnail_max_width

Maybe you want to change global PDF thumbnail max_width for a specific PDF file

    ```
    add_filter( 'pdf_thumbnail_max_width', function( $max_width, $pdf_id ){
        if( $pdf_id == 123 ){
            return 1024;
        }
        return $max_width;
    }, 10, 2 );
    ```

### pdf_thumbnail_max_height

Maybe you want to change global PDF thumbnail max_width for a specific PDF file

    ```
    add_filter( 'pdf_thumbnail_max_height', function( $max_height, $pdf_id ){
        if( $pdf_id == 123 ){
            return 768;
        }
        return $max_height;
    }, 10, 2 );
    ```

### pdf_thumbnail_quality

Maybe you want to change global PDF thumbnail quality for a specific PDF file

    ```
    add_filter( 'pdf_thumbnail_quality', function( $quality, $pdf_id ){
        if( $pdf_id == 123 ){
            return 100;
        }
        return $quality;
    }, 10, 2 );
    ```

### pdf_thumbnail_type

Maybe you want to change global PDF thumbnail file type for a specific PDF file

    ```
    add_filter( 'pdf_thumbnail_type', function( $type, $pdf_id ){
        if( $pdf_id == 123 ){
            return 'png'; // or 'jpg'
        }
        return $type;
    }, 10, 2 );
    ```

### pdf_thumbnail_bgcolor

Maybe you want to change default PDF thumbnail background for a specific PDF file

    ```
    add_filter( 'pdf_thumbnail_bgcolor', function( $bgcolor, $pdf_id ){
        if( $pdf_id == 123 ){
            return 'black'; // default is 'white'
        }
        return $bgcolor;
    }, 10, 2 );
    ```

### pdf_thumbnail_page_number

Maybe you want to PDF thumbnail page number for a specific PDF file

    ```
    add_filter( 'pdf_thumbnail_page_number', function( $page, $pdf_id ){
        if( $pdf_id == 123 ){
            return 1; // default is 0
        }
        return $page;
    }, 10, 2 );
    ```

### pdf_thumbnail_filename

Maybe you want to PDF thumbnail filename for a specific PDF file

    ```
    add_filter( 'pdf_thumbnail_filename', function( $filename, $pdf_id ){
        if( $pdf_id == 123 ){
            return str_replace( '.pdf.png', '.png', $filename );
        }
        return $filename;
    }, 10, 2 );
    ```

### pdf_thumbnail_imagick

Maybe you want to add watermark to PDF thumbnail for a specific PDF file

    ```
    add_filter( 'pdf_thumbnail_imagick', function( $imagick, $pdf_id ){
        if( $pdf_id == 123 ){
            // add your watermark here
        }
        return $imagick;
    }, 10, 2 );
    ```

### get_pdf_thumbnail_image_attributes

Maybe you want to change attributes for image tag from `get_pdf_thumbnail_image`
function

    ```
    add_filter( 'get_pdf_thumbnail_image_attributes', function( $attr, $pdf_id ){
        $attr['loading'] = 'eager';
        return $attr;
    }, 10, 2 );
    ```

### pdf_thumbnail_generated

Maybe you want to do something after the thumbnail is generated

    ```
    add_action( 'pdf_thumbnail_generated', function( $thumbnail_path, $pdf_id ){
        // do somthing with the local file $thumbnail_path
    }, 10, 2 );
    ```

## 스크린샷

[[

## 설치

 1. Upload `pdf-thumbnail-generator` directory to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress

## FAQ

### Plugin requirements

PHP 5.6 or higher
 Imagick extension

### PDF thumbnails stored location

PDF thumbnails are generated in the same directory as original PDF file. Example:

pdf file: `/wp-content/uploads/2022/01/example.pdf` thumbnail: `/wp-content/uploads/
2022/01/example.pdf.png`

## 후기

![](https://secure.gravatar.com/avatar/53f7547b0ab3852017f7e4dd8b6dc6993b46c8b9f71ec59c8cc1457a08b885aa?
s=60&d=retro&r=g)

### 󠀁[Great Little Plugin](https://wordpress.org/support/topic/great-little-plugin-365/)󠁿

 [DarkLight Digital](https://profiles.wordpress.org/darklightlaser/) 2025년 2월 
17일

Does what it says on the tin! Generates a thumbnail which can be used however you
need to. Great for building a library of pdfs – wrap the shortcode in a link and
BANG, you’re done!

![](https://secure.gravatar.com/avatar/5e5750dffa01a908cef8e9630bb6febf08e8e533796793a3c74e11743fd19edf?
s=60&d=retro&r=g)

### 󠀁[Invaluable for building document libraries and the like](https://wordpress.org/support/topic/invaluable-for-building-document-libraries-and-the-like/)󠁿

 [Jeremy Varnham](https://profiles.wordpress.org/jvarn13/) 2024년 8월 1일

I’ve used this on multiple sites and have found it invaluable. While I’ve struggled
with getting the required ImageMagick set up and working on a few servers – each
one requiring a slightly different approach owing to different OS and security settings–
this is not the fault of the plugin or plugin author. I’m not sure what one reviewer
means by this being built-in to WordPress; to the best of my knowledge that is incorrect.

![](https://secure.gravatar.com/avatar/303518c80f6f6085242214a06a4fadfee403716e4606b4e220c8af7fdb0fd594?
s=60&d=retro&r=g)

### 󠀁[Very Helpful, Simple Yet Customizable](https://wordpress.org/support/topic/very-helpful-simple-yet-customizable/)󠁿

 [hommealone](https://profiles.wordpress.org/hommealone/) 2024년 7월 19일

In certain situations, this can be a very handy plugin. It works as advertised. 
It is simple to use, and allows developers many options of how to implement it and
customize it when needed. Using custom fields for file uploads, I’ve built this 
into template files, so my customers can simply upload their PDF files and have 
them presented nicely with no further effort required. In the right situation, it
can save many tedious and repetitive steps. It allows my clients to easily and automatically
present their PDF files in an attractive way without having to fire up Photoshop
or some other image creation method each time. No more need to upload a PDF file
and a separate image file. This plugin takes care of it all in one easy step. p.
s. – the developer seems to be excellent at responding to questions in the plugin’s
forum page too!

![](https://secure.gravatar.com/avatar/2225189e8044df879b3326c1371fcd0b2ce35b545f212ee06d580bab8c273539?
s=60&d=retro&r=g)

### 󠀁[High level of customization](https://wordpress.org/support/topic/high-level-of-customization/)󠁿

 [cvladan](https://profiles.wordpress.org/cvladan/) 2022년 12월 28일

This plugin exceeded my expectations by allowing me to dynamically preview a PDF
file without any links to it or similar. One of the standout features of this plugin
is its high level of extensibility. With numerous hooks provided, it is easy to 
customize and tailor the plugin to meet specific needs and requirements.

![](https://secure.gravatar.com/avatar/89b43d8d32b1049c31184d69670160c3bb02d1f74506aaf427b2f921278eb5a1?
s=60&d=retro&r=g)

### 󠀁[Very Useful Plugin](https://wordpress.org/support/topic/very-useful-plugin-1374/)󠁿

 [hilmon](https://profiles.wordpress.org/hilmon/) 2022년 10월 10일

Plugin works great. Very easy to use and implement.

 [ 모든 6 평가 읽기 ](https://wordpress.org/support/plugin/pdf-thumbnail-generator/reviews/)

## 기여자 & 개발자

“PDF Thumbnail Generator”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에
기여하였습니다.

기여자

 *   [ kubiq ](https://profiles.wordpress.org/kubiq/)

“PDF Thumbnail Generator”(이)가 1 개 언어로 번역되었습니다. 기여해 주셔서 [번역자](https://translate.wordpress.org/projects/wp-plugins/pdf-thumbnail-generator/contributors)
님께 감사드립니다.

[자국어로 “PDF Thumbnail Generator”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/pdf-thumbnail-generator)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/pdf-thumbnail-generator/)
는, [SVN 저장소](https://plugins.svn.wordpress.org/pdf-thumbnail-generator/)를 확인하시거나,
[개발 기록](https://plugins.trac.wordpress.org/log/pdf-thumbnail-generator/)을 [RSS](https://plugins.trac.wordpress.org/log/pdf-thumbnail-generator/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 1.5

 * tested on WP 6.9
 * new shortcode [pdf_clickable_thumbnail id=”123″] displays clickable PDF thumbnail
   that will open PDF in new tab on click
 * csrf security fix

#### 1.4

 * fix: more URL escaping

#### 1.3

 * tested on WP 6.6
 * escape URL in admin link to prevent XSS

#### 1.2

 * tested on WP 6.5

#### 1.1

 * tested on WP 6.4

#### 1.0

 * First version

## 기초

 *  버전 **1.5**
 *  최근 업데이트: **9개월 전**
 *  활성화된 설치 **2,000+**
 *  워드프레스 버전 ** 3.0.1 또는 그 이상 **
 *  다음까지 시험됨: **6.9.7**
 *  PHP 버전 ** 5.6 또는 그 이상 **
 *  언어
 * [English (US)](https://wordpress.org/plugins/pdf-thumbnail-generator/) 및 [Japanese](https://ja.wordpress.org/plugins/pdf-thumbnail-generator/).
 *  [자국어로 번역하기](https://translate.wordpress.org/projects/wp-plugins/pdf-thumbnail-generator)
 * 태그:
 * [creator](https://ko.wordpress.org/plugins/tags/creator/)[generator](https://ko.wordpress.org/plugins/tags/generator/)
   [image](https://ko.wordpress.org/plugins/tags/image/)[pdf](https://ko.wordpress.org/plugins/tags/pdf/)
   [thumbnail](https://ko.wordpress.org/plugins/tags/thumbnail/)
 *  [고급 보기](https://ko.wordpress.org/plugins/pdf-thumbnail-generator/advanced/)

## 평점

 별 5점 만점에 5점.

 *  [  5/5-별점 후기     ](https://wordpress.org/support/plugin/pdf-thumbnail-generator/reviews/?filter=5)
 *  [  0/4-별점 후기     ](https://wordpress.org/support/plugin/pdf-thumbnail-generator/reviews/?filter=4)
 *  [  0/3-별점 후기     ](https://wordpress.org/support/plugin/pdf-thumbnail-generator/reviews/?filter=3)
 *  [  0/2-별점 후기     ](https://wordpress.org/support/plugin/pdf-thumbnail-generator/reviews/?filter=2)
 *  [  0/1-별점 후기     ](https://wordpress.org/support/plugin/pdf-thumbnail-generator/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/pdf-thumbnail-generator/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/pdf-thumbnail-generator/reviews/)

## 기여자

 *   [ kubiq ](https://profiles.wordpress.org/kubiq/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/pdf-thumbnail-generator/)

## 기부

이 플러그인이 발전하도록 도우시겠습니까?

 [ 이 플러그인에 기부하기 ](https://www.paypal.me/jakubnovaksl)