mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-08 09:20:06 +02:00
Implement the new alt text flow (bug 1909604)
For the Firefox pdf viewer, we want to use AI to guess an alt-text when adding an image to a pdf. For now the telemtry stuff is not implemented and will come soon. In order to test it locally: - set enableAltText, enableFakeMLManager and enableUpdatedAddImage to true. or in Firefox: - set browser.ml.enable, pdfjs.enableAltText and pdfjs.enableUpdatedAddImage to true.
This commit is contained in:
parent
8378c40f4c
commit
ed22d934e5
22 changed files with 1366 additions and 91 deletions
|
@ -851,6 +851,10 @@ class AnnotationEditorUIManager {
|
|||
}
|
||||
}
|
||||
|
||||
hasMLManager() {
|
||||
return !!this.#mlManager;
|
||||
}
|
||||
|
||||
async mlGuess(data) {
|
||||
return this.#mlManager?.guess(data) || null;
|
||||
}
|
||||
|
@ -859,6 +863,10 @@ class AnnotationEditorUIManager {
|
|||
return !!(await this.#mlManager?.isEnabledFor(name));
|
||||
}
|
||||
|
||||
get mlManager() {
|
||||
return this.#mlManager;
|
||||
}
|
||||
|
||||
get useNewAltTextFlow() {
|
||||
return this.#enableUpdatedAddImage;
|
||||
}
|
||||
|
@ -912,8 +920,8 @@ class AnnotationEditorUIManager {
|
|||
this.#mainHighlightColorPicker = colorPicker;
|
||||
}
|
||||
|
||||
editAltText(editor) {
|
||||
this.#altTextManager?.editAltText(this, editor);
|
||||
editAltText(editor, firstTime = false) {
|
||||
this.#altTextManager?.editAltText(this, editor, firstTime);
|
||||
}
|
||||
|
||||
switchToMode(mode, callback) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue