Freigeben über


IXpsOMObjectFactory::CreateColorProfileResource-Methode (xpsobjectmodel.h)

Erstellt eine IXpsOMColorProfileResource-Schnittstelle , die für den Zugriff auf einen Farbprofilressourcenstream verwendet wird.

Syntax

HRESULT CreateColorProfileResource(
  [in]          IStream                    *acquiredStream,
  [in]          IOpcPartUri                *partUri,
  [out, retval] IXpsOMColorProfileResource **colorProfileResource
);

Parameter

[in] acquiredStream

Die schreibgeschützte IStream-Schnittstelle , die dieser Ressource zugeordnet werden soll. Dieser Parameter darf nicht NULL sein.

Wichtig Behandeln Sie diesen Stream als Single-Threaded Apartment-Objekt (STA). geben Sie ihn nicht erneut ein.
 

[in] partUri

Die IOpcPartUri-Schnittstelle , die den Teilnamen enthält, der dieser Ressource zugewiesen werden soll.

[out, retval] colorProfileResource

Ein Zeiger auf die neue IXpsOMColorProfileResource-Schnittstelle .

Rückgabewert

Die Methode gibt ein HRESULT zurück. Mögliche Werte sind unter anderem diejenigen in der folgenden Tabelle. Informationen zu Rückgabewerten der XPS-Dokument-API, die in dieser Tabelle nicht aufgeführt sind, finden Sie unter XPS-Dokumentfehler.

Rückgabecode BESCHREIBUNG
S_OK
Die Methode wurde erfolgreich ausgeführt.
E_POINTER
acquiredStream, partUri oder colorProfileResource ist NULL.

Hinweise

Im folgenden Codebeispiel wird veranschaulicht, wie diese Methode zum Erstellen einer neuen Schnittstelle verwendet wird.


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
}

Anforderungen

Anforderung Wert
Unterstützte Mindestversion (Client) Windows 7, Windows Vista mit SP2 und Plattformupdate für Windows Vista [Desktop-Apps | UWP-Apps]
Unterstützte Mindestversion (Server) Windows Server 2008 R2, Windows Server 2008 mit SP2 und Plattformupdate für Windows Server 2008 [Desktop-Apps | UWP-Apps]
Zielplattform Windows
Kopfzeile xpsobjectmodel.h

Weitere Informationen

IOpcPartUri

IXpsOMColorProfileResource

IXpsOMObjectFactory

XML Paper Specification

XPS-Dokumentfehler