PDFのサムネイル表示対応について

(from osdn.net/users/t_hayakawa)
PDF形式のサムネイル表示は対応しておりますか?

試しにfess_thumbnail.xmlに以下のようにpdf形式を追加してみたのですが、検索結果を見ても白の画像が表示されているだけでした。

何か解決策がございましたらご教示いただけますと幸いです。
よろしくお願いいたします。

使用しているFessのVer.10.3.2
OS:Ubuntu14.04LTS

<component name="msofficeThumbnailGenerator" class="org.codelibs.fess.thumbnail.impl.CommandGenerator">
	<property name="name">"msofficeThumbnailGenerator"</property>
	<property name="commandList">
		["${path}/generate-thumbnail",
		"msoffice",
		"${url}",
		"${outputFile}"]
	</property>
	<property name="generatorList">
		["${path}/generate-thumbnail"]
	</property>
	<postConstruct name="addCondition">
		<arg>"mimetype"</arg>
		<arg>"text/html"</arg>
	</postConstruct>
	<postConstruct name="addCondition">
		<arg>"mimetype"</arg>
		<arg>"application/vnd.openxmlformats-officedocument.wordprocessingml.document"
		</arg>
	</postConstruct>
	<postConstruct name="addCondition">
		<arg>"mimetype"</arg>
		<arg>"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
		</arg>
	</postConstruct>
	<postConstruct name="addCondition">
		<arg>"mimetype"</arg>
		<arg>"application/vnd.openxmlformats-officedocument.presentationml.presentation"
		</arg>
	</postConstruct>
	<postConstruct name="addCondition">
		<arg>"mimetype"</arg>
		<arg>"application/msword"
		</arg>
	</postConstruct>
	<postConstruct name="addCondition">
		<arg>"mimetype"</arg>
		<arg>"application/vnd.ms-excel"
		</arg>
	</postConstruct>
	<postConstruct name="addCondition">
		<arg>"mimetype"</arg>
		<arg>"application/vnd.ms-powerpoint"
		</arg>
	</postConstruct>
	<postConstruct name="addCondition">
		<arg>"mimetype"</arg>
		<arg>"application/rtf"
		</arg>
	</postConstruct>
	<postConstruct name="addCondition">
		<arg>"mimetype"</arg>
		<arg>"application/pdf"
		</arg>
	</postConstruct>
</component>

(from osdn.net/users/shinsuke)
msofficeThumbnailGeneratorはOffice系のファイルを対象にしているので、
そこにPDFを加えても表示されないと思います。generate-thumbnailコマンドを
修正して、pdfThumbnailGeneratorを加える等すれば表示されるにも思います。