Class MultiPageOptions

Class MultiPageOptions

이름 공간 : Aspose.Imaging.ImageOptions 모임: Aspose.Imaging.dll (25.4.0)

지원되는 여러 페이지 형식의 기본 클래스

[JsonObject(MemberSerialization.OptIn)]
public class MultiPageOptions

Inheritance

object MultiPageOptions

Derived

DjvuMultiPageOptions

상속 회원들

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

MultiPageOptions()

Aspose.Imaging.ImageOptions.MultiPageOptions 클래스의 새로운 예를 시작합니다.

[JsonConstructor]
public MultiPageOptions()

MultiPageOptions(이트[])

Aspose.Imaging.ImageOptions.MultiPageOptions 클래스의 새로운 예를 시작합니다.

public MultiPageOptions(int[] pages)

Parameters

pages int [ ] [ [ ]

이 페이지들

MultiPageOptions(이트[ ] [ [ ], 오른쪽 링)

Aspose.Imaging.ImageOptions.MultiPageOptions 클래스의 새로운 예를 시작합니다.

public MultiPageOptions(int[] pages, Rectangle exportArea)

Parameters

pages int [ ] [ [ ]

페이지의 숫자입니다.

exportArea Rectangle

수출 지역

MultiPageOptions(스트리트[])

Aspose.Imaging.ImageOptions.MultiPageOptions 클래스의 새로운 예를 시작합니다.

public MultiPageOptions(string[] pageTitles)

Parameters

pageTitles string [ ] [ [ ]

페이지 제목이 있습니다.

MultiPageOptions(스트리트[ ] [ [ ], 오른쪽 링)

Aspose.Imaging.ImageOptions.MultiPageOptions 클래스의 새로운 예를 시작합니다.

public MultiPageOptions(string[] pageTitles, Rectangle exportArea)

Parameters

pageTitles string [ ] [ [ ]

페이지 제목이 있습니다.

exportArea Rectangle

수출 지역

MultiPageOptions(IntRange[])

Aspose.Imaging.ImageOptions.MultiPageOptions 클래스의 새로운 예를 시작합니다.

public MultiPageOptions(IntRange[] ranges)

Parameters

ranges IntRange [ ] [ [ ]

아스포스.Imaging.IntRange에 해당되는 글 1건

MultiPageOptions(IntRange[ ] [ [ ], 오른쪽 링)

Aspose.Imaging.ImageOptions.MultiPageOptions 클래스의 새로운 예를 시작합니다.

public MultiPageOptions(IntRange[] ranges, Rectangle exportArea)

Parameters

ranges IntRange [ ] [ [ ]

아스포스.Imaging.IntRange에 해당되는 글 1건

exportArea Rectangle

수출 지역

MultiPageOptions(IntRange)

Aspose.Imaging.ImageOptions.MultiPageOptions 클래스의 새로운 예를 시작합니다.

public MultiPageOptions(IntRange range)

Parameters

range IntRange

아스포스.Imaging.IntRange에 해당되는 글 1건

MultiPageOptions(인테리어, Rectangle)

Aspose.Imaging.ImageOptions.MultiPageOptions 클래스의 새로운 예를 시작합니다.

public MultiPageOptions(IntRange range, Rectangle exportArea)

Parameters

range IntRange

아스포스.Imaging.IntRange에 해당되는 글 1건

exportArea Rectangle

수출 지역

MultiPageOptions(이트)

Aspose.Imaging.ImageOptions.MultiPageOptions 클래스의 새로운 예를 시작합니다.

public MultiPageOptions(int page)

Parameters

page int

페이지 인덱스

MultiPageOptions(오른쪽, 오른쪽)

Aspose.Imaging.ImageOptions.MultiPageOptions 클래스의 새로운 예를 시작합니다.

public MultiPageOptions(int page, Rectangle exportArea)

Parameters

page int

페이지 인덱스

exportArea Rectangle

수출 지역

Properties

ExportArea

수출 영역을 얻거나 설정합니다.

public Rectangle ExportArea { get; set; }

부동산 가치

Rectangle

MergeLayers

값을 얻거나 값을 설정하여 [메레지 레이어]가 있는지 여부를 나타냅니다.

public bool MergeLayers { get; set; }

부동산 가치

bool

Mode

모드를 얻거나 설정합니다.

public MultiPageMode Mode { get; set; }

부동산 가치

MultiPageMode

OutputLayersNames

수출 레이어 이름을 얻거나 설정(수출 형식이 레이어 이름을 지원하는 경우 작업, 예를 들어 Psd)

public string[] OutputLayersNames { get; set; }

부동산 가치

string [ ] [ [ ]

PageRasterizationOptions

페이지 라스테리화 옵션을 얻거나 설정합니다.

public VectorRasterizationOptions[] PageRasterizationOptions { get; set; }

부동산 가치

VectorRasterizationOptions [ ] [ [ ]

PageTitles

페이지 제목을 얻거나 설정합니다.

public string[] PageTitles { get; set; }

부동산 가치

string [ ] [ [ ]

Examples

이 예제는 다 페이지 DJVU 이미지를 다 프레임 TIFF 이미지로 변환하는 방법을 보여줍니다.

string dir = "c:\\temp\\";

                                                                                                 // Load a DJVU image from a file stream.
                                                                                                 using (System.IO.Stream stream = System.IO.File.OpenRead(dir + "sample.djvu"))
                                                                                                 {
                                                                                                     using (Aspose.Imaging.FileFormats.Djvu.DjvuImage djvuImage = new Aspose.Imaging.FileFormats.Djvu.DjvuImage(stream))
                                                                                                     {
                                                                                                         Aspose.Imaging.ImageOptions.TiffOptions saveOptions = new Aspose.Imaging.ImageOptions.TiffOptions(Imaging.FileFormats.Tiff.Enums.TiffExpectedFormat.Default);
                                                                                                         saveOptions.Compression = Aspose.Imaging.FileFormats.Tiff.Enums.TiffCompressions.Deflate;

                                                                                                         // Note that if the image is colorful, it will be automatically converted to B/W format according to the option below:
                                                                                                         saveOptions.BitsPerSample = new ushort[] { 1 };

                                                                                                         saveOptions.MultiPageOptions = new Aspose.Imaging.ImageOptions.DjvuMultiPageOptions();

                                                                                                         // By default, all pages will be stored to the output TIFF, but the desired set of pages can be specified explicitly.
                                                                                                         // Only the first and the second page will be exported.
                                                                                                         saveOptions.MultiPageOptions.Pages = new int[] { 0, 1 };

                                                                                                         // Set page titles.
                                                                                                         saveOptions.MultiPageOptions.PageTitles = new string[] { "The First Page", "The Second Page" };

                                                                                                         // Save to TIFF
                                                                                                         djvuImage.Save(dir + "sample.tif", saveOptions);
                                                                                                     }
                                                                                                 }

Pages

페이지를 얻거나 설정합니다.

public int[] Pages { get; set; }

부동산 가치

int [ ] [ [ ]

Examples

이 예제는 다 페이지 DJVU 이미지를 다 프레임 TIFF 이미지로 변환하는 방법을 보여줍니다.

string dir = "c:\\temp\\";

                                                                                                 // Load a DJVU image from a file stream.
                                                                                                 using (System.IO.Stream stream = System.IO.File.OpenRead(dir + "sample.djvu"))
                                                                                                 {
                                                                                                     using (Aspose.Imaging.FileFormats.Djvu.DjvuImage djvuImage = new Aspose.Imaging.FileFormats.Djvu.DjvuImage(stream))
                                                                                                     {
                                                                                                         Aspose.Imaging.ImageOptions.TiffOptions saveOptions = new Aspose.Imaging.ImageOptions.TiffOptions(Imaging.FileFormats.Tiff.Enums.TiffExpectedFormat.Default);
                                                                                                         saveOptions.Compression = Aspose.Imaging.FileFormats.Tiff.Enums.TiffCompressions.Deflate;

                                                                                                         // Note that if the image is colorful, it will be automatically converted to B/W format according to the option below:
                                                                                                         saveOptions.BitsPerSample = new ushort[] { 1 };

                                                                                                         saveOptions.MultiPageOptions = new Aspose.Imaging.ImageOptions.DjvuMultiPageOptions();

                                                                                                         // By default, all pages will be stored to the output TIFF, but the desired set of pages can be specified explicitly.
                                                                                                         // Only the first and the second page will be exported.
                                                                                                         saveOptions.MultiPageOptions.Pages = new int[] { 0, 1 };

                                                                                                         // Set page titles.
                                                                                                         saveOptions.MultiPageOptions.PageTitles = new string[] { "The First Page", "The Second Page" };

                                                                                                         // Save to TIFF
                                                                                                         djvuImage.Save(dir + "sample.tif", saveOptions);
                                                                                                     }
                                                                                                 }

TimeInterval

시간을 얻거나 시간 간격을 설정합니다.

public TimeInterval TimeInterval { get; set; }

부동산 가치

TimeInterval

Methods

CheckModeAvailability(MultiPageMode)

모드 응용 프로그램을 확인합니다.

protected virtual void CheckModeAvailability(MultiPageMode mode)

Parameters

mode MultiPageMode

모드 인덱스

InitPages(IntRange[])

라인에서 페이지를 시작합니다.

public void InitPages(IntRange[] ranges)

Parameters

ranges IntRange [ ] [ [ ]

그 라인들

 한국어