Interface IXpsOMColorProfileResource (xpsobjectmodel.h)
Fornece uma interface IStream para um recurso de perfil de cores.
Herança
A interface IXpsOMColorProfileResource herda de IXpsOMResource. IXpsOMColorProfileResource também tem esses tipos de membros:
Métodos
A interface IXpsOMColorProfileResource tem esses métodos.
IXpsOMColorProfileResource::GetStream Obtém uma nova cópia somente leitura do fluxo associado a esse recurso. (IXpsOMColorProfileResource.GetStream) |
IXpsOMColorProfileResource::SetContent Define o fluxo somente leitura a ser associado a esse recurso. (IXpsOMColorProfileResource.SetContent) |
Comentários
O exemplo de código a seguir ilustra como criar uma instância dessa interface.
IXpsOMColorProfileResource *newInterface;
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->CreateColorProfileResource (
acquiredStream,
partUri,
&newInterface);
if (SUCCEEDED(hr))
{
// use newInterface
newInterface->Release();
}
partUri->Release();
}
xpsFactory->Release();
}
else
{
// evaluate HRESULT error returned in hr
}
Requisitos
Requisito | Valor |
---|---|
Cliente mínimo com suporte | Windows 7, Windows Vista com SP2 e Atualização de Plataforma para Windows Vista [aplicativos da área de trabalho | Aplicativos UWP] |
Servidor mínimo com suporte | Windows Server 2008 R2, Windows Server 2008 com SP2 e Atualização de Plataforma para Windows Server 2008 [aplicativos da área de trabalho | Aplicativos UWP] |
Plataforma de Destino | Windows |
Cabeçalho | xpsobjectmodel.h |