Click or drag to resize
XDL

XRasterIOExport(XRSSaveFile, String, String, Int32, Int32, Int32, Int32, Boolean, Double, Int32, Int32, String, XThread) Method

여러 개의 밴드가 있는 XRSSaveFile 객체를 임의의 파일 형식으로 저장한다.

Namespace: Pixoneer.NXDL.NIO
Assembly: NXDLio (in NXDLio.dll) Version: 2.0.3.38
Syntax
C#
public bool Export(
	ref XRSSaveFile RSFileIn,
	string strSaveFileName,
	string strFormatKey,
	int nX1LZ,
	int nX2LZ,
	int nY1LZ,
	int nY2LZ,
	bool bComp,
	double dCompRatio,
	int nTileSizeX,
	int nTileSizeY,
	out string strError,
	XThread thd
)

Parameters

RSFileIn  XRSSaveFile
[In] XRSSaveFile 객체.
strSaveFileName  String
[In] 파일 경로.
strFormatKey  String
[In] 파일 형식 키워드. ( 예: GDAL Raster drivers의 short name(GTiff, NITF, JPEG, BMP...) )
nX1LZ  Int32
[In] 특정 영역 데이터 저장을 위한 X 방향 최소 경계값.
nX2LZ  Int32
[In] 특정 영역 데이터 저장을 위한 X 방향 최대 경계값.
nY1LZ  Int32
[In] 특정 영역 데이터 저장을 위한 Y 방향 최소 경계값.
nY2LZ  Int32
[In] 특정 영역 데이터 저장을 위한 Y 방향 최대 경계값.
bComp  Boolean
[In] 압축 여부 설정 (Compression type is XDM Compression)
dCompRatio  Double
[In] 압축 여부(bCompRatio) true 설정시 압축비율 설정.
nTileSizeX  Int32
[In] 출력 타일링의 X 방향 크기. -1 : 타일링 무시
nTileSizeY  Int32
[In] 출력 타일링의 Y 방향 크기. -1 : 타일링 무시
strError  String
[Out] 에러 발생시 오류 메시지.
thd  XThread
[In] Thread

Return Value

Boolean
성공이면 true, 실패이면 false
See Also