IXpsOMObjectFactory::CreateImageResource 메서드(xpsobjectmodel.h)
이미지 리소스 스트림에 액세스하는 데 사용되는 IXpsOMImageResource 인터페이스를 만듭니다.
구문
HRESULT CreateImageResource(
[in] IStream *acquiredStream,
[in] XPS_IMAGE_TYPE contentType,
[in] IOpcPartUri *partUri,
[out, retval] IXpsOMImageResource **imageResource
);
매개 변수
[in] acquiredStream
이 리소스와 연결할 읽기 전용 스트림입니다. 이 매개 변수는 NULL이 아니어야 합니다.
중요 이 스트림을 STA(Single-Threaded Apartment) 개체로 처리합니다. 다시 입력하지 마세요.
[in] contentType
acquiredStream에서 참조하는 스트림의 이미지 형식을 설명하는 XPS_IMAGE_TYPE 값입니다.
[in] partUri
이 리소스에 할당할 부품 이름을 포함하는 IOpcPartUri 인터페이스입니다. 이 매개 변수는 NULL이 아니어야 합니다.
[out, retval] imageResource
새 IXpsOMImageResource 인터페이스에 대한 포인터입니다.
반환 값
이 메서드는 HRESULT를 반환합니다. 가능한 값은 다음 표에 있는 값을 포함하지만 이에 국한되지 않습니다. 이 표에 나열되지 않은 XPS 문서 API 반환 값에 대한 자세한 내용은 XPS 문서 오류를 참조하세요.
반환 코드 | Description |
---|---|
|
메서드가 성공했습니다. |
|
contentType 이 유효한 XPS_IMAGE_TYPE 값이 아니었습니다. |
|
acquiredStream, partUri 또는 imageResource 는 NULL입니다. |
설명
다음 코드 예제에서는 이 메서드를 사용하여 새 인터페이스를 만드는 방법을 보여 줍니다.
IXpsOMImageResource *newInterface;
// The following values are defined outside of
// this example.
// IStream *acquiredStream;
// XPS_IMAGE_TYPE contentType;
// IOpcPartUri *partUri;
// Note the implicit requirement that CoInitializeEx
// has previously been called from this thread.
hr = CoCreateInstance(
__uuidof(XpsOMObjectFactory),
NULL,
CLSCTX_INPROC_SERVER,
_uuidof(IXpsOMObjectFactory),
reinterpret_cast<LPVOID*>(&xpsFactory)
);
if (SUCCEEDED(hr))
{
// The partUriString and acquiredStream variables
// are defined outside of this example.
hr = xpsFactory->CreatePartUri(partUriString, &partUri);
if (SUCCEEDED(hr))
{
hr = xpsFactory->CreateImageResource (
acquiredStream,
contentType,
partUri,
&newInterface);
if (SUCCEEDED(hr))
{
// use newInterface
newInterface->Release();
}
partUri->Release();
}
xpsFactory->Release();
}
else
{
// evaluate HRESULT error returned in hr
}
요구 사항
요구 사항 | 값 |
---|---|
지원되는 최소 클라이언트 | Windows 7, Windows Vista SP2 및 Windows Vista용 플랫폼 업데이트가 포함된 Windows Vista [데스크톱 앱 | UWP 앱] |
지원되는 최소 서버 | Windows Server 2008 R2, Windows Server 2008 SP2 및 Windows Server 2008용 플랫폼 업데이트 [데스크톱 앱 | UWP 앱] |
대상 플랫폼 | Windows |
헤더 | xpsobjectmodel.h |