Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
pdf-customizer
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
ddcd7cb7
authored
2016-06-24 12:49:56 -0400
by
Jeff Balicki
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
turned of showborders
1 parent
f1fbbcea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app/Http/Controllers/PdfController.php
app/Http/Controllers/PdfController.php
View file @
ddcd7cb
...
...
@@ -39,7 +39,7 @@ class PdfController extends Controller
$storagePath
=
Storage
::
disk
(
'public'
)
->
getDriver
()
->
getAdapter
()
->
getPathPrefix
();
$outfile
=
$storagePath
.
$searchpath
.
"/new_"
.
$rows
[
0
]
->
file
;
$download
=
'
http://localhost:8888/pdf-customizer/public/fileentry/getPDF
/'
.
$searchpath
.
"/new_"
.
$rows
[
0
]
->
file
;
$download
=
'/'
.
$searchpath
.
"/new_"
.
$rows
[
0
]
->
file
;
try
{
...
...
@@ -178,7 +178,7 @@ try {
if
(
$fitmethod
==
''
){
$fitm
=
""
;
}
else
{
$fitm
=
"fitmethod="
.
$fitmethod
;}
$num_optlist
=
"fillcolor={"
.
$fontColor
.
" } position=
{
".$fontAlignment."
}
boxsize={"
.
$textwidth
.
" "
.
$textheight
.
"} fontsize="
.
$fontSize
.
" "
.
$fitm
.
"
showborder
"
;
$num_optlist
=
"fillcolor={"
.
$fontColor
.
" } position=
{
".$fontAlignment."
}
boxsize={"
.
$textwidth
.
" "
.
$textheight
.
"} fontsize="
.
$fontSize
.
" "
.
$fitm
.
" "
;
$p
->
fit_textline
(
$textline
,
$textLRight
,
$textLUp
,
$num_optlist
);
}
...
...
Please
register
or
sign in
to post a comment