Convert XSLFO to BMP via Java
Sample code for XSLFO to BMP Python conversion. on .NET Framework, .NET Core, and PHP, VBScript, Delphi, C++ via COM Interop.
Convert XSLFO to BMP in Python for .NET
Convert programmatically XSLFO to BMP format with a modern Python API. Use just a few lines of code to convert XSLFO to BMP. The Aspose.PDF library will allow any developer to easily solve the tasks of converting XSLFO to BMP using the Python. For a more detailed description of the code snippet and other possible conversion formats, see the Documentation pages. Also, you can check the quality of converting file to file directly in your browser online in a second. With Aspose.PDF for .NET library you can convert XSLFO to BMP programmatically. PDF software from Aspose is ideal for individuals, small or large businesses. Since it is able to process a large amount of information, perform the conversion quickly and efficiently and protect your data. A peculiar feature from Aspose.PDF is an API for converting XSLFO to BMP. The trait of this approach is that you only need to open the NuGet package manager, search for ‘Aspose.PDF for .NET’, and install it without any special complex settings. (Use the command from the Package Manager Console for installing). To verify the benefits of the library, try using the conversion XSLFO to BMP code snippet. You may also use the following command from the Package Manager Console:
Package Manager Console Command
PM> Install-Package Aspose.PDF
How to Convert XSLFO to BMP
Python for .NET developers can easily load & convert XSLFO files to BMP in just a few lines of code.
- Initialize a new Document
- Create & set the instance of BmpDevice class with Size & Resolution
- Call BmpDevice.Process method with page index & output file path as parameters
- Save the output BMP file
System Requirements
Aspose.PDF for Python for .NET is supported on all major operating systems. Just make sure that you have the following prerequisites.
- Microsoft® Windows™ or a compatible OS with .NET Framework, .NET Core, and PHP, VBScript, Delphi, C++ via COM Interop.
- Development environment like Microsoft Visual Studio.
- Aspose.PDF for .NET DLL referenced in your project.
<% cnv2.code-block.title %>
def convert_XSLFO_to_BMP(
self, xsltfile, xmlfile, outfile,
):
path_xsltfile = self.dataDir + xsltfile
path_xmlfile = self.dataDir + xmlfile
path_outfile = self.dataDir + outfile
# Instantiate XslFoLoadOption object
options = XslFoLoadOptions(path_xsltfile)
# Set error handling strategy
options.ParsingErrorsHandlingType = (
XslFoLoadOptions.ParsingErrorsHandlingTypes.ThrowExceptionImmediately
)
# Create Resolution object
resolution = Resolution(300)
device = BmpDevice(resolution)
pageCount = 1
while pageCount <= document.Pages.Count:
imageStream = FileStream(self.dataDir + outfile + str(pageCount) + "_out.bmp" , FileMode.Create)
# Convert a particular page and save the image to stream
device.Process(document.Pages[pageCount], imageStream)
# Close stream
imageStream.Close()
pageCount = pageCount + 1
print(infile + " converted into " + outfile)