summaryrefslogtreecommitdiffstats
path: root/notFinishedCode/pChart2.1.2/examples/example.singlebarcode128.php
diff options
context:
space:
mode:
Diffstat (limited to 'notFinishedCode/pChart2.1.2/examples/example.singlebarcode128.php')
-rw-r--r--notFinishedCode/pChart2.1.2/examples/example.singlebarcode128.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/notFinishedCode/pChart2.1.2/examples/example.singlebarcode128.php b/notFinishedCode/pChart2.1.2/examples/example.singlebarcode128.php
deleted file mode 100644
index 658e0bc..0000000
--- a/notFinishedCode/pChart2.1.2/examples/example.singlebarcode128.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php
- /* CAT:Barcode */
-
- /* pChart library inclusions */
- include("../class/pDraw.class.php");
- include("../class/pBarcode128.class.php");
- include("../class/pImage.class.php");
-
- /* Create the barcode 128 object */
- $Barcode = new pBarcode128("../");
-
- /* String to be written on the barcode */
- $String = "This is a test";
-
- /* Retrieve the barcode projected size */
- $Settings = array("ShowLegend"=>TRUE,"DrawArea"=>TRUE);
- $Size = $Barcode->getSize($String,$Settings);
-
- /* Create the pChart object */
- $myPicture = new pImage($Size["Width"],$Size["Height"]);
-
- /* Set the font to use */
- $myPicture->setFontProperties(array("FontName"=>"../fonts/GeosansLight.ttf"));
-
- /* Render the barcode */
- $Barcode->draw($myPicture,$String,10,10,$Settings);
-
- /* Render the picture (choose the best way) */
- $myPicture->autoOutput("pictures/example.singlebarcode128.png");
-?> \ No newline at end of file