This page is a translated version of the page Extension:PDFEmbed and the translation is 87% complete.
MediaWiki扩展手册
PDFEmbed
发行状态: 稳定版
实现 标签 , 媒体
描述 允許將PDF文件嵌入頁面
作者 Alexia E. Smith, Wolfgang Fahl, Mark A. Hershberger, Chris Koerner and Spas Z.Spasov (Alexia E. Smith留言)
最新版本 3.0.1 (2023-01-24)
MediaWiki >= 1.29.0
PHP 7.3+
数据库更改
Composer mwstake/mediawiki-pdfembed
许可协议 GNU較寬鬆公共授權條款3.0
下載
$wgPdfEmbed (width, height)
pdf
embed_pdf
季度下載量 12 (Ranked 135th)

PDFEmbed擴展允許PDF文件(上傳到Wiki)可以使用‎<pdf>‎</pdf>標籤嵌入到Wiki頁面中。 將自動添加PDF文件擴展,並且必須配置默認權限。 將來的功能將允許此擴展充當PDF文件的媒體處理程序。

安裝

配置

If the default configuration needs to be altered add these settings to the "LocalSettings.php" file below the require:

// Default width for the PDF object container.
$wgPdfEmbed['width'] = 800;

// Default height for the PDF object container.
$wgPdfEmbed['height'] = 1090;

//Allow user the usage of the pdf tag
$wgGroupPermissions['*']['embed_pdf'] = true;

使用示例

The PDF to be embedded must first be uploaded to the wiki through "Special:Upload".

<pdf>File:Example.pdf</pdf>

具有可選的寬度和高度。

<pdf width="500" height="300">File:Example.pdf</pdf>

呈現文檔後滾動到第10頁。

<pdf page="10">File:Example.pdf</pdf>

參見