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 $petition_party_line4 = $d['petition_party_line4'];
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
55 // Party Information
56 imagettftext($jpg_image, 50, 0, 200, 580, $black, $font_path, $petition_party_line1 );
57 imagettftext($jpg_image, 50, 0, 700, 700, $black, $font_path, $petition_party_line2 );
58 imagettftext($jpg_image, 50, 0, 340, 790, $black, $font_path, $petition_party_line3 );
59 imagettftext($jpg_image, 50, 0, 340, 870, $black, $font_path, $petition_party_line4 );
60
61
62
63 // name
64 imagettftext($jpg_image, 50, 0, 350+$offset_x, 1070+$offset_y, $black, $font_path, $_COOKIE['pNAME']);
65 //imagettftext($jpg_image, 50, 0, 350, 1070, $black, $font_path, $debug);
66
67 // address
68 imagettftext($jpg_image, 50, 0, 400+$offset_x, 1300+$offset_y, $black, $font_path, $_COOKIE['pADDRESS']);
69 // date of birth
70 if($DOB != ''){
71 imagettftext($jpg_image, 50, 0, 1900+$offset_x, 1070+$offset_y, $black, $font_path, date('m d Y',strtotime($DOB)));
72 }
73 // date signed
74 //imagettftext($jpg_image, 50, 0, 1900, 1200, $black, $font_path, date('m d Y',strtotime($SIGNED)));
75
76
77 // name
78 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 2880+$offset_y_circulator, $black, $font_path, $_COOKIE['pNAME']);
79 // address
80 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 2975+$offset_y_circulator, $black, $font_path, $_COOKIE['pADDRESS1']);
81 // city state zip
82 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 3065+$offset_y_circulator, $black, $font_path, $_COOKIE['pADDRESS2']);
83 // phone
84 imagettftext($jpg_image, 40, 0, 100+$offset_x_circulator, 3160+$offset_y_circulator, $black, $font_path, $_COOKIE['pPHONE']);
85
86 // date signed
87 //imagettftext($jpg_image, 40, 0, 2150, 3150, $black, $font_path, date('m / d / y',strtotime($SIGNED)));
88
89
90 // Send Image to Browser
91 imagejpeg($jpg_image);
92
93 // Clear Memory
94 imagedestroy($jpg_image);
95 ?>