pointybeard/pdfinfo 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

pointybeard/pdfinfo

最新稳定版本:1.0.1

Composer 安装命令:

composer require pointybeard/pdfinfo

包简介

PHP Wrapper for pdfinfo

README 文档

README

A PHP wrapper class for pdfinfo which is part of the Poppler PDF rendering library.

Installation

This library is installed via Composer. To install, use composer require pointybeard/pdfinfo or add "pointybeard/pdfinfo": "~1.0.0" to your composer.json file.

And run composer to update your dependencies:

$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update

pdfinfo

pdfinfo, which is part of the Poppler PDF rendering library, must be installed. On ubuntu, this is done with the following command:

apt-get install poppler-utils

Requirements

Usage

Here is a basic usage example:

<?php

declare(strict_types=1);

include "vendor/autoload.php";

use pointybeard\PdfInfo\PdfInfo;

$info = new PdfInfo("test.pdf");

var_dump(
    $info,
    $info->toArray(),
    $info->toJson(),
    (string)$info,
    $info->{"Page size"},
    $info->dimensions(),
    $info->height(),
    $info->width()
);

Support

If you believe you have found a bug, please report it using the GitHub issue tracker, or better yet, fork the library and submit a pull request.

Contributing

We encourage you to contribute to this project. Please check out the Contributing documentation for guidelines about how to get involved.

License

"PHP Wrapper for pdfinfo" is released under the MIT License.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-08-09