@groupdocs/groupdocs.conversion 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @groupdocs/groupdocs.conversion might be problematic. Click here for more details.
- package/End User License Agreement.html +10 -0
- package/README.md +57 -0
- package/Third-party licenses GroupDocs.Conversion for Node.js via Java.pdf +0 -0
- package/index.js +1 -0
- package/lib/groupdocs-conversion-nodejs-23.2.jar +0 -0
- package/lib/groupdocs.conversion.js +183 -0
- package/package.json +37 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
<head>
|
|
3
|
+
<title>GroupDocs - End User License Agreement (EULA)</title>
|
|
4
|
+
<meta http-equiv="refresh" content="0; url=https://company.groupdocs.com/legal/eula" />
|
|
5
|
+
</head>
|
|
6
|
+
<body>
|
|
7
|
+
<p>Please wait. You'll be redirected to the online version of EULA.</p>
|
|
8
|
+
<p>If it fails to redirect then please go the following link manually: <a href="https://company.groupdocs.com/legal/eula">https://company.groupdocs.com/legal/eula</a></p>
|
|
9
|
+
</body>
|
|
10
|
+
</html>
|
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
GroupDocs.Conversion for Node.js via Java is a powerful API to convert back and forth between over 50 types of documents and images, including all Microsoft Office and OpenDocument file formats, PDF documents, raster images (TIFF, JPEG, GIF, PNG, BMP) and more.
|
|
2
|
+
|
|
3
|
+
## Node.js Converter API Features
|
|
4
|
+
- Convert whole document to desired target format.
|
|
5
|
+
- Convert specific document page(s) or page ranges.
|
|
6
|
+
- Auto-detect source document format on the fly without requiring the file extension.
|
|
7
|
+
- Obtain a list of all supported conversion formats.
|
|
8
|
+
- Replace missing fonts.
|
|
9
|
+
- Add text or image watermarks to any page.
|
|
10
|
+
- Extract document's basic information.
|
|
11
|
+
- Load source document with extended options;
|
|
12
|
+
- Specify password for password-protected documents.
|
|
13
|
+
- Load specific part or pages of the document.
|
|
14
|
+
- Hide or show document comments.
|
|
15
|
+
|
|
16
|
+
## Supported File Formats
|
|
17
|
+
**PDF:** PDF (version 1.3, 1.4, 1.5, 1.6, 1.7)
|
|
18
|
+
**Microsoft Word:** DOC, DOCM, DOCX, DOT, DOTM, DOTX, MD, RTF, TXT
|
|
19
|
+
**Microsoft Excel:** XLS, XLSX, XLSB, XLTX, XLTM, XLSM, XML
|
|
20
|
+
**Microsoft PowerPoint:** PPT, PPTX, PPS, PPSX, POTM, POTX, POT, PPSM, PPTM
|
|
21
|
+
**OpenOffice:** ODS, ODP, OTP, ODT, OTT,
|
|
22
|
+
**Images:** JPG, PNG, SVG, BMP, GIF, AI, DJVU, ICO,TIFF
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## Getting Started with GroupDocs.Conversion for Nodejs via Java
|
|
26
|
+
### Installation
|
|
27
|
+
|
|
28
|
+
From the command line:
|
|
29
|
+
|
|
30
|
+
npm install groupdocs.conversion
|
|
31
|
+
|
|
32
|
+
### Convert DOCX to HTML using Node.js
|
|
33
|
+
|
|
34
|
+
```js
|
|
35
|
+
const converter = new groupdocs.conversion.Converter("sample.docx")
|
|
36
|
+
const options = new groupdocs.conversion.MarkupConvertOptions()
|
|
37
|
+
converter.convert("ConvertToHtml.html", options);
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Convert PDF to DOCX using Node.js
|
|
41
|
+
|
|
42
|
+
```js
|
|
43
|
+
const converter = new groupdocs.conversion.Converter("sample.pdf")
|
|
44
|
+
const options = new groupdocs.conversion.WordProcessingConvertOptions()
|
|
45
|
+
converter.convert("output.docx", options)
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### Convert Word to Presentation via Node.js
|
|
49
|
+
|
|
50
|
+
```js
|
|
51
|
+
const converter = new groupdocs.conversion.Converter(inputFilePath)
|
|
52
|
+
const options = new groupdocs.conversion.PresentationConvertOptions()
|
|
53
|
+
converter.convert("output.pptx", options)
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
[Product Page](https://products.groupdocs.com/conversion/nodejs-java) | [Product Documentation](https://docs.groupdocs.com/conversion) | [Blog](https://blog.groupdocs.com/category/conversion/) |[API Reference](https://apireference.groupdocs.com/conversion/nodejs) | [Source Code Samples](https://github.com/groupdocs-conversion/GroupDocs.Conversion-for-Node.js-via-Java) | [Free Support](forum.groupdocs.com/c/conversion) | [Temporary License](https://purchase.groupdocs.com/temporary-license)
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("./lib/groupdocs.conversion");
|
|
Binary file
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
const path = require('path')
|
|
2
|
+
const java = require('java')
|
|
3
|
+
const os = require('os')
|
|
4
|
+
|
|
5
|
+
if (os.platform() === 'darwin') {
|
|
6
|
+
java.options.push('-Djava.awt.headless=true')
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
java.asyncOptions = {
|
|
10
|
+
asyncSuffix: 'Async',
|
|
11
|
+
syncSuffix: '',
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
java.classpath.push(path.join(__dirname, '/groupdocs-conversion-nodejs-23.2.jar'))
|
|
15
|
+
|
|
16
|
+
exports = module.exports
|
|
17
|
+
|
|
18
|
+
function __typeof__(objClass) {
|
|
19
|
+
if (objClass !== undefined && objClass.constructor) {
|
|
20
|
+
const strFun = objClass.constructor.toString()
|
|
21
|
+
let className = strFun.substr(0, strFun.indexOf('('))
|
|
22
|
+
className = className.replace('function', '')
|
|
23
|
+
return className.replace(/(^\s*)|(\s*$)/gi, '')
|
|
24
|
+
}
|
|
25
|
+
return typeof objClass
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/** STREAM HELPERS * */
|
|
29
|
+
exports.readDataFromStream = function (readStream, callback) {
|
|
30
|
+
const inputStreamBuffer = new exports.StreamBuffer()
|
|
31
|
+
readStream.on('data', chunk => {
|
|
32
|
+
inputStreamBuffer.write(chunk)
|
|
33
|
+
})
|
|
34
|
+
readStream.on('end', () => {
|
|
35
|
+
callback(inputStreamBuffer.toInputStream())
|
|
36
|
+
})
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
exports.readBytesFromStream = function (readStream, callback) {
|
|
40
|
+
const inputStreamBuffer = new exports.StreamBuffer()
|
|
41
|
+
readStream.on('data', chunk => {
|
|
42
|
+
inputStreamBuffer.write(chunk)
|
|
43
|
+
})
|
|
44
|
+
readStream.on('end', () => {
|
|
45
|
+
const array = Array.from(inputStreamBuffer.toByteArray())
|
|
46
|
+
const javaArray = java.newArray('byte', array)
|
|
47
|
+
callback(javaArray)
|
|
48
|
+
})
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
exports.StreamBuffer = class StreamBuffer {
|
|
52
|
+
constructor() {
|
|
53
|
+
const self = java.newInstanceSync('com.groupdocs.conversion.contracts.StreamBuffer')
|
|
54
|
+
|
|
55
|
+
self.write = function (chunk) {
|
|
56
|
+
const array = Array.from(chunk)
|
|
57
|
+
const javaArray = java.newArray('byte', array)
|
|
58
|
+
self.__proto__.write.call(self, javaArray, 0, javaArray.length)
|
|
59
|
+
}
|
|
60
|
+
return self
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
exports.Converter = java.import("com.groupdocs.conversion.Converter");
|
|
66
|
+
exports.ConverterSettings = java.import("com.groupdocs.conversion.ConverterSettings");
|
|
67
|
+
exports.FileCache = java.import("com.groupdocs.conversion.caching.FileCache");
|
|
68
|
+
exports.MemoryCache = java.import("com.groupdocs.conversion.caching.MemoryCache");
|
|
69
|
+
exports.Pair = java.import("com.groupdocs.conversion.contracts.Pair");
|
|
70
|
+
exports.SequenceHelpers = java.import("com.groupdocs.conversion.contracts.SequenceHelpers");
|
|
71
|
+
exports.CgmDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.CgmDocumentInfo");
|
|
72
|
+
exports.CsvDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.CsvDocumentInfo");
|
|
73
|
+
exports.DjVuDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.DjVuDocumentInfo");
|
|
74
|
+
exports.EmptyDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.EmptyDocumentInfo");
|
|
75
|
+
exports.EpsDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.EpsDocumentInfo");
|
|
76
|
+
exports.EpubDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.EpubDocumentInfo");
|
|
77
|
+
exports.IcoDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.IcoDocumentInfo");
|
|
78
|
+
exports.ImageDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.ImageDocumentInfo");
|
|
79
|
+
exports.JsonDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.JsonDocumentInfo");
|
|
80
|
+
exports.MarkdownDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.MarkdownDocumentInfo");
|
|
81
|
+
exports.PasswordProtectedDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.PasswordProtectedDocumentInfo");
|
|
82
|
+
exports.PclDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.PclDocumentInfo");
|
|
83
|
+
exports.PdfDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.PdfDocumentInfo");
|
|
84
|
+
exports.PresentationDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.PresentationDocumentInfo");
|
|
85
|
+
exports.PsDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.PsDocumentInfo");
|
|
86
|
+
exports.SpreadsheetDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.SpreadsheetDocumentInfo");
|
|
87
|
+
exports.SvgDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.SvgDocumentInfo");
|
|
88
|
+
exports.TableOfContentsItem = java.import("com.groupdocs.conversion.contracts.documentinfo.TableOfContentsItem");
|
|
89
|
+
exports.TexDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.TexDocumentInfo");
|
|
90
|
+
exports.TsvDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.TsvDocumentInfo");
|
|
91
|
+
exports.TxtDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.TxtDocumentInfo");
|
|
92
|
+
exports.UnknownDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.UnknownDocumentInfo");
|
|
93
|
+
exports.WordProcessingDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.WordProcessingDocumentInfo");
|
|
94
|
+
exports.XmlDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.XmlDocumentInfo");
|
|
95
|
+
exports.XpsDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.XpsDocumentInfo");
|
|
96
|
+
exports.XslFoDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.XslFoDocumentInfo");
|
|
97
|
+
exports.XzDocumentInfo = java.import("com.groupdocs.conversion.contracts.documentinfo.XzDocumentInfo");
|
|
98
|
+
exports.ConversionNotSupportedException = java.import("com.groupdocs.conversion.exceptions.ConversionNotSupportedException");
|
|
99
|
+
exports.CorruptOrDamagedFileException = java.import("com.groupdocs.conversion.exceptions.CorruptOrDamagedFileException");
|
|
100
|
+
exports.FileTypeNotSupportedException = java.import("com.groupdocs.conversion.exceptions.FileTypeNotSupportedException");
|
|
101
|
+
exports.FontSubstituteException = java.import("com.groupdocs.conversion.exceptions.FontSubstituteException");
|
|
102
|
+
exports.GroupDocsConversionException = java.import("com.groupdocs.conversion.exceptions.GroupDocsConversionException");
|
|
103
|
+
exports.IncorrectPasswordException = java.import("com.groupdocs.conversion.exceptions.IncorrectPasswordException");
|
|
104
|
+
exports.InvalidConverterSettingsException = java.import("com.groupdocs.conversion.exceptions.InvalidConverterSettingsException");
|
|
105
|
+
exports.InvalidConvertOptionsException = java.import("com.groupdocs.conversion.exceptions.InvalidConvertOptionsException");
|
|
106
|
+
exports.PasswordRequiredException = java.import("com.groupdocs.conversion.exceptions.PasswordRequiredException");
|
|
107
|
+
exports.SourceDocumentFactoryNotProvidedException = java.import("com.groupdocs.conversion.exceptions.SourceDocumentFactoryNotProvidedException");
|
|
108
|
+
exports.FileType = java.import("com.groupdocs.conversion.filetypes.FileType");
|
|
109
|
+
exports.ImageFileType = java.import("com.groupdocs.conversion.filetypes.ImageFileType");
|
|
110
|
+
exports.PdfFileType = java.import("com.groupdocs.conversion.filetypes.PdfFileType");
|
|
111
|
+
exports.PresentationFileType = java.import("com.groupdocs.conversion.filetypes.PresentationFileType");
|
|
112
|
+
exports.SpreadsheetFileType = java.import("com.groupdocs.conversion.filetypes.SpreadsheetFileType");
|
|
113
|
+
exports.WordProcessingFileType = java.import("com.groupdocs.conversion.filetypes.WordProcessingFileType");
|
|
114
|
+
exports.License = java.import("com.groupdocs.conversion.licensing.License");
|
|
115
|
+
exports.Metered = java.import("com.groupdocs.conversion.licensing.Metered");
|
|
116
|
+
exports.ConsoleLogger = java.import("com.groupdocs.conversion.logging.ConsoleLogger");
|
|
117
|
+
exports.ConvertOptionsHelpers = java.import("com.groupdocs.conversion.options.convert.ConvertOptionsHelpers");
|
|
118
|
+
exports.Font = java.import("com.groupdocs.conversion.options.convert.Font");
|
|
119
|
+
exports.ImageConvertOptions = java.import("com.groupdocs.conversion.options.convert.ImageConvertOptions");
|
|
120
|
+
exports.ImageFlipModes = java.import("com.groupdocs.conversion.options.convert.ImageFlipModes");
|
|
121
|
+
exports.JpegOptions = java.import("com.groupdocs.conversion.options.convert.JpegOptions");
|
|
122
|
+
exports.JpgColorModes = java.import("com.groupdocs.conversion.options.convert.JpgColorModes");
|
|
123
|
+
exports.JpgCompressionMethods = java.import("com.groupdocs.conversion.options.convert.JpgCompressionMethods");
|
|
124
|
+
exports.NoConvertOptions = java.import("com.groupdocs.conversion.options.convert.NoConvertOptions");
|
|
125
|
+
exports.PdfConvertOptions = java.import("com.groupdocs.conversion.options.convert.PdfConvertOptions");
|
|
126
|
+
exports.PdfDirection = java.import("com.groupdocs.conversion.options.convert.PdfDirection");
|
|
127
|
+
exports.PdfFormats = java.import("com.groupdocs.conversion.options.convert.PdfFormats");
|
|
128
|
+
exports.PdfFormattingOptions = java.import("com.groupdocs.conversion.options.convert.PdfFormattingOptions");
|
|
129
|
+
exports.PdfOptimizationOptions = java.import("com.groupdocs.conversion.options.convert.PdfOptimizationOptions");
|
|
130
|
+
exports.PdfOptions = java.import("com.groupdocs.conversion.options.convert.PdfOptions");
|
|
131
|
+
exports.PdfPageLayout = java.import("com.groupdocs.conversion.options.convert.PdfPageLayout");
|
|
132
|
+
exports.PdfPageMode = java.import("com.groupdocs.conversion.options.convert.PdfPageMode");
|
|
133
|
+
exports.PresentationConvertOptions = java.import("com.groupdocs.conversion.options.convert.PresentationConvertOptions");
|
|
134
|
+
exports.Rotation = java.import("com.groupdocs.conversion.options.convert.Rotation");
|
|
135
|
+
exports.RtfOptions = java.import("com.groupdocs.conversion.options.convert.RtfOptions");
|
|
136
|
+
exports.SpreadsheetConvertOptions = java.import("com.groupdocs.conversion.options.convert.SpreadsheetConvertOptions");
|
|
137
|
+
exports.TiffCompressionMethods = java.import("com.groupdocs.conversion.options.convert.TiffCompressionMethods");
|
|
138
|
+
exports.TiffOptions = java.import("com.groupdocs.conversion.options.convert.TiffOptions");
|
|
139
|
+
exports.WatermarkImageOptions = java.import("com.groupdocs.conversion.options.convert.WatermarkImageOptions");
|
|
140
|
+
exports.WatermarkTextOptions = java.import("com.groupdocs.conversion.options.convert.WatermarkTextOptions");
|
|
141
|
+
exports.WebpOptions = java.import("com.groupdocs.conversion.options.convert.WebpOptions");
|
|
142
|
+
exports.WordProcessingConvertOptions = java.import("com.groupdocs.conversion.options.convert.WordProcessingConvertOptions");
|
|
143
|
+
exports.CsvLoadOptions = java.import("com.groupdocs.conversion.options.load.CsvLoadOptions");
|
|
144
|
+
exports.EmptyLoadOptions = java.import("com.groupdocs.conversion.options.load.EmptyLoadOptions");
|
|
145
|
+
exports.EpubLoadOptions = java.import("com.groupdocs.conversion.options.load.EpubLoadOptions");
|
|
146
|
+
exports.ImageLoadOptions = java.import("com.groupdocs.conversion.options.load.ImageLoadOptions");
|
|
147
|
+
exports.ImageRecognitionLanguage = java.import("com.groupdocs.conversion.options.load.ImageRecognitionLanguage");
|
|
148
|
+
exports.MboxLoadOptions = java.import("com.groupdocs.conversion.options.load.MboxLoadOptions");
|
|
149
|
+
exports.NsfLoadOptions = java.import("com.groupdocs.conversion.options.load.NsfLoadOptions");
|
|
150
|
+
exports.PdfLoadOptions = java.import("com.groupdocs.conversion.options.load.PdfLoadOptions");
|
|
151
|
+
exports.PresentationLoadOptions = java.import("com.groupdocs.conversion.options.load.PresentationLoadOptions");
|
|
152
|
+
exports.SpreadsheetLoadOptions = java.import("com.groupdocs.conversion.options.load.SpreadsheetLoadOptions");
|
|
153
|
+
exports.TsvLoadOptions = java.import("com.groupdocs.conversion.options.load.TsvLoadOptions");
|
|
154
|
+
exports.TxtLeadingSpacesOptions = java.import("com.groupdocs.conversion.options.load.TxtLeadingSpacesOptions");
|
|
155
|
+
exports.TxtLoadOptions = java.import("com.groupdocs.conversion.options.load.TxtLoadOptions");
|
|
156
|
+
exports.TxtTrailingSpacesOptions = java.import("com.groupdocs.conversion.options.load.TxtTrailingSpacesOptions");
|
|
157
|
+
exports.WordProcessingBookmarksOptions = java.import("com.groupdocs.conversion.options.load.WordProcessingBookmarksOptions");
|
|
158
|
+
exports.WordProcessingLoadOptions = java.import("com.groupdocs.conversion.options.load.WordProcessingLoadOptions");
|
|
159
|
+
|
|
160
|
+
exports.ConversionPair = java.import("com.groupdocs.conversion.contracts.ConversionPair");
|
|
161
|
+
exports.Enumeration = java.import("com.groupdocs.conversion.contracts.Enumeration");
|
|
162
|
+
exports.FontSubstitute = java.import("com.groupdocs.conversion.contracts.FontSubstitute");
|
|
163
|
+
exports.PageOrientation = java.import("com.groupdocs.conversion.options.convert.PageOrientation");
|
|
164
|
+
exports.PageSize = java.import("com.groupdocs.conversion.options.convert.PageSize");
|
|
165
|
+
exports.PdfRecognitionMode = java.import("com.groupdocs.conversion.options.convert.PdfRecognitionMode");
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
/** STREAM METHODS * */
|
|
169
|
+
exports.License.setLicenseFromStream = function (license, licenseStream, callback) {
|
|
170
|
+
const inputStreamBuffer = new exports.StreamBuffer()
|
|
171
|
+
licenseStream.on('data', chunk => {
|
|
172
|
+
inputStreamBuffer.write(chunk)
|
|
173
|
+
})
|
|
174
|
+
licenseStream.on('end', () => {
|
|
175
|
+
let error
|
|
176
|
+
try {
|
|
177
|
+
license.setLicense(inputStreamBuffer.toInputStream())
|
|
178
|
+
} catch (err) {
|
|
179
|
+
error = err
|
|
180
|
+
}
|
|
181
|
+
callback(error)
|
|
182
|
+
})
|
|
183
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@groupdocs/groupdocs.conversion",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Powerful converter for PDF, Word, Excel, PowerPoint and image files.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
+
"submodules": "git submodule sync --recursive && git submodule update --init --recursive java-to-node.js-generator",
|
|
9
|
+
"postinstall": "curl -H 'Cache-Control: no-cache' https://releases.groupdocs.com/java/repo/com/groupdocs/groupdocs-conversion-nodejs/23.2/groupdocs-conversion-nodejs-23.2.jar > lib/groupdocs-conversion-nodejs-23.2.jar"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"PDF",
|
|
13
|
+
"Word",
|
|
14
|
+
"DOCX",
|
|
15
|
+
"DOC",
|
|
16
|
+
"PowerPoint",
|
|
17
|
+
"PPT",
|
|
18
|
+
"PPTX",
|
|
19
|
+
"Excel",
|
|
20
|
+
"XLS",
|
|
21
|
+
"XLSX",
|
|
22
|
+
"CSV",
|
|
23
|
+
"to",
|
|
24
|
+
"JPG",
|
|
25
|
+
"PNG",
|
|
26
|
+
"Spreadsheet",
|
|
27
|
+
"SVG"
|
|
28
|
+
],
|
|
29
|
+
"author": "Aspose",
|
|
30
|
+
"license": "End User License Agreement.html",
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"java": "^0.13.0"
|
|
33
|
+
},
|
|
34
|
+
"directories": {
|
|
35
|
+
"lib": "lib"
|
|
36
|
+
}
|
|
37
|
+
}
|