Add files via upload
[clinton/MarylandElectronicPetitionSignature.git] / hard_copy.php
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
5 include_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 $petition_party_line1 = $d['petition_party_line1'];
17 $petition_party_line2 = $d['petition_party_line2'];
18 $petition_party_line3 = $d['petition_party_line3'];
19
20
21
22 //Set the Content Type
23 header('Content-type: image/jpeg');
24
25 // Create Image From Existing File -- going to have to make this a reqired size??? 2550x3300
26 $JPG = $_COOKIE['pJPG'];
27 $jpg_image = imagecreatefromjpeg($JPG);
28
29 // Allocate A Color For The Text
30 $black = imagecolorallocate($jpg_image, 0, 0, 0);
31
32 // Set Path to Font File
33 $font_path = 'files/coolvetica rg.ttf';
34 $font_path_sig = 'files/Claston Script.ttf';
35
36
37 $DOB = $_COOKIE['pDOB'];
38 $SIGNED = date('Y-m-d');
39
40 if ($hide_county == 'NO'){
41 if ( $_COOKIE['pCOUNTY'] == 'Baltimore City' || $_COOKIE['debug'] == 'on'){
42 // City Checkbox
43 $cord = $d['text_cord_cityX'];
44 $array = explode(",",$cord);
45 $debug = "$id : $cord : $array[0]";
46 imagettftext($jpg_image, $array[0], $array[1], $array[2], $array[3], $black, $font_path, 'X');
47 }else{
48 // County on Petition
49 $cord = $d['text_cord_county'];
50 $array = explode(",",$cord);
51 imagettftext($jpg_image, $array[0], $array[1], $array[2], $array[3], $black, $font_path, str_replace('County','',$_COOKIE['pCOUNTY']) );
52 }
53 }
54 // name
55 imagettftext($jpg_image, 50, 0, 350+$offset_x, 1070+$offset_y, $black, $font_path, $_COOKIE['pNAME']);
56 //imagettftext($jpg_image, 50, 0, 350, 1070, $black, $font_path, $debug);
57
58 // address
59 imagettftext($jpg_image, 50, 0, 400+$offset_x, 1300+$offset_y, $black, $font_path, $_COOKIE['pADDRESS']);
60 // date of birth
61 if($DOB != ''){
62 imagettftext($jpg_image, 50, 0, 1900+$offset_x, 1070+$offset_y, $black, $font_path, date('m d Y',strtotime($DOB)));
63 }
64 // date signed
65 //imagettftext($jpg_image, 50, 0, 1900, 1200, $black, $font_path, date('m d Y',strtotime($SIGNED)));
66
67
68 // name
69 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 2880+$offset_y_circulator, $black, $font_path, $_COOKIE['pNAME']);
70 // address
71 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 2975+$offset_y_circulator, $black, $font_path, $_COOKIE['pADDRESS1']);
72 // city state zip
73 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 3065+$offset_y_circulator, $black, $font_path, $_COOKIE['pADDRESS2']);
74 // phone
75 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 3160+$offset_y_circulator, $black, $font_path, $_COOKIE['pPHONE']);
76
77 // date signed
78 //imagettftext($jpg_image, 40, 0, 2150, 3150, $black, $font_path, date('m / d / y',strtotime($SIGNED)));
79
80
81 // Send Image to Browser
82 imagejpeg($jpg_image);
83
84 // Clear Memory
85 imagedestroy($jpg_image);
86 ?>