PdfFileEditor.MakeBooklet
MakeBooklet(string, string)
تصنع كتيب من ملف الإدخال إلى ملف الإخراج.
public bool MakeBooklet(string inputFile, string outputFile)
| المعامل | النوع | الوصف |
|---|---|---|
| inputFile | String | مسار واسم ملف PDF المدخل. |
| outputFile | String | مسار واسم ملف PDF الناتج. |
قيمة الإرجاع
boolean - صحيح للنجاح، أو خطأ.
أمثلة
PdfFileEditor pfe = new PdfFileEditor();
pfe.MakeBooklet("input.pdf", "output.pdf");
انظر أيضًا
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
MakeBooklet(Stream, Stream)
تصنع كتيب من InputStream إلى outputStream.
public bool MakeBooklet(Stream inputStream, Stream outputStream)
| المعامل | النوع | الوصف |
|---|---|---|
| inputStream | Stream | تدفق PDF المدخل. |
| outputStream | Stream | تدفق PDF الناتج. |
قيمة الإرجاع
صحيح إذا كانت العملية قد نجحت.
أمثلة
PdfFileEditor pfe = new PdfFileEditor();
Stream inputStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read);
Stream outputStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write);
pfe.MakeBooklet(inputStream, outputStream);
انظر أيضًا
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
MakeBooklet(string, string, PageSize)
تصنع كتيب من inputFile إلى outputFile.
public bool MakeBooklet(string inputFile, string outputFile, PageSize pageSize)
| المعامل | النوع | الوصف |
|---|---|---|
| inputFile | String | مسار واسم ملف PDF المدخل. |
| outputFile | String | مسار واسم ملف PDF الناتج. |
| pageSize | PageSize | حجم صفحة ملف PDF الناتج. |
قيمة الإرجاع
صحيح إذا كانت العملية قد نجحت.
أمثلة
PdfFileEditor pfe = new PdfFileEditor();
pfe.MakeBooklet("input.pdf", "output.pdf", PageSize.A4);
انظر أيضًا
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
MakeBooklet(Stream, Stream, PageSize)
تصنع كتيب من تدفق الإدخال وتحفظ النتيجة في تدفق الإخراج.
public bool MakeBooklet(Stream inputStream, Stream outputStream, PageSize pageSize)
| المعامل | النوع | الوصف |
|---|---|---|
| inputStream | Stream | تدفق PDF المدخل. |
| outputStream | Stream | تدفق PDF الناتج. |
| pageSize | PageSize | حجم صفحة ملف PDF الناتج. |
قيمة الإرجاع
صحيح إذا كانت العملية قد نجحت.
أمثلة
PdfFileEditor pfe = new PdfFileEditor();
Stream inputStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read);
Stream outputStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write);
pfe.MakeBooklet(inputStream, outputStream, PageSize.A4);
انظر أيضًا
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
MakeBooklet(string, string, int[], int[])
تصنع كتيب مخصص من firstInputFile إلى outputFile.
public bool MakeBooklet(string inputFile, string outputFile, int[] leftPages, int[] rightPages)
| المعامل | النوع | الوصف |
|---|---|---|
| inputFile | String | الملف المدخل. |
| outputFile | String | مسار واسم ملف PDF الناتج. |
| leftPages | Int32[] | الصفحات اليسرى من الكتيب. |
| rightPages | Int32[] | الصفحات اليمنى من الكتيب. |
قيمة الإرجاع
boolean - صحيح للنجاح، أو خطأ.
أمثلة
PdfFileEditor pfe = new PdfFileEditor();
pfe.MakeBooklet("input.pdf", "output.pdf", new int[] { 2, 4, 6 }, new int[] 1, 3, 5, 7 });
انظر أيضًا
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
MakeBooklet(Stream, Stream, int[], int[])
تصنع كتيب مخصص من firstInputStream إلى outputStream.
public bool MakeBooklet(Stream inputStream, Stream outputStream, int[] leftPages, int[] rightPages)
| المعامل | النوع | الوصف |
|---|---|---|
| inputStream | Stream | التدفق المدخل. |
| outputStream | Stream | تدفق PDF الناتج. |
| leftPages | Int32[] | الصفحات اليسرى. |
| rightPages | Int32[] | الصفحات اليمنى. |
قيمة الإرجاع
boolean - صحيح للنجاح، أو خطأ.
أمثلة
PdfFileEditor pfe = new PdfFileEditor();
Stream inputStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read);
Stream outputStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write);
pfe.MakeBooklet(inputStream, outputStream, new int[] { 2, 4, 6 }, new int[] 1, 3, 5, 7 });
انظر أيضًا
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
MakeBooklet(string, string, PageSize, int[], int[])
تصنع كتيب مخصص من firstInputFile إلى outputFile.
public bool MakeBooklet(string inputFile, string outputFile, PageSize pageSize, int[] leftPages,
int[] rightPages)
| المعامل | النوع | الوصف |
|---|---|---|
| inputFile | String | الملف المدخل. |
| outputFile | String | مسار واسم ملف PDF الناتج. |
| pageSize | PageSize | حجم صفحة ملف PDF الناتج. |
| leftPages | Int32[] | الصفحات اليسرى. |
| rightPages | Int32[] | الصفحات اليمنى. |
قيمة الإرجاع
boolean - صحيح للنجاح، أو خطأ.
أمثلة
PdfFileEditor pfe = new PdfFileEditor();
pfe.MakeBooklet("input.pdf", "output.pdf", PageSize.A4, new int[] { 2, 4, 6 }, new int[] 1, 3, 5, 7 });
انظر أيضًا
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
MakeBooklet(Stream, Stream, PageSize, int[], int[])
تصنع كتيب من firstInputStream إلى outputStream.
public bool MakeBooklet(Stream inputStream, Stream outputStream, PageSize pageSize,
int[] leftPages, int[] rightPages)
| المعامل | النوع | الوصف |
|---|---|---|
| inputStream | Stream | التدفق المدخل. |
| outputStream | Stream | تدفق PDF الناتج. |
| pageSize | PageSize | حجم صفحة ملف PDF الناتج. |
| leftPages | Int32[] | الصفحات اليسرى. |
| rightPages | Int32[] | الصفحات اليمنى. |
قيمة الإرجاع
boolean - صحيح للنجاح، أو خطأ.
أمثلة
PdfFileEditor pfe = new PdfFileEditor();
Stream inputStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read);
Stream outputStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write);
pfe.MakeBooklet(inputStream, outputStream, PageSize.A4, new int[] { 2, 4, 6 }, new int[] 1, 3, 5, 7 });
انظر أيضًا
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
MakeBooklet(string, PageSize, int[], int[], HttpResponse)
تصنع كتيب من الملف المصدر وتخزن النتيجة في كائنات HttpResponse.
public bool MakeBooklet(string inputFile, PageSize pageSize, int[] leftPages, int[] rightPages,
HttpResponse response)
| المعامل | النوع | الوصف |
|---|---|---|
| inputFile | String | مسار الملف المصدر. |
| pageSize | PageSize | حجم الصفحة المرغوب. |
| leftPages | Int32[] | مصفوفة من أرقام الصفحات التي سيتم وضعها في اليسار. |
| rightPages | Int32[] | مصفوفة من أرقام الصفحات التي سيتم وضعها في اليمين. |
| response | HttpResponse | كائن HttpResponse حيث سيتم تخزين النتيجة. |
قيمة الإرجاع
صحيح إذا كانت العملية قد نجحت.
انظر أيضًا
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
MakeBooklet(Stream, PageSize, int[], int[], HttpResponse)
تصنع كتيب من ملف PDF وتخزنه في HttpResponse.
public bool MakeBooklet(Stream inputStream, PageSize pageSize, int[] leftPages, int[] rightPages,
HttpResponse response)
| المعامل | النوع | الوصف |
|---|---|---|
| inputStream | Stream | تدفق الوثيقة المدخل. |
| pageSize | PageSize | حجم الصفحة المرغوب. |
| leftPages | Int32[] | مصفوفة من أرقام الصفحات التي سيتم وضعها في اليسار. |
| rightPages | Int32[] | مصفوفة من أرقام الصفحات التي سيتم وضعها في اليمين. |
| response | HttpResponse | كائن HttpResponse. |
قيمة الإرجاع
صحيح إذا كانت العملية قد نجحت.
انظر أيضًا
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
MakeBooklet(string, PageSize, HttpResponse)
تصنع كتيب من الملف المصدر وتخزن النتيجة في كائنات HttpResponse.
public bool MakeBooklet(string inputFile, PageSize pageSize, HttpResponse response)
| المعامل | النوع | الوصف |
|---|---|---|
| inputFile | String | مسار الملف المصدر. |
| pageSize | PageSize | حجم الصفحة المرغوب في ملف الإخراج. |
| response | HttpResponse | كائن HttpResponse حيث سيتم تخزين النتيجة. |
قيمة الإرجاع
صحيح إذا كانت العملية قد نجحت.
انظر أيضًا
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
MakeBooklet(Stream, PageSize, HttpResponse)
تصنع كتيب من الملف المصدر وتخزن النتيجة في HttpResponse.
public bool MakeBooklet(Stream inputStream, PageSize pageSize, HttpResponse response)
| المعامل | النوع | الوصف |
|---|---|---|
| inputStream | Stream | تدفق الوثيقة المدخل. |
| pageSize | PageSize | حجم الصفحة المرغوب في ملف الإخراج. |
| response | HttpResponse | كائن الاستجابة حيث سيتم حفظ النتيجة. |
قيمة الإرجاع
صحيح إذا تم بناء الكتيب بنجاح.
انظر أيضًا
- class PageSize
- class PdfFileEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF