Click or drag to resize
XDL

XTextureGetRGBA Method

입력 문자열에 대한 텍스쳐 데이터를 RGBA 형식으로 로딩한다. 파일 형태 또는 키워드를 이용한 텍스처 로딩을 할 수 있다.

Namespace:  Pixoneer.NXDL.NGR
Assembly:  NXDLgr (in NXDLgr.dll) Version: 2.0.3.31
Syntax
C#
public static bool GetRGBA(
	string strName,
	ref byte[] dibBits,
	ref int width,
	ref int height
)

Parameters

strName
Type: SystemString
텍스쳐 로딩을 위한 입력 문자열
dibBits
Type: SystemByte
RGBA 형식의 텍스쳐 데이터
width
Type: SystemInt32
텍스처 가로 크기
height
Type: SystemInt32
텍스처 세로 크기

Return Value

Type: Boolean
텍스처를 로딩하면 true를, 그렇지 못하면 false를 반환한다.
See Also