承接 smartysoft/yii2-smartysoft-pdfjs 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

smartysoft/yii2-smartysoft-pdfjs

最新稳定版本:2.5.2073

Composer 安装命令:

composer require smartysoft/yii2-smartysoft-pdfjs

包简介

Yii2 Extension pdf.js Portable Document Format (PDF) viewer

README 文档

README

Yii2 PDFJS bundle of PDF.js plugin. PDF.js Portable Document Format (PDF) viewer.

Installation

The preferred way to install this extension is through composer.

Either run

php composer require --prefer-dist smartysoft/yii2-smartysoft-pdfjs ">=1.0"

or add

"smartysoft/yii2-smartysoft-pdfjs": ">=1.0"

to the require section of your composer.json file.

Module Setup

The extension has been created as a module to enable access preview pdf file. you must add the module to your configuration file.

//....

'modules'=>[
  'pdfjs' => [
       'class' => '\yii2assets\pdfjs\Module',
   ],
],

//...

Usage

Once the extension is installed, simply use it in your code by :

<?php
use yii\helpers\Url;
?>

<?= \yii2assets\pdfjs\PdfJs::widget([
  'url'=> Url::base().'/downloads/manualStart_up.pdf'
]); ?>

Using a yii2-pdfjs widget inside a modal dialog.

<?php
use yii\bootstrap\Modal;
use yii\helpers\Url;

Modal::begin([
    'header' => '<h2>Hello world</h2>',
    'toggleButton' => ['label' => 'click me'],
]);

echo \yii2assets\pdfjs\PdfJs::widget([
  'url' => Url::base().'/downloads/manualStart_up.pdf'
]);

Modal::end();
?>

Using a yii2-pdfjs widget fullscreen viewer

http://app-url/index.php?r=pdfjs&file=download/manualStart_up.pdf

Config Width & Height

<?php
use yii\helpers\Url;
?>

<?= \yii2assets\pdfjs\PdfJs::widget([
  'width'=>'100%',
  'heith'=> '500px',
  'url'=> Url::base().'/downloads/pdfjs.pdf'
]);
?>

Config disable toolbar buttons

<?php
use yii\helpers\Url;
?>

<?= \yii2assets\pdfjs\PdfJs::widget([
  'url'=> Url::base().'/downloads/pdfjs.pdf',
  'buttons'=>[
    'presentationMode' => false,
    'openFile' => false,
    'print' => true,
    'download' => true,
    'viewBookmark' => false,
    'secondaryToolbarToggle' => false
  ]
]);
?>

Add Watermark text

//....

'modules'=>[
  'pdfjs' => [
       'class' => '\yii2assets\pdfjs\Module',
       'waterMark'=>[
         'text'=>' Yii2 PDF.JS',
         'color'=> 'red',
         'alpha'=>'0.3'
       ]
   ],
],

//...

统计信息

  • 总下载量: 561
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: JavaScript

其他信息

  • 授权协议: Apache-2.0
  • 更新时间: 2019-02-21