Some test text!

Search
Hamburger Icon

Web / Guides / Embedded fonts

Embedded fonts using JavaScript

To extract embedded fonts in a document.

Make sure you have Full API enabled in WebViewer.

async function objIsEmbeddedFont(indirectObj) {
  if (await indirectObj.isFree()) {
    return false;
  }

  if (!(await indirectObj.isDict()) && !(await indirectObj.isStream())) {
    return false;
  }

  const typeObj = await indirectObj.findObj('Type');
  if (!typeObj || !(await typeObj.isName())) {
    return false;
  }

  const typeName = await typeObj.getName();
  if (typeName !== 'Font') {
    return false;
  }

  const subtypeObj = await indirectObj.findObj('Subtype');
  if (!!subtypeObj && await subtypeObj.isName()) {
    const subtypeName = await subtypeObj.getName();
    if (subtypeName === 'CIDFontType0') {
      return false;
    }
  }

  const font = await PDFNet.Font.createFromObj(indirectObj);
  return await font.isEmbedded();

}

WebViewer(...)
  .then(instance => {
    const { docViewer } = instance.Core;
    docViewer.addEventListener('documentLoaded', () => {
      const doc = await docViewer.getDocument().getPDFDoc();
      const sdfdoc = await doc.getSDFDoc();
      const xRefSize = await sdfdoc.xRefSize();
      for (let i = 0; i < xRefSize; ++i) {
        const indirectObj = await sdfdoc.getObj(i);
        if (await objIsEmbeddedFont(indirectObj)) {
          // perform document processing
        }
      }
    });
  });

About embedded fonts

PDF documents access fonts from one of two places: the host machine rendering the PDF document or from within the PDF document itself. When a font is used in a PDF document which is not available on the machine loading that document and it's not embedded within the document the viewer will usually load a different font. When that font is contained within the PDF document itself we call that an embedded font. When a PDF contains an embedded font that font can still be rendered even if it is not defined on the host machine.

All font information in a PDF is stored in the SDF layer as an SDF object and exists as either a dictionary or a stream. When a font exists a dictionary that means that means that it is defined exclusively within the PDF document but if it is defined as a stream that means it exists as a file which may or may not exist within the PDF document itself. It is possible for either type to be embedded.

It's also possible to programatically embed fonts within a PDF with the Apryse SDK. You can find an example in the ElementBuilder sample code.

The samples below demonstrates how to iterate over all embedded fonts found within a PDF document. Note that because this requires several low-level operations additional care must be taken for to check for possible null pointers. Also note that fonts with the subtype CIDFontType0 are not not counted as embedded fonts because they are necessarily referenced by a parent font within the same document.

Get the answers you need: Chat with us