ddcd7cb7 by Jeff Balicki

turned of showborders

1 parent f1fbbcea
...@@ -39,7 +39,7 @@ class PdfController extends Controller ...@@ -39,7 +39,7 @@ class PdfController extends Controller
39 39
40 $storagePath = Storage::disk('public')->getDriver()->getAdapter()->getPathPrefix(); 40 $storagePath = Storage::disk('public')->getDriver()->getAdapter()->getPathPrefix();
41 $outfile = $storagePath.$searchpath."/new_".$rows[0]->file; 41 $outfile = $storagePath.$searchpath."/new_".$rows[0]->file;
42 $download = 'http://localhost:8888/pdf-customizer/public/fileentry/getPDF/'.$searchpath."/new_".$rows[0]->file; 42 $download = '/'.$searchpath."/new_".$rows[0]->file;
43 43
44 try { 44 try {
45 45
...@@ -178,7 +178,7 @@ try { ...@@ -178,7 +178,7 @@ try {
178 if($fitmethod == ''){$fitm =""; 178 if($fitmethod == ''){$fitm ="";
179 }else{ $fitm = "fitmethod=".$fitmethod;} 179 }else{ $fitm = "fitmethod=".$fitmethod;}
180 180
181 $num_optlist = "fillcolor={".$fontColor." } position={".$fontAlignment."} boxsize={" . $textwidth." ".$textheight . "} fontsize=".$fontSize." ".$fitm. "showborder "; 181 $num_optlist = "fillcolor={".$fontColor." } position={".$fontAlignment."} boxsize={" . $textwidth." ".$textheight . "} fontsize=".$fontSize." ".$fitm. " ";
182 182
183 $p->fit_textline($textline, $textLRight, $textLUp, $num_optlist); 183 $p->fit_textline($textline, $textLRight, $textLUp, $num_optlist);
184 } 184 }
......