Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
471d3b75
Commit
471d3b75
authored
Jan 11, 2018
by
Carsten Rose
Browse files
Save.php: add phpDoc
parent
77c1fff6
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/Save.php
View file @
471d3b75
...
...
@@ -568,6 +568,13 @@ class Save {
}
/**
* Check's if the file $pathFileName should be splitted in one file per page. If no: do nothing and return.
* The only possible split target file format is 'svg': fileSplit=svg.
* The splitted files will be saved under fileDestinationSplit=some/path/to/file.%02d.svg. A printf style token,
* like '%02d', is needed to create distinguished filename's. See 'man pdf2svg' for further details.
* For every created file, a record in table 'Split' is created (see splitSvg() ), storing the pathFileName of the
* current page/file.
*
* @param array $formElement
* @param $pathFileName
* @throws UserFormException
...
...
@@ -597,6 +604,9 @@ class Save {
}
/**
* Split's the PDF file $pathFileNameSrc in several SVG-file, one per page.
* For every created file, a record in table 'Split' is created, storing the pathFileName to the individual file.
*
* @param $pathFileNameSrc
* @param $fileDestinationSplit
* @throws CodeException
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment