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