Converts a file to another format while splitting the document into multiple files based on barcodes found and can be called with a POST Request to the following URL:
[POST] https://azure.leadtools.com/api/Conversion/ConvertBarcodeSplit
The following parameters are required unless indicated otherwise, and are used by all Conversion and Recognition API calls:
Parameter | Description | Accepted Values |
---|---|---|
fileUrl (Optional) |
The URL to the file to be processed. For more information, refer to the Cloud Services Overview section. | A string or URI containing a valid URL to the file to be uploaded. |
firstPage |
The first page in the file to process. | An integer value between 1 and the total number of pages in the file. |
lastPage |
The last page in the file to process. | Passing a value of -1 or 0 will indicate to the service that all pages between the First Page parameter, and the last page in the file will be processed. Otherwise, an integer value between 1 and the total number of pages in the file must be passed, and the value must be greater than or equal to the value specified in the FirstPage parameter. |
guid (Optional) |
Unique identifier corresponding to an uploaded file. This value will be returned when a file is uploaded using the UploadFile service call. | A valid GUID |
filePassword (Optional) |
The password to unlock a password protected file. | A string containing the password for a secure PDF. |
callbackUrl (Optional) |
Passing a callbackURL to the service will allow us to notify you when your file has finished processing. If the callbackUrl is invalid or malicious, it will be ignored. The LEADTOOLS Cloud Services will send the request’s ID in the body of the message sent to the callbackUrl. | A string or URI containing a valid URL to message. |
ocrLanguage (Optional) |
The OCR Language to use when OCRing a Raster file. Defaults to en (English) if no languages are specified. | 0 - en 1 - bg 2 - hr 3 - cs 4 - da 5 - nl 6 - fr 7 - de 8 - el 9 - hu 10 - it 11 - pl 12 - pt 13 - sr 14 - es 15 - sv 16 - tr 17 - uk |
qualityTradeoff (Optional) |
The compression to quality ratio to use when saving out an Image PDF, TIF, or JPEG. Balanced is the default tradeoff option if none are specified. |
0 - Balanced 1 - Quality 2 - Size |
Additional parameters available are listed below.
Parameter | Description | Accepted Values |
---|---|---|
format |
The format to convert the file to. Passing a non-multipage format to the service will result in an error. | 3 - TIFF 4 - PDF 5 - PDF/A 6 - PDF Image 7 - PDF Image Over Text 8 - PDF/A Image Over Text 9 - DOCX 10 - DOCX Framed Text 11 - RTF 12 - RTF Framed Text 13 - TEXT 14 - TEXT Formatted Text |
symbologies (Optional) |
A comma delimited string of barcode symbologies. If this parameter is not passed, it will default to searching for all popular symbologies. | 0 - Popular 1 - EAN13 2 - EAN8 3 - UPCA 4 - UPCE 5 - CODE3Of9 6 - CODE128 7 - CodeInterleaved2Of5 8 - Codabar 9 - UCCEAN128 10 - Code93 11 - EANEXT5 12 - EANEXT2 13 - MSI 14 - Code11 15 - CodeStandard2Of5 16 -GS1Databar 17 - GS1DatabarLimited 18 - GS1DatabarExpanded 19 - PatchCode 20 - PostNet 21 - Planet 22 - AustralianPost4State 23 - RoyalMail4State 24 - USPS4State 25 - GS1DatabarStacked 26 - GS1DatabarExpandedStacked 27 - PDF417 28 - MicroPDF417 29 - Datamatrix 30 - QR 31 - Aztec 32 - Maxi 33 - MicroQR 34 - PharmaCode 35 - AllSymbologies |
splitOptions (Optional) |
The split option determines how the services will handle the barcode page within the output document. If this parameter is not passed, it will default to discarding the barcode page. FirstPage split will include the barcode page as the first page of the next document. LastPage split will include the barcode page as the last page of the first document in the split. | 1 - Discard 2 - FirstPage 3 - LastPage |
splitPattern (Optional) |
The split pattern allows users to specify the pattern or keywords to split the document on contained within the barcode values found in the document | A string containing a regex pattern. |
The following status codes will be returned when the method is called:
Status | Description |
---|---|
200 | The request has been successfully received. |
400 | The request was not valid for one of the following reasons: • Required request parameters were not included. • GUID value was not provided. • File information provided was malformed. • Attempting to queue a request on a file that has not yet been verified. |
401 | The AppID/Password combination is not valid, or does not correspond with the GUID provided. |
402 | There are not enough pages left in the Application to process the request. |
500 | There was an internal error processing your request. |
If performing a single-service call, a unique-identifier will be returned that can be used to query the progress of the conversion.
//Simple script to make and process the results of a conversion request to the LEADTOOLS CloudServices.
const request = require('request');
var FormatsEnum = {
"tiff":3, "pdf":4, "pdfa":5,
"pdfImage": 6, "pdfImageOverText": 7, "pdfaImageOverText": 8,
"docx": 9, "docxFramed": 10, "rtf": 11, "rtfFramed": 12,
"txt":13, "txtFramed":14
};
var servicesUrl = "https://azure.leadtools.com/api/";
//The first page in the file to mark for processing
var firstPage = 1;
//Sending a value of -1 will indicate to the services that the rest of the pages in the file should be processed.
var lastPage = -1;
//Enum corresponding to the output format for the file. For the purposes of this script, we will be converting to tif.
var fileFormat = FormatsEnum.tiff;
//We will be uploading the file via a URL. Files can also be passed by adding a PostFile to the request. Only 1 file will be accepted per request.
//The services will use the following priority when determining what a request is trying to do GUID > URL > Request Body Content
var fileURL = 'https://demo.leadtools.com/images/lcs/barcode_split.tif';
var conversionUrl = servicesUrl + 'Conversion/ConvertBarcodeSplit?firstPage=' + firstPage + '&lastPage=' + lastPage + '&fileurl=' + fileURL + '&format=' + fileFormat;
request.post(getRequestOptions(conversionUrl), conversionCallback);
function conversionCallback(error, response, body){
if(!error && response.statusCode == 200){
var guid = body;
console.log("Unique ID returned by the Services: " + guid);
}
}
function getRequestOptions(url){
//Function to generate and return HTTP request options.
var requestOptions ={
url: url,
headers: {
'Content-Length' : 0
},
auth: {
user:"Enter Application ID",
password:"Enter Application Password"
}
};
return requestOptions;
}