Condividi tramite


Interfaccia IXpsOMColorProfileResource (xpsobjectmodel.h)

Fornisce un'interfaccia IStream a una risorsa profilo colore.

Ereditarietà

L'interfaccia IXpsOMColorProfileResource eredita da IXpsOMResource. IXpsOMColorProfileResource include anche questi tipi di membri:

Metodi

L'interfaccia IXpsOMColorProfileResource include questi metodi.

 
IXpsOMColorProfileResource::GetStream

Ottiene una nuova copia di sola lettura del flusso associato a questa risorsa. (IXpsOMColorProfileResource.GetStream)
IXpsOMColorProfileResource::SetContent

Imposta il flusso di sola lettura da associare a questa risorsa. (IXpsOMColorProfileResource.SetContent)

Commenti

L'esempio di codice seguente illustra come creare un'istanza di questa interfaccia.


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
}

Requisiti

Requisito Valore
Client minimo supportato Windows 7, Windows Vista con SP2 e Aggiornamento della piattaforma per Windows Vista [app desktop | App UWP]
Server minimo supportato Windows Server 2008 R2, Windows Server 2008 con SP2 e Platform Update per Windows Server 2008 [app desktop | App UWP]
Piattaforma di destinazione Windows
Intestazione xpsobjectmodel.h

Vedi anche

IXpsOMObjectFactory::CreateColorProfileResource

IXpsOMResource

Interfacce

XML Paper Specification