All Projects → rospdf → Pdf Php

rospdf / Pdf Php

Licence: other
Official R&OS PHP Pdf repository

Labels

Projects that are alternatives of or similar to Pdf Php

Navigation
ROS Navigation stack. Code for finding where the robot is and how it can get somewhere else.
Stars: ✭ 1,248 (+1186.6%)
Mutual labels:  ros
Rvd
Robot Vulnerability Database. An archive of robot vulnerabilities and bugs.
Stars: ✭ 87 (-10.31%)
Mutual labels:  ros
Facebook ssl pinning
Bypassing SSL Pinning in Facebook Android App
Stars: ✭ 95 (-2.06%)
Mutual labels:  native
Aws Robomaker Small Warehouse World
This Gazebo world is well suited for organizations who are building and testing robot applications for warehouse and logistics use cases.
Stars: ✭ 85 (-12.37%)
Mutual labels:  ros
Ira laser tools
All laser type assemblers and manipulators.
Stars: ✭ 87 (-10.31%)
Mutual labels:  ros
Ros tutorials
ROS Tutorials for beginner
Stars: ✭ 88 (-9.28%)
Mutual labels:  ros
Node Desktop Idle
Node/Electron module to detect idle desktop user (macOS, Windows, Linux, FreeBSD and OpenBSD)
Stars: ✭ 81 (-16.49%)
Mutual labels:  native
Awesome Visual Slam
📚 The list of vision-based SLAM / Visual Odometry open source, blogs, and papers
Stars: ✭ 1,336 (+1277.32%)
Mutual labels:  ros
Android Luajit Launcher
Android NativeActivity based launcher for LuaJIT, implementing the main loop within Lua land via FFI
Stars: ✭ 87 (-10.31%)
Mutual labels:  native
Webots
Webots Robot Simulator
Stars: ✭ 1,324 (+1264.95%)
Mutual labels:  ros
Simulator
A ROS/ROS2 Multi-robot Simulator for Autonomous Vehicles
Stars: ✭ 1,260 (+1198.97%)
Mutual labels:  ros
React Native Circle Button
A Customizable React Native Circle Button
Stars: ✭ 87 (-10.31%)
Mutual labels:  native
Mrpt navigation
ROS nodes wrapping core MRPT functionality: localization, autonomous navigation, rawlogs, etc.
Stars: ✭ 90 (-7.22%)
Mutual labels:  ros
Mrpt slam
ROS wrappers for SLAM algorithms in MRPT
Stars: ✭ 84 (-13.4%)
Mutual labels:  ros
Ti.worker
Use Multi-Threading / Worker Threads in Appcelerator Titanium.
Stars: ✭ 95 (-2.06%)
Mutual labels:  native
Ros Openpose
CMU's OpenPose for ROS
Stars: ✭ 81 (-16.49%)
Mutual labels:  ros
Iamport React Native
React Native용 아임포트 일반.결제 및 휴대폰 본인인증 모듈입니다.
Stars: ✭ 88 (-9.28%)
Mutual labels:  native
Online learning
Online Learning for Human Detection in 3D Point Clouds
Stars: ✭ 97 (+0%)
Mutual labels:  ros
Robot cal tools
A suite of tools focused on calibration of sensors for robotic workcell development
Stars: ✭ 96 (-1.03%)
Mutual labels:  ros
Cipher.so
A simple way to encrypt your secure data like passwords into a native .so library.
Stars: ✭ 1,308 (+1248.45%)
Mutual labels:  native

ROS PHP Pdf creation class

Latest Stable Version Total Downloads Daily Downloads License Build Status Donations Badge

ros.jpg

This is the offical GIT clone from the R&OS PHP Pdf class previously stored on sourceforge.net/projects/pdf-php. Development will take place here now.

The R&OS Pdf class is used to generate PDF Documents using PHP without installing any additional modules or extensions It comes with a base class called "Cpdf.php" plus a helper class "Cezpdf.php" to generate tables, add backgrounds and provide paging.

Features

  • Quick and easy to use
  • Support for extension classes
  • Unicode and ANSI formated text
  • Custom TTF fonts and font subsetting (version >= 0.11.8)
  • Auto page and line breaks
  • Text alignments (left, right, center, justified)
  • Linked XObjects
  • Internal and external links
  • Compression by using gzcompress
  • Encryption 40bit, 128bit since PDF 1.4
  • Image support for JPEG, PNG and GIF (partly)
  • Template support

Installation

Manual Download

Open the RELEASE page and pick the latest version to download.

Extract the archive into your project directory

Clone via git

You can also use git to install it using:

git clone https://github.com/rospdf/pdf-php.git
git checkout <latest-version>

Installation via composer

This library is also available on the dependecy manager composer - https://packagist.org/packages/rospdf/pdf-php

Please follow the steps here to install. Once this is done one simple command will get all dependencies for the package rospdf/pdf-php

./composer.phar require rospdf/pdf-php

For more details on how to use composer please refer to the documentation - https://getcomposer.org/doc/

Example

<?php

include 'src/Cezpdf.php'; // Or use 'vendor/autoload.php' when installed through composer

// Initialize a ROS PDF class object using DIN-A4, with background color gray
$pdf = new Cezpdf('a4','portrait','color',[0.8,0.8,0.8]);
// Set pdf Bleedbox
$pdf->ezSetMargins(20,20,20,20);
// Use one of the pdf core fonts
$mainFont = 'Times-Roman';
// Select the font
$pdf->selectFont($mainFont);
// Define the font size
$size=12;
// Modified to use the local file if it can
$pdf->openHere('Fit');

// Output some colored text by using text directives and justify it to the right of the document
$pdf->ezText("PDF with some <c:color:1,0,0>blue</c:color> <c:color:0,1,0>red</c:color> and <c:color:0,0,1>green</c:color> colours", $size, ['justification'=>'right']);
// Output the pdf as stream, but uncompress
$pdf->ezStream(['compress'=>0]);
?>

Contributors

ole1986 is lead developer.

See the full list of contributors.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].