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