Update analytics.php
[clinton/MarylandElectronicPetitionSignature.git] / hard_copy.php
... / ...
CommitLineData
1<?php
2// imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text )
3// x how far from left
4// y how far from top
5include_once('/var/www/secure.php');
6$id = $_COOKIE['pID'];
7$q = "select * from petitions where petition_id = '$id'";
8$r = $petition->query($q);
9$d = mysqli_fetch_array($r);
10$hide_county = $d['hide_county_on_petition'];
11$offset_x = $d['offset_x_cords'];
12$offset_y = $d['offset_y_cords'];
13$offset_x_circulator = $d['offset_x_cords_circulator'];
14$offset_y_circulator = $d['offset_y_cords_circulator'];
15
16
17//Set the Content Type
18header('Content-type: image/jpeg');
19
20// Create Image From Existing File -- going to have to make this a reqired size??? 2550x3300
21$JPG = $_COOKIE['pJPG'];
22$jpg_image = imagecreatefromjpeg($JPG);
23
24// Allocate A Color For The Text
25$black = imagecolorallocate($jpg_image, 0, 0, 0);
26
27// Set Path to Font File
28$font_path = 'files/coolvetica rg.ttf';
29$font_path_sig = 'files/Claston Script.ttf';
30
31
32$DOB = $_COOKIE['pDOB'];
33$SIGNED = date('Y-m-d');
34
35if ($hide_county == 'NO'){
36 if ( $_COOKIE['pCOUNTY'] == 'Baltimore City' || $_COOKIE['debug'] == 'on'){
37 // City Checkbox
38 $cord = $d['text_cord_cityX'];
39 $array = explode(",",$cord);
40 $debug = "$id : $cord : $array[0]";
41 imagettftext($jpg_image, $array[0], $array[1], $array[2], $array[3], $black, $font_path, 'X');
42 }else{
43 // County on Petition
44 $cord = $d['text_cord_county'];
45 $array = explode(",",$cord);
46 imagettftext($jpg_image, $array[0], $array[1], $array[2], $array[3], $black, $font_path, str_replace('County','',$_COOKIE['pCOUNTY']) );
47 }
48}
49// name
50imagettftext($jpg_image, 50, 0, 350+$offset_x, 1070+$offset_y, $black, $font_path, $_COOKIE['pNAME']);
51//imagettftext($jpg_image, 50, 0, 350, 1070, $black, $font_path, $debug);
52
53// address
54imagettftext($jpg_image, 50, 0, 400+$offset_x, 1300+$offset_y, $black, $font_path, $_COOKIE['pADDRESS']);
55// date of birth
56if($DOB != ''){
57 imagettftext($jpg_image, 50, 0, 1900+$offset_x, 1070+$offset_y, $black, $font_path, date('m d Y',strtotime($DOB)));
58}
59// date signed
60//imagettftext($jpg_image, 50, 0, 1900, 1200, $black, $font_path, date('m d Y',strtotime($SIGNED)));
61
62
63// name
64imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 2880+$offset_y_circulator, $black, $font_path, $_COOKIE['pNAME']);
65// address
66imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 2975+$offset_y_circulator, $black, $font_path, $_COOKIE['pADDRESS1']);
67// city state zip
68imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 3065+$offset_y_circulator, $black, $font_path, $_COOKIE['pADDRESS2']);
69// phone
70imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 3160+$offset_y_circulator, $black, $font_path, $_COOKIE['pPHONE']);
71
72// date signed
73//imagettftext($jpg_image, 40, 0, 2150, 3150, $black, $font_path, date('m / d / y',strtotime($SIGNED)));
74
75
76// Send Image to Browser
77imagejpeg($jpg_image);
78
79// Clear Memory
80imagedestroy($jpg_image);
81?>