다음을 통해 공유


IXpsOMFontResource 인터페이스(xpsobjectmodel.h)

글꼴 리소스에 IStream 인터페이스를 제공합니다.

상속

IXpsOMFontResource 인터페이스는 IXpsOMResource에서 상속됩니다. IXpsOMFontResource 에는 다음과 같은 유형의 멤버도 있습니다.

메서드

IXpsOMFontResource 인터페이스에는 이러한 메서드가 있습니다.

 
IXpsOMFontResource::GetEmbeddingOption

리소스가 serialize될 때 적용될 포함 옵션을 가져옵니다.
IXpsOMFontResource::GetStream

이 리소스와 연결된 스트림의 읽기 전용인 새 복사본을 가져옵니다. (IXpsOMFontResource.GetStream)
IXpsOMFontResource::SetContent

이 리소스와 연결할 읽기 전용 스트림을 설정합니다. (IXpsOMFontResource.SetContent)

설명

다음 코드 예제에서는 이 인터페이스의 instance 만드는 방법을 보여 줍니다.


IXpsOMFontResource    *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->CreateFontResource (
            acquiredStream, 
            XPS_FONT_EMBEDDING_NORMAL,    // normal
            partUri, 
            FALSE,                        // not obfuscated
            &newInterface);
        if (SUCCEEDED(hr))
        {
            // use newInterface

            newInterface->Release();
        }
        partUri->Release();
    }
    xpsFactory->Release();
}
else
{
    // evaluate HRESULT error returned in hr
}

요구 사항

요구 사항
지원되는 최소 클라이언트 Windows 7, Windows Vista SP2 및 Windows Vista용 플랫폼 업데이트가 포함된 Windows Vista [데스크톱 앱 | UWP 앱]
지원되는 최소 서버 Windows Server 2008 R2, Windows Server 2008 SP2 및 Windows Server 2008용 플랫폼 업데이트 [데스크톱 앱 | UWP 앱]
대상 플랫폼 Windows
헤더 xpsobjectmodel.h

추가 정보

IXpsOMObjectFactory::CreateFontResource

IXpsOMResource

인터페이스

XML Paper Specification