PdfFileEditor.TryMakeBooklet
TryMakeBooklet(string, string)
Makes booklet from the input file to output file.
public bool TryMakeBooklet(string inputFile, string outputFile)
Parameter | Type | Description |
---|---|---|
inputFile | String | Input pdf file path and name. |
outputFile | String | Output pdf file path and name. |
Return Value
true if operation completed successfully; otherwise, false.
Remarks
The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails.
Examples
PdfFileEditor pfe = new PdfFileEditor();
bool result = pfe.TryMakeBooklet("input.pdf", "output.pdf");
See Also
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
TryMakeBooklet(Stream, Stream)
Makes booklet from the InputStream to outputStream.
public bool TryMakeBooklet(Stream inputStream, Stream outputStream)
Parameter | Type | Description |
---|---|---|
inputStream | Stream | Input pdf stream. |
outputStream | Stream | output pdf stream. |
Return Value
true if operation completed successfully; otherwise, false.
Remarks
The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails.
Examples
PdfFileEditor pfe = new PdfFileEditor();
Stream inputStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read);
Stream outputStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write);
bool result = pfe.TryMakeBooklet(inputStream, outputStream);
See Also
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
TryMakeBooklet(string, string, PageSize)
Makes booklet from the inputFile to outputFile.
public bool TryMakeBooklet(string inputFile, string outputFile, PageSize pageSize)
Parameter | Type | Description |
---|---|---|
inputFile | String | Input pdf file path and name. |
outputFile | String | Output pdf file path and name. |
pageSize | PageSize | The page size of the output pdf file. |
Return Value
True if operation is succeeded.
Remarks
The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails.
Examples
PdfFileEditor pfe = new PdfFileEditor();
bool result = pfe.TryMakeBooklet("input.pdf", "output.pdf", PageSize.A4);
See Also
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
TryMakeBooklet(Stream, Stream, PageSize)
Makes booklet from the input stream and save result into output stream.
public bool TryMakeBooklet(Stream inputStream, Stream outputStream, PageSize pageSize)
Parameter | Type | Description |
---|---|---|
inputStream | Stream | Input PDF stream. |
outputStream | Stream | output pdf stream. |
pageSize | PageSize | The page size of the output pdf file. |
Return Value
true if operation completed successfully; otherwise, false.
Remarks
The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails.
Examples
PdfFileEditor pfe = new PdfFileEditor();
Stream inputStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read);
Stream outputStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write);
bool result = pfe.TryMakeBooklet(inputStream, outputStream, PageSize.A4);
See Also
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
TryMakeBooklet(string, string, int[], int[])
Makes customized booklet from the firstInputFile to outputFile.
public bool TryMakeBooklet(string inputFile, string outputFile, int[] leftPages, int[] rightPages)
Parameter | Type | Description |
---|---|---|
inputFile | String | The input file. |
outputFile | String | Output pdf file path and name. |
leftPages | Int32[] | The left pages of the booklet. |
rightPages | Int32[] | The right pages of the booklet. |
Return Value
true if operation completed successfully; otherwise, false.
Remarks
The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails.
Examples
PdfFileEditor pfe = new PdfFileEditor();
bool result = pfe.TryMakeBooklet("input.pdf", "output.pdf", new int[] { 2, 4, 6 }, new int[] 1, 3, 5, 7 });
See Also
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
TryMakeBooklet(Stream, Stream, int[], int[])
Makes customized booklet from the firstInputStream to outputStream.
public bool TryMakeBooklet(Stream inputStream, Stream outputStream, int[] leftPages,
int[] rightPages)
Parameter | Type | Description |
---|---|---|
inputStream | Stream | The input stream. |
outputStream | Stream | output pdf stream. |
leftPages | Int32[] | The left pages. |
rightPages | Int32[] | The right pages. |
Return Value
true if operation completed successfully; otherwise, false.
Remarks
The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails.
Examples
PdfFileEditor pfe = new PdfFileEditor();
Stream inputStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read);
Stream outputStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write);
bool result = pfe.TryMakeBooklet(inputStream, outputStream, new int[] { 2, 4, 6 }, new int[] 1, 3, 5, 7 });
See Also
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
TryMakeBooklet(string, string, PageSize, int[], int[])
Makes customized booklet from the firstInputFile to outputFile.
public bool TryMakeBooklet(string inputFile, string outputFile, PageSize pageSize, int[] leftPages,
int[] rightPages)
Parameter | Type | Description |
---|---|---|
inputFile | String | The input file. |
outputFile | String | Output pdf file path and name. |
pageSize | PageSize | The page size of the output pdf file. |
leftPages | Int32[] | The left pages. |
rightPages | Int32[] | The right pages. |
Return Value
true if operation completed successfully; otherwise, false.
Remarks
The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails.
Examples
PdfFileEditor pfe = new PdfFileEditor();
bool result = pfe.TryMakeBooklet("input.pdf", "output.pdf", PageSize.A4, new int[] { 2, 4, 6 }, new int[] 1, 3, 5, 7 });
See Also
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
TryMakeBooklet(Stream, Stream, PageSize, int[], int[])
Makes booklet from the firstInputStream to outputStream.
public bool TryMakeBooklet(Stream inputStream, Stream outputStream, PageSize pageSize,
int[] leftPages, int[] rightPages)
Parameter | Type | Description |
---|---|---|
inputStream | Stream | The input stream. |
outputStream | Stream | output pdf stream. |
pageSize | PageSize | The page size of the output pdf file. |
leftPages | Int32[] | The left pages. |
rightPages | Int32[] | The right pages. |
Return Value
true if operation completed successfully; otherwise, false.
Remarks
The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails.
Examples
PdfFileEditor pfe = new PdfFileEditor();
Stream inputStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read);
Stream outputStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write);
bool result = pfe.TryMakeBooklet(inputStream, outputStream, PageSize.A4, new int[] { 2, 4, 6 }, new int[] 1, 3, 5, 7 });
See Also
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF