IXpsOMImageResource 介面 (xpsobjectmodel.h)
提供映射資源的 IStream 介面。
繼承
IXpsOMImageResource介面繼承自IXpsOMResource。 IXpsOMImageResource 也有下列類型的成員:
方法
IXpsOMImageResource介面具有這些方法。
IXpsOMImageResource::GetImageType 取得影像資源的類型。 |
IXpsOMImageResource::GetStream 取得與此資源相關聯之資料流程的新唯讀複本。 (IXpsOMImageResource.GetStream) |
IXpsOMImageResource::SetContent 設定要與此資源相關聯的唯讀資料流程。 (IXpsOMImageResource.SetContent) |
備註
下列程式碼範例說明如何建立此介面的實例。
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 Vista 的 Windows 7、Windows Vista SP2 和平臺更新 [傳統型應用程式 |UWP 應用程式] |
最低支援的伺服器 | Windows Server 2008 R2、Windows Server 2008 SP2 和 Platform Update for Windows Server 2008 [傳統型應用程式 |UWP 應用程式] |
目標平台 | Windows |
標頭 | xpsobjectmodel.h |