Aditya kumar singh 1fce8caa05 fixes #20265
## 📝 Summary

This PR fixes **noisy Type3 font warnings** when parsing PDFs.
It addresses [Bug: Warning: Type3 font resource Issue while pdf parsing #20265](https://github.com/mozilla/pdf.js/issues/20265).

---

## 🔧 Changes

- Adds a global flag in `web/app.js`:
  ```js
  globalThis.SILENCE_TYPE3_WARNINGS = true;
Updates the .catch block in loadType3Data to respect the flag:

js
Copy code
.catch(function (reason) {
  if (!globalThis.SILENCE_TYPE3_WARNINGS) {
    warn(`Type3 font resource "${key}" is not available.`);
  }
  const dummyOperatorList = new OperatorList();
  charProcOperatorList[key] = dummyOperatorList.getIR();
});
 Why this fix works
Yes 👍 — the changes you showed will fix the noisy Type3 warnings.

Here’s why:

You set the flag globally in web/app.js before the viewer initializes:

js
Copy code
globalThis.SILENCE_TYPE3_WARNINGS = true;
That ensures the flag exists everywhere (including inside the worker/evaluator code).

You patched the .catch in loadType3Data to respect the flag:

js
Copy code
.catch(function (reason) {
  if (!globalThis.SILENCE_TYPE3_WARNINGS) {
    warn(`Type3 font resource "${key}" is not available.`);
  }
  const dummyOperatorList = new OperatorList();
  charProcOperatorList[key] = dummyOperatorList.getIR();
});
➡️ With this combo, warnings will be silenced by default in the build.
If you ever want them back, just open the browser console and run:

js
Copy code
globalThis.SILENCE_TYPE3_WARNINGS = false;
🔍 Verification
To verify:

Open a PDF with a missing Type3 font (that normally logs many warnings).

Confirm no warnings are shown in the console.

Toggle logging back on at runtime:

js
Copy code
globalThis.SILENCE_TYPE3_WARNINGS = false;
and reload the PDF. Warnings should now appear.

📌 Notes
Resolves issue: #20265

Keeps console clean during normal usage.

Advanced users/devs can still toggle warnings for debugging.

No behavior changes to rendering logic — only logging is affected.
2025-09-15 16:28:24 +05:30
2025-09-15 16:28:24 +05:30
2025-09-15 16:28:24 +05:30
2024-01-20 09:52:57 +01:00
2024-11-18 15:00:07 +01:00
2024-10-04 22:38:31 +02:00
2017-10-23 13:31:36 -05:00
2015-02-17 11:07:37 -05:00
2025-04-13 18:57:56 -04:00

PDF.js CI

PDF.js is a Portable Document Format (PDF) viewer that is built with HTML5.

PDF.js is community-driven and supported by Mozilla. Our goal is to create a general-purpose, web standards-based platform for parsing and rendering PDFs.

Contributing

PDF.js is an open source project and always looking for more contributors. To get involved, visit:

Feel free to stop by our Matrix room for questions or guidance.

Getting Started

Online demo

Please note that the "Modern browsers" version assumes native support for the latest JavaScript features; please also see this wiki page.

Browser Extensions

Firefox

PDF.js is built into version 19+ of Firefox.

Chrome

  • The official extension for Chrome can be installed from the Chrome Web Store. This extension is maintained by @Rob--W.
  • Build Your Own - Get the code as explained below and issue npx gulp chromium. Then open Chrome, go to Tools > Extension and load the (unpackaged) extension from the directory build/chromium.

Getting the Code

To get a local copy of the current code, clone it using git:

$ git clone https://github.com/mozilla/pdf.js.git
$ cd pdf.js

Next, install Node.js via the official package or via nvm. If everything worked out, install all dependencies for PDF.js:

$ npm install

Finally, you need to start a local web server as some browsers do not allow opening PDF files using a file:// URL. Run:

$ npx gulp server

and then you can open:

Please keep in mind that this assumes the latest version of Mozilla Firefox; refer to Building PDF.js for non-development usage of the PDF.js library.

It is also possible to view all test PDF files on the right side by opening:

Building PDF.js

In order to bundle all src/ files into two production scripts and build the generic viewer, run:

$ npx gulp generic

If you need to support older browsers, run:

$ npx gulp generic-legacy

This will generate pdf.js and pdf.worker.js in the build/generic/build/ directory (respectively build/generic-legacy/build/). Both scripts are needed but only pdf.js needs to be included since pdf.worker.js will be loaded by pdf.js. The PDF.js files are large and should be minified for production.

Using PDF.js in a web application

To use PDF.js in a web application you can choose to use a pre-built version of the library or to build it from source. We supply pre-built versions for usage with NPM under the pdfjs-dist name. For more information and examples please refer to the wiki page on this subject.

Including via a CDN

PDF.js is hosted on several free CDNs:

Learning

You can play with the PDF.js API directly from your browser using the live demos below:

More examples can be found in the examples folder. Some of them are using the pdfjs-dist package, which can be built and installed in this repo directory via npx gulp dist-install command.

For an introduction to the PDF.js code, check out the presentation by our contributor Julian Viereck:

More learning resources can be found at:

The API documentation can be found at:

Questions

Check out our FAQs and get answers to common questions:

Talk to us on Matrix:

File an issue:

Description
PDF Reader in JavaScript
Readme Pixar 323 MiB
Languages
JavaScript 75.3%
Fluent 22%
CSS 1.8%
HTML 0.9%