Méthode IXpsOMObjectFactory ::CreateColorProfileResource (xpsobjectmodel.h)
Crée une interface IXpsOMColorProfileResource , qui est utilisée pour accéder à un flux de ressources de profil de couleur.
Syntaxe
HRESULT CreateColorProfileResource(
[in] IStream *acquiredStream,
[in] IOpcPartUri *partUri,
[out, retval] IXpsOMColorProfileResource **colorProfileResource
);
Paramètres
[in] acquiredStream
Interface IStream en lecture seule à associer à cette ressource. Ce paramètre ne doit pas avoir la valeur NULL.
[in] partUri
Interface IOpcPartUri qui contient le nom de partie à affecter à cette ressource.
[out, retval] colorProfileResource
Pointeur vers la nouvelle interface IXpsOMColorProfileResource .
Valeur retournée
Cette méthode retourne un code HRESULT. Les valeurs possibles incluent, sans s’y limiter, celles de la table qui suit. Pour plus d’informations sur les valeurs de retour de l’API de document XPS qui ne sont pas répertoriées dans ce tableau, consultez Erreurs de document XPS.
Code de retour | Description |
---|---|
|
S_OK |
|
acquiredStream, partUri ou colorProfileResource a la valeur NULL. |
Remarques
L’exemple de code qui suit illustre comment cette méthode est utilisée pour créer une 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
}
Configuration requise
Condition requise | Valeur |
---|---|
Client minimal pris en charge | Windows 7, Windows Vista avec SP2 et Mise à jour de plateforme pour Windows Vista [applications de bureau | Applications UWP] |
Serveur minimal pris en charge | Windows Server 2008 R2, Windows Server 2008 avec SP2 et Mise à jour de plateforme pour Windows Server 2008 [applications de bureau | Applications UWP] |
Plateforme cible | Windows |
En-tête | xpsobjectmodel.h |