forked from dmtx/php-dmtx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request dmtx#2 from zVPS/master
Symbol constants, SVG output, fixed dmtxWrite::save params not working
- Loading branch information
Showing
4 changed files
with
564 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
README for libdmtx-php version 0.7.3 - September 4, 2009 | ||
----------------------------------------------------------------- | ||
|
||
***************************************************************** | ||
|
||
IMPORTANT: A new set of PHP bindings for libdmtx named php-dmtx | ||
has been released by Mikko Koppanen. Mikko's bindings perform | ||
both encoding and decoding of Data Matrix barcodes, and the old | ||
PHP bindings bundled with libdmtx (libdmtx-php) will likely be | ||
deprecated soon. Please try out Mikko's package, available at: | ||
|
||
http://github.com/mkoppanen/php-dmtx | ||
|
||
***************************************************************** | ||
|
||
libdmtx-php is a PHP wrapper for libdmtx that was written by | ||
Christian Hentschel and is distributed as part of the libdmtx | ||
package. | ||
|
||
|
||
1. libdmtx Installation | ||
----------------------------------------------------------------- | ||
|
||
libdmtx must be installed on your system before trying to install | ||
and run libdmtx-php. Refer to the INSTALL file in the main | ||
libdmtx directory for instructions on how to do this. | ||
|
||
|
||
2. libdmtx-php Installation | ||
----------------------------------------------------------------- | ||
|
||
1) $ phpize | ||
|
||
2) $ ./configure [--prefix install directory]; | ||
|
||
3) $ make install | ||
|
||
3) Edit system php.ini file to include "extension=dmtx.so" | ||
|
||
4) Test with dmtx.php | ||
(e.g., Browse http://localhost/dmtx.php?d=123456) | ||
|
||
|
||
3. Dependencies | ||
----------------------------------------------------------------- | ||
|
||
These packages are required to install and run libdmtx-php: | ||
|
||
PHP: http://www.php.net | ||
|
||
If you are using an RPM-based system then you can test for the | ||
following packages: | ||
|
||
php | ||
php-cli | ||
php-common | ||
php-devel | ||
|
||
Some systems may also require: | ||
|
||
php-gd | ||
|
||
|
||
4. This Document | ||
----------------------------------------------------------------- | ||
|
||
This document is derived from the wiki page located at: | ||
|
||
http://libdmtx.wikidot.com/libdmtx-php-wrapper | ||
|
||
If you find an error or have additional helpful information, | ||
please edit the wiki directly with your updates. |
Oops, something went wrong.