If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Download JavaScript Library to manipulate XPS, EPS, PS Files
Download library from this site and include into your project. For the detailed instructions please visit the Installation documentation page.
<!-- Load and initiate Aspose.Page for JavaScript -->
<script type="text/javascript" async src="AsposePageforJS.js"></script>
or using with Web Workers
/* Web Worker*/
const AsposePageWebWorker = new Worker("AsposePageforJS.js");
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License | EULA
Why download Aspsoe.Page for JavaScript via C++? Major Features
Aspose.Page for JavaScript via C++ is an on premise JavaScript API developed on Aspose.Page for C++ library that allows you manipulateXPS/Postscript files on your own applications.
Postscript/XPS Converting Features
Convert PS,EPS,XPS to BMP, TIFF, JPEG, PNG, GIF or PDF
Postscript/XPS Merging Features
Merge PS, EPS, XPS to PDF or several XPS to single
XPS, EPS, PS
Save XPS, PS & EPS Documents As
Fixed Layout: PDF
Image: BMP, JPEG, PNG, GIF, TIFF
EPS functionality
Crop, resize EPS file
Save image as EPS
var fImageAsEPS = function (e) {
const file_reader = new FileReader();
file_reader.onload = (event) => {
const json = AsposeSaveImageAsEps(event.target.result, e.target.files[0].name, e.target.files[0].name + "_out.eps");
if (json.errorCode == 0) {
DownloadFile(json.fileNameResult, "image/eps");
}
else
document.getElementById('output').textContent = json.errorText;
}
file_reader.readAsArrayBuffer(e.target.files[0]);
}
Aspose.Page for JavaScript via C++ 25.6 API
Added:
Downloads: 