https://github.com/codelinered/pdf-image
Converts uploaded images to PDF, merges 2 PDF files to 1 or converts PDF pages to images.
https://github.com/codelinered/pdf-image
converter image imagick merge pdf pdf-converter php php8 zend
Last synced: 3 months ago
JSON representation
Converts uploaded images to PDF, merges 2 PDF files to 1 or converts PDF pages to images.
- Host: GitHub
- URL: https://github.com/codelinered/pdf-image
- Owner: CodelineRed
- Created: 2023-03-27T20:17:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-03T16:32:09.000Z (9 months ago)
- Last Synced: 2025-03-23T22:37:08.957Z (4 months ago)
- Topics: converter, image, imagick, merge, pdf, pdf-converter, php, php8, zend
- Language: PHP
- Homepage:
- Size: 66.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# PDF Image - CodelineRed
Take a look at [screenshots](https://github.com/CodelineRed/pdf-image/blob/main/screenshots).
[**Demo page**](https://pi.codelinered.net)
## Table of contents
- [Included Third Party Code](#included)
- Install Guides
- [Install Main Build](#install-main-build)
- [Install with Docker (optional)](#install-with-docker-optional)## Included
- [Bootstrap 5.3](https://getbootstrap.com)
- [Font Awesome 6.6](https://fontawesome.com)
- [FPDI 2.6](https://packagist.org/packages/setasign/fpdi)
- [TCPDF 6.7](https://packagist.org/packages/tecnickcom/tcpdf)
- Parts of [Symfony 7.1](https://symfony.com)
- Form
- Translation
- Validator## Install Main Build
### Required
- PHP ^8.2
- PHP GD extension### Optional
- [Node.js](http://nodejs.org/en/download/) >=18.0
- [npm](http://www.npmjs.com/get-npm) `npm i npm@latest -g`
- PHP Imagick extension
- PHP ZIP extensionOpen console on your OS and navigate to your project folder.
Choose one of the versions below.### With Composer
```shell
php composer create-project codelinered/pdf-image && cd pdf-image
```### With GIT
```shell
git clone https://github.com/CodelineRed/pdf-image.git && cd pdf-image && git checkout main
```### With ZIP
Unix
```shell
wget -O pi-main.zip https://github.com/CodelineRed/pdf-image/archive/main.zip && unzip pi-main.zip && cd pdf-image-main
```Windows 10+
```shell
curl -L -o pi-main.zip https://github.com/CodelineRed/pdf-image/archive/main.zip && tar -xf pi-main.zip && cd pdf-image-main
```## Install with Docker (optional)
### Required
- [Docker](https://www.docker.com)Open console on your OS and navigate to the place where you want to install the project.
Unix
- Start Docker `systemctl docker start`
- Copy and run commands below
```shell
docker run --rm --interactive --tty --volume $PWD:/app composer create-project --ignore-platform-reqs codelinered/pdf-image && cd pdf-image && docker-compose build && docker-compose up -d && xdg-open http://localhost:7708
```Windows 10+
- Start Docker Desktop `"C:\Program Files\Docker\Docker Desktop.exe"`
- Copy and run commands below
```shell
docker run --rm --interactive --tty --volume %cd%:/app composer create-project --ignore-platform-reqs codelinered/pdf-image && cd pdf-image && docker-compose build && docker-compose up -d && start http://localhost:7708
```Open [localhost:7708](http://localhost:7708) for Website.