Update header.php
[clinton/MarylandElectronicPetitionSignature.git] / admin / print.php
1 <?php
2 include_once('/var/www/secure.php');
3 include_once('../slack.php');
4 $id = intval($_GET['id']);
5 $name=$_GET['name'];
6 $now = date('r');
7 if ($id == 0 || $name == ''){
8 die("Error #".__LINE__);
9 }
10 $petition->query("update signatures set printed_status = '$name printed on $now' where id = '$id' ");
11 $q = "select * from signatures where id = '$id' ";
12 $r = $petition->query($q);
13 $d = mysqli_fetch_array($r);
14 $DOB = $d['date_of_birth'];
15 $SIGNED = $d['date_time_signed'];
16 $PETITION_ID = $d['petition_id'];
17 $signed_name_as = ucwords(strtolower($d['signed_name_as']));
18 $signed_name_as_circulator = ucwords(strtolower($d['signed_name_as_circulator']));
19 $contact_phone = $d['contact_phone'];
20 $VoterList_table = $d['VoterList_table'];
21
22 slack_general("$name printing $VoterList_table petition $id",'md-petition');
23 $q2 = "select * from $VoterList_table where VTRID = '$d[VTRID]' ";
24 $r2 = $petition->query($q2);
25 $d2 = mysqli_fetch_array($r2);
26 $FIRSTNAME = $d2['FIRSTNAME'];
27 $MIDDLENAME = $d2['MIDDLENAME'];
28 $LASTNAME = $d2['LASTNAME'];
29 $ADDRESS = $d2['ADDRESS'];
30 $RESIDENTIALCITY = $d2['RESIDENTIALCITY'];
31 $COUNTY = $d2['COUNTY'];
32 $RESIDENTIALZIP5 = $d2['RESIDENTIALZIP5'];
33 $full_name = "$FIRSTNAME $MIDDLENAME $LASTNAME";
34 $address = "$ADDRESS $RESIDENTIALCITY $RESIDENTIALZIP5";
35
36 $address1 = $ADDRESS;
37 $address2 = "$RESIDENTIALCITY, MD $RESIDENTIALZIP5";
38
39
40
41 $qX = "select * from petitions where petition_id = '$PETITION_ID'";
42 $rX = $petition->query($qX);
43 $dX = mysqli_fetch_array($rX);
44
45 $hide_county = $dX['hide_county_on_petition'];
46 $offset_x = $dX['offset_x_cords'];
47 $offset_y = $dX['offset_y_cords'];
48 $offset_x_circulator = $dX['offset_x_cords_circulator'];
49 $offset_y_circulator = $dX['offset_y_cords_circulator'];
50
51 // imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text )
52 // x how far from left
53 // y how far from top
54
55
56 //Set the Content Type
57 header('Content-type: image/jpeg');
58
59 // Create Image From Existing File -- going to have to make this a reqired size??? 2550x3300
60 $jpg_image = imagecreatefromjpeg("../".$dX['petition_jpg']);
61
62 // Allocate A Color For The Text
63 $black = imagecolorallocate($jpg_image, 0, 0, 0);
64
65 // Set Path to Font File
66 $font_path = '../files/coolvetica rg.ttf';
67 $font_path_sig = '../files/Claston Script.ttf';
68
69 if ($hide_county == 'NO'){
70 if ( $COUNTY == 'Baltimore City'){
71 // City Checkbox
72 $cord = $dX['text_cord_cityX'];
73 $array = explode(",",$cord);
74 $debug = "$id : $cord : $array[0]";
75 imagettftext($jpg_image, $array[0], $array[1], $array[2], $array[3], $black, $font_path, 'X');
76 }else{
77 // County on Petition
78 $cord = $dX['text_cord_county'];
79 $array = explode(",",$cord);
80 imagettftext($jpg_image, $array[0], $array[1], $array[2], $array[3], $black, $font_path, str_replace('County','',$COUNTY) );
81 }
82 }
83 // name
84 imagettftext($jpg_image, 50, 0, 350+$offset_x, 1070+$offset_y, $black, $font_path, $full_name);
85 // signed
86 imagettftext($jpg_image, 70, 0, 400+$offset_x, 1180+$offset_y, $black, $font_path_sig, $signed_name_as);
87 // address
88 imagettftext($jpg_image, 50, 0, 400+$offset_x, 1300+$offset_y, $black, $font_path, $address);
89
90 // date of birth
91 if($DOB != ''){
92 imagettftext($jpg_image, 50, 0, 1900+$offset_x, 1070+$offset_y, $black, $font_path, date('m d Y',strtotime($DOB)));
93 }
94 // date signed
95 imagettftext($jpg_image, 50, 0, 1900+$offset_x, 1200+$offset_y, $black, $font_path, date('m d Y',strtotime($SIGNED)));
96
97
98 // name
99 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 2880+$offset_y_circulator, $black, $font_path, $full_name);
100 // address
101 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 2975+$offset_y_circulator, $black, $font_path, $address1);
102 // city state zip
103 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 3065+$offset_y_circulator, $black, $font_path, $address2);
104 // phone
105 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 3160+$offset_y_circulator, $black, $font_path, $contact_phone);
106 // signed
107 imagettftext($jpg_image, 70, 0, 1290+$offset_x_circulator, 3160+$offset_y_circulator, $black, $font_path_sig, $signed_name_as_circulator);
108 // date signed
109 imagettftext($jpg_image, 50, 0, 2150+$offset_x_circulator, 3160+$offset_y_circulator, $black, $font_path, date('m / d / y',strtotime($SIGNED)));
110
111
112
113 // Send Image to Browser
114 imagejpeg($jpg_image);
115
116 // Clear Memory
117 imagedestroy($jpg_image);
118 ?>