Condividi tramite


Interfaccia IXpsOMImageResource (xpsobjectmodel.h)

Fornisce un'interfaccia IStream a una risorsa immagine.

Ereditarietà

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

Metodi

L'interfaccia IXpsOMImageResource include questi metodi.

 
IXpsOMImageResource::GetImageType

Ottiene il tipo di risorsa immagine.
IXpsOMImageResource::GetStream

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

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

Commenti

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


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
}

Requisiti

   
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::CreateImageResource

IXpsOMResource

Interfacce

XML Paper Specification