Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -198,6 +198,15 @@ source_set("pdfium_public_headers_impl") {
sources = [
"public/cpp/fpdf_deleters.h",
"public/cpp/fpdf_scopers.h",
# EmbedPDF: detached, read-only PDF action models.
"public/epdf_action.h",
# EmbedPDF: public runtime font registration API used by page fallback
# rendering and annotation authoring.
"public/epdf_font.h",
# EmbedPDF: session-free AcroForm model, write transactions, FDF/XFDF.
"public/epdf_form.h",
# EmbedPDF: generic namespace-scoped document/page /PieceInfo metadata.
"public/epdf_pieceinfo.h",
"public/epdf_redact.h",
"public/fpdf_annot.h",
"public/fpdf_attachment.h",
Expand Down
49 changes: 47 additions & 2 deletions core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -379,8 +379,42 @@ void CPDF_PageContentGenerator::GenerateContent() {
return;
}

// EmbedPDF: did this pass rewrite EVERY existing content stream? Computed
// before the move — an append-only pass (a lone kNoContentStream bucket)
// leaves the existing streams' ops out of `page_objects_`' bookkeeping, so
// resource pruning must not run (see UpdateResourcesDict).
const int32_t existing_streams = CountExistingContentStreams();
bool regenerated_all_streams = true;
for (int32_t i = 0; i < existing_streams; ++i) {
if (!pdfium::Contains(new_stream_data, i)) {
regenerated_all_streams = false;
break;
}
}

UpdateContentStreams(std::move(new_stream_data));
UpdateResourcesDict();
UpdateResourcesDict(regenerated_all_streams);
}

int32_t CPDF_PageContentGenerator::CountExistingContentStreams() {
if (obj_holder_->GetMutableFormStream()) {
return 1;
}
RetainPtr<const CPDF_Object> contents =
obj_holder_->GetDict()->GetObjectFor(pdfium::page_object::kContents);
if (!contents) {
return 0;
}
// Resolve indirection: /Contents is commonly an indirect reference to a
// stream or to an array of streams.
RetainPtr<const CPDF_Object> direct = contents->GetDirect();
if (!direct) {
return 0;
}
if (const CPDF_Array* arr = direct->AsArray()) {
return pdfium::checked_cast<int32_t>(arr->size());
}
return direct->IsStream() ? 1 : 0;
}

std::map<int32_t, fxcrt::ostringstream>
Expand DownExpand Up@@ -540,7 +574,7 @@ void CPDF_PageContentGenerator::UpdateContentStreams(
}
}

void CPDF_PageContentGenerator::UpdateResourcesDict() {
void CPDF_PageContentGenerator::UpdateResourcesDict(bool regenerated_all_streams) {
RetainPtr<CPDF_Dictionary> resources = obj_holder_->GetMutableResources();
if (!resources) {
return;
Expand All@@ -560,6 +594,17 @@ void CPDF_PageContentGenerator::UpdateResourcesDict() {
// shared. Checked for that and clone those as well.
CloneResourcesDictEntries(document_, resources);

// EmbedPDF: pruning is only sound when THIS pass rewrote every content
// stream. `page_objects_` / `seen_resources` describe the SERIALIZED
// output; an untouched stream's raw ops can reference resources no page
// object records — e.g. a page-level `/C1 cs` prolog whose colorspace is
// inherited by a bare-`scn` Form XObject. Pruning after an append-only
// pass orphans those references (the classic symptom: the whole page
// collapses to grayscale after applying a redaction that touched nothing).
if (!regenerated_all_streams) {
return;
}

ResourcesMap seen_resources;
for (auto& page_object : page_objects_) {
if (!page_object->IsActive()) {
Expand Down
9 changes: 8 additions & 1 deletion core/fpdfapi/edit/cpdf_pagecontentgenerator.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -81,7 +81,14 @@ class CPDF_PageContentGenerator {

// Updates the resource dictionary for `obj_holder_` to account for all the
// changes.
void UpdateResourcesDict();
// EmbedPDF: `regenerated_all_streams` reports whether THIS pass rewrote
// every existing content stream. Resource pruning is only sound then —
// see the guard in the implementation.
void UpdateResourcesDict(bool regenerated_all_streams);

// EmbedPDF: the holder's current content-stream count (form = its single
// stream; page = resolved /Contents array size, or 1 for a lone stream).
int32_t CountExistingContentStreams();

UnownedPtr<CPDF_PageObjectHolder> const obj_holder_;
UnownedPtr<CPDF_Document> const document_;
Expand Down
40 changes: 33 additions & 7 deletions core/fpdfapi/font/cpdf_font.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,8 +30,10 @@
#include "core/fxcrt/check.h"
#include "core/fxcrt/fx_codepage.h"
#include "core/fxcrt/fx_safe_types.h"
#include "core/fxcrt/numerics/safe_conversions.h"
#include "core/fxcrt/stl_util.h"
#include "core/fxge/cfx_fontmapper.h"
#include "core/fxge/cfx_fontregistry.h"
#include "core/fxge/cfx_substfont.h"
#include "core/fxge/fx_font.h"
#include "core/fxge/fx_fontencoding.h"
Expand DownExpand Up@@ -395,14 +397,38 @@ const char* CPDF_Font::GetAdobeCharName(
}

uint32_t CPDF_Font::FallbackFontFromCharcode(uint32_t charcode) {
// EmbedPDF: prefer fonts registered through EPDFFont_* before falling back to
// PDFium's hard-coded Arial substitute. This lets broken PDFs with missing
// glyph coverage render through the same runtime fallback registry used by
// annotation authoring, without repairing or mutating the source PDF.
WideString str = UnicodeFromCharCode(charcode);
uint32_t unicode = !str.IsEmpty() ? str[0] : charcode;
for (size_t i = 0; i < font_fallbacks_.size(); ++i) {
if (font_fallbacks_[i]->GetFace() &&
font_fallbacks_[i]->GetFace()->GetCharIndex(unicode) != 0) {
return pdfium::checked_cast<uint32_t>(i);
}
}

FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
const int weight = safe_weight.ValueOrDefault(pdfium::kFontWeightNormal);
if (auto font_id = CFX_FontRegistry::FindFallbackFont(unicode, weight,
italic_angle_ != 0)) {
std::unique_ptr<CFX_Font> fallback_font =
CFX_FontRegistry::CreateFont(*font_id);
if (fallback_font) {
font_fallbacks_.push_back(std::move(fallback_font));
return pdfium::checked_cast<uint32_t>(font_fallbacks_.size() - 1);
}
}

if (font_fallbacks_.empty()) {
font_fallbacks_.push_back(std::make_unique<CFX_Font>());
FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
font_fallbacks_[0]->LoadSubst(
"Arial", IsTrueTypeFont(), flags_,
safe_weight.ValueOrDefault(pdfium::kFontWeightNormal), italic_angle_,
FX_CodePage::kDefANSI, IsVertWriting());
auto fallback_font = std::make_unique<CFX_Font>();
fallback_font->LoadSubst("Arial", IsTrueTypeFont(), flags_, weight,
italic_angle_, FX_CodePage::kDefANSI,
IsVertWriting());
font_fallbacks_.push_back(std::move(fallback_font));
}
return 0;
}
Expand Down
4 changes: 4 additions & 0 deletions core/fpdfapi/page/cpdf_annotcontext.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,6 +35,10 @@ class CPDF_AnnotContext {
// Never nullptr.
IPDF_Page* GetPage() const { return page_; }

// Index at the time the annotation handle was created, or -1 when the
// handle was not created from a page annotation lookup.
int GetAnnotIndex() const { return annot_index_; }

private:
void EnsureMutableBackingForAnnotDict();

Expand Down
9 changes: 9 additions & 0 deletions core/fpdfdoc/BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,6 +13,12 @@ source_set("fpdfdoc") {
"cpdf_action.h",
"cpdf_annot.cpp",
"cpdf_annot.h",
# EmbedPDF: registered FreeText annotation fonts and per-layer subset
# embedding. Keep these fork-owned files when rebasing from upstream PDFium.
"cpdf_annotfontmap.cpp",
"cpdf_annotfontmap.h",
"cpdf_annotfontsubset.cpp",
"cpdf_annotfontsubset.h",
"cpdf_annotlist.cpp",
"cpdf_annotlist.h",
"cpdf_apsettings.cpp",
Expand DownExpand Up@@ -92,6 +98,9 @@ source_set("fpdfdoc") {
"../fpdfapi/render",
"../fxcrt",
"../fxge",
# EmbedPDF: CPDF_AnnotFontSubset uses HarfBuzz subsetting to embed only the
# glyphs used by each saved annotation/layer.
"../../third_party/harfbuzz-ng",
]
visibility = [ "../../*" ]
}
Expand Down
4 changes: 3 additions & 1 deletion core/fpdfdoc/cpdf_annot_unittest.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -189,5 +189,7 @@ TEST_F(CPDFAnnotWithPageModuleTest,
EXPECT_FALSE(annot_dict->KeyExist(pdfium::annotation::kAP));
EXPECT_EQ(CFX_FloatRect(0, 0, 10, 10),
annot_dict->GetRectFor(pdfium::annotation::kRect));
EXPECT_EQ(CFX_FloatRect(-2, -2, 12, 12), annot.GetRect());
// The drawing rect is the minimal union of the authored /Rect and the
// stroked ink bounds: points 1..9 inflated by half the width (2).
EXPECT_EQ(CFX_FloatRect(-1, -1, 11, 11), annot.GetRect());
}
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all \u003cpre\u003e\u003ccode\u003e blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks"); } } catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); } })(); (function(){ try { var __m = "github.com"; var __re = new RegExp('^' + "github\\.com" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -198,6 +198,15 @@ source_set("pdfium_public_headers_impl") {
sources = [
"public/cpp/fpdf_deleters.h",
"public/cpp/fpdf_scopers.h",
# EmbedPDF: detached, read-only PDF action models.
"public/epdf_action.h",
# EmbedPDF: public runtime font registration API used by page fallback
# rendering and annotation authoring.
"public/epdf_font.h",
# EmbedPDF: session-free AcroForm model, write transactions, FDF/XFDF.
"public/epdf_form.h",
# EmbedPDF: generic namespace-scoped document/page /PieceInfo metadata.
"public/epdf_pieceinfo.h",
"public/epdf_redact.h",
"public/fpdf_annot.h",
"public/fpdf_attachment.h",
Expand Down
49 changes: 47 additions & 2 deletions core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -379,8 +379,42 @@ void CPDF_PageContentGenerator::GenerateContent() {
return;
}

// EmbedPDF: did this pass rewrite EVERY existing content stream? Computed
// before the move — an append-only pass (a lone kNoContentStream bucket)
// leaves the existing streams' ops out of `page_objects_`' bookkeeping, so
// resource pruning must not run (see UpdateResourcesDict).
const int32_t existing_streams = CountExistingContentStreams();
bool regenerated_all_streams = true;
for (int32_t i = 0; i < existing_streams; ++i) {
if (!pdfium::Contains(new_stream_data, i)) {
regenerated_all_streams = false;
break;
}
}

UpdateContentStreams(std::move(new_stream_data));
UpdateResourcesDict();
UpdateResourcesDict(regenerated_all_streams);
}

int32_t CPDF_PageContentGenerator::CountExistingContentStreams() {
if (obj_holder_->GetMutableFormStream()) {
return 1;
}
RetainPtr<const CPDF_Object> contents =
obj_holder_->GetDict()->GetObjectFor(pdfium::page_object::kContents);
if (!contents) {
return 0;
}
// Resolve indirection: /Contents is commonly an indirect reference to a
// stream or to an array of streams.
RetainPtr<const CPDF_Object> direct = contents->GetDirect();
if (!direct) {
return 0;
}
if (const CPDF_Array* arr = direct->AsArray()) {
return pdfium::checked_cast<int32_t>(arr->size());
}
return direct->IsStream() ? 1 : 0;
}

std::map<int32_t, fxcrt::ostringstream>
Expand DownExpand Up@@ -540,7 +574,7 @@ void CPDF_PageContentGenerator::UpdateContentStreams(
}
}

void CPDF_PageContentGenerator::UpdateResourcesDict() {
void CPDF_PageContentGenerator::UpdateResourcesDict(bool regenerated_all_streams) {
RetainPtr<CPDF_Dictionary> resources = obj_holder_->GetMutableResources();
if (!resources) {
return;
Expand All@@ -560,6 +594,17 @@ void CPDF_PageContentGenerator::UpdateResourcesDict() {
// shared. Checked for that and clone those as well.
CloneResourcesDictEntries(document_, resources);

// EmbedPDF: pruning is only sound when THIS pass rewrote every content
// stream. `page_objects_` / `seen_resources` describe the SERIALIZED
// output; an untouched stream's raw ops can reference resources no page
// object records — e.g. a page-level `/C1 cs` prolog whose colorspace is
// inherited by a bare-`scn` Form XObject. Pruning after an append-only
// pass orphans those references (the classic symptom: the whole page
// collapses to grayscale after applying a redaction that touched nothing).
if (!regenerated_all_streams) {
return;
}

ResourcesMap seen_resources;
for (auto& page_object : page_objects_) {
if (!page_object->IsActive()) {
Expand Down
9 changes: 8 additions & 1 deletion core/fpdfapi/edit/cpdf_pagecontentgenerator.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -81,7 +81,14 @@ class CPDF_PageContentGenerator {

// Updates the resource dictionary for `obj_holder_` to account for all the
// changes.
void UpdateResourcesDict();
// EmbedPDF: `regenerated_all_streams` reports whether THIS pass rewrote
// every existing content stream. Resource pruning is only sound then —
// see the guard in the implementation.
void UpdateResourcesDict(bool regenerated_all_streams);

// EmbedPDF: the holder's current content-stream count (form = its single
// stream; page = resolved /Contents array size, or 1 for a lone stream).
int32_t CountExistingContentStreams();

UnownedPtr<CPDF_PageObjectHolder> const obj_holder_;
UnownedPtr<CPDF_Document> const document_;
Expand Down
40 changes: 33 additions & 7 deletions core/fpdfapi/font/cpdf_font.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,8 +30,10 @@
#include "core/fxcrt/check.h"
#include "core/fxcrt/fx_codepage.h"
#include "core/fxcrt/fx_safe_types.h"
#include "core/fxcrt/numerics/safe_conversions.h"
#include "core/fxcrt/stl_util.h"
#include "core/fxge/cfx_fontmapper.h"
#include "core/fxge/cfx_fontregistry.h"
#include "core/fxge/cfx_substfont.h"
#include "core/fxge/fx_font.h"
#include "core/fxge/fx_fontencoding.h"
Expand DownExpand Up@@ -395,14 +397,38 @@ const char* CPDF_Font::GetAdobeCharName(
}

uint32_t CPDF_Font::FallbackFontFromCharcode(uint32_t charcode) {
// EmbedPDF: prefer fonts registered through EPDFFont_* before falling back to
// PDFium's hard-coded Arial substitute. This lets broken PDFs with missing
// glyph coverage render through the same runtime fallback registry used by
// annotation authoring, without repairing or mutating the source PDF.
WideString str = UnicodeFromCharCode(charcode);
uint32_t unicode = !str.IsEmpty() ? str[0] : charcode;
for (size_t i = 0; i < font_fallbacks_.size(); ++i) {
if (font_fallbacks_[i]->GetFace() &&
font_fallbacks_[i]->GetFace()->GetCharIndex(unicode) != 0) {
return pdfium::checked_cast<uint32_t>(i);
}
}

FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
const int weight = safe_weight.ValueOrDefault(pdfium::kFontWeightNormal);
if (auto font_id = CFX_FontRegistry::FindFallbackFont(unicode, weight,
italic_angle_ != 0)) {
std::unique_ptr<CFX_Font> fallback_font =
CFX_FontRegistry::CreateFont(*font_id);
if (fallback_font) {
font_fallbacks_.push_back(std::move(fallback_font));
return pdfium::checked_cast<uint32_t>(font_fallbacks_.size() - 1);
}
}

if (font_fallbacks_.empty()) {
font_fallbacks_.push_back(std::make_unique<CFX_Font>());
FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
font_fallbacks_[0]->LoadSubst(
"Arial", IsTrueTypeFont(), flags_,
safe_weight.ValueOrDefault(pdfium::kFontWeightNormal), italic_angle_,
FX_CodePage::kDefANSI, IsVertWriting());
auto fallback_font = std::make_unique<CFX_Font>();
fallback_font->LoadSubst("Arial", IsTrueTypeFont(), flags_, weight,
italic_angle_, FX_CodePage::kDefANSI,
IsVertWriting());
font_fallbacks_.push_back(std::move(fallback_font));
}
return 0;
}
Expand Down
4 changes: 4 additions & 0 deletions core/fpdfapi/page/cpdf_annotcontext.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,6 +35,10 @@ class CPDF_AnnotContext {
// Never nullptr.
IPDF_Page* GetPage() const { return page_; }

// Index at the time the annotation handle was created, or -1 when the
// handle was not created from a page annotation lookup.
int GetAnnotIndex() const { return annot_index_; }

private:
void EnsureMutableBackingForAnnotDict();

Expand Down
9 changes: 9 additions & 0 deletions core/fpdfdoc/BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,6 +13,12 @@ source_set("fpdfdoc") {
"cpdf_action.h",
"cpdf_annot.cpp",
"cpdf_annot.h",
# EmbedPDF: registered FreeText annotation fonts and per-layer subset
# embedding. Keep these fork-owned files when rebasing from upstream PDFium.
"cpdf_annotfontmap.cpp",
"cpdf_annotfontmap.h",
"cpdf_annotfontsubset.cpp",
"cpdf_annotfontsubset.h",
"cpdf_annotlist.cpp",
"cpdf_annotlist.h",
"cpdf_apsettings.cpp",
Expand DownExpand Up@@ -92,6 +98,9 @@ source_set("fpdfdoc") {
"../fpdfapi/render",
"../fxcrt",
"../fxge",
# EmbedPDF: CPDF_AnnotFontSubset uses HarfBuzz subsetting to embed only the
# glyphs used by each saved annotation/layer.
"../../third_party/harfbuzz-ng",
]
visibility = [ "../../*" ]
}
Expand Down
4 changes: 3 additions & 1 deletion core/fpdfdoc/cpdf_annot_unittest.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -189,5 +189,7 @@ TEST_F(CPDFAnnotWithPageModuleTest,
EXPECT_FALSE(annot_dict->KeyExist(pdfium::annotation::kAP));
EXPECT_EQ(CFX_FloatRect(0, 0, 10, 10),
annot_dict->GetRectFor(pdfium::annotation::kRect));
EXPECT_EQ(CFX_FloatRect(-2, -2, 12, 12), annot.GetRect());
// The drawing rect is the minimal union of the authored /Rect and the
// stroked ink bounds: points 1..9 inflated by half the width (2).
EXPECT_EQ(CFX_FloatRect(-1, -1, 11, 11), annot.GetRect());
}
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -198,6 +198,15 @@ source_set("pdfium_public_headers_impl") {
sources = [
"public/cpp/fpdf_deleters.h",
"public/cpp/fpdf_scopers.h",
# EmbedPDF: detached, read-only PDF action models.
"public/epdf_action.h",
# EmbedPDF: public runtime font registration API used by page fallback
# rendering and annotation authoring.
"public/epdf_font.h",
# EmbedPDF: session-free AcroForm model, write transactions, FDF/XFDF.
"public/epdf_form.h",
# EmbedPDF: generic namespace-scoped document/page /PieceInfo metadata.
"public/epdf_pieceinfo.h",
"public/epdf_redact.h",
"public/fpdf_annot.h",
"public/fpdf_attachment.h",
Expand Down
49 changes: 47 additions & 2 deletions core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -379,8 +379,42 @@ void CPDF_PageContentGenerator::GenerateContent() {
return;
}

// EmbedPDF: did this pass rewrite EVERY existing content stream? Computed
// before the move — an append-only pass (a lone kNoContentStream bucket)
// leaves the existing streams' ops out of `page_objects_`' bookkeeping, so
// resource pruning must not run (see UpdateResourcesDict).
const int32_t existing_streams = CountExistingContentStreams();
bool regenerated_all_streams = true;
for (int32_t i = 0; i < existing_streams; ++i) {
if (!pdfium::Contains(new_stream_data, i)) {
regenerated_all_streams = false;
break;
}
}

UpdateContentStreams(std::move(new_stream_data));
UpdateResourcesDict();
UpdateResourcesDict(regenerated_all_streams);
}

int32_t CPDF_PageContentGenerator::CountExistingContentStreams() {
if (obj_holder_->GetMutableFormStream()) {
return 1;
}
RetainPtr<const CPDF_Object> contents =
obj_holder_->GetDict()->GetObjectFor(pdfium::page_object::kContents);
if (!contents) {
return 0;
}
// Resolve indirection: /Contents is commonly an indirect reference to a
// stream or to an array of streams.
RetainPtr<const CPDF_Object> direct = contents->GetDirect();
if (!direct) {
return 0;
}
if (const CPDF_Array* arr = direct->AsArray()) {
return pdfium::checked_cast<int32_t>(arr->size());
}
return direct->IsStream() ? 1 : 0;
}

std::map<int32_t, fxcrt::ostringstream>
Expand DownExpand Up@@ -540,7 +574,7 @@ void CPDF_PageContentGenerator::UpdateContentStreams(
}
}

void CPDF_PageContentGenerator::UpdateResourcesDict() {
void CPDF_PageContentGenerator::UpdateResourcesDict(bool regenerated_all_streams) {
RetainPtr<CPDF_Dictionary> resources = obj_holder_->GetMutableResources();
if (!resources) {
return;
Expand All@@ -560,6 +594,17 @@ void CPDF_PageContentGenerator::UpdateResourcesDict() {
// shared. Checked for that and clone those as well.
CloneResourcesDictEntries(document_, resources);

// EmbedPDF: pruning is only sound when THIS pass rewrote every content
// stream. `page_objects_` / `seen_resources` describe the SERIALIZED
// output; an untouched stream's raw ops can reference resources no page
// object records — e.g. a page-level `/C1 cs` prolog whose colorspace is
// inherited by a bare-`scn` Form XObject. Pruning after an append-only
// pass orphans those references (the classic symptom: the whole page
// collapses to grayscale after applying a redaction that touched nothing).
if (!regenerated_all_streams) {
return;
}

ResourcesMap seen_resources;
for (auto& page_object : page_objects_) {
if (!page_object->IsActive()) {
Expand Down
9 changes: 8 additions & 1 deletion core/fpdfapi/edit/cpdf_pagecontentgenerator.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -81,7 +81,14 @@ class CPDF_PageContentGenerator {

// Updates the resource dictionary for `obj_holder_` to account for all the
// changes.
void UpdateResourcesDict();
// EmbedPDF: `regenerated_all_streams` reports whether THIS pass rewrote
// every existing content stream. Resource pruning is only sound then —
// see the guard in the implementation.
void UpdateResourcesDict(bool regenerated_all_streams);

// EmbedPDF: the holder's current content-stream count (form = its single
// stream; page = resolved /Contents array size, or 1 for a lone stream).
int32_t CountExistingContentStreams();

UnownedPtr<CPDF_PageObjectHolder> const obj_holder_;
UnownedPtr<CPDF_Document> const document_;
Expand Down
40 changes: 33 additions & 7 deletions core/fpdfapi/font/cpdf_font.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,8 +30,10 @@
#include "core/fxcrt/check.h"
#include "core/fxcrt/fx_codepage.h"
#include "core/fxcrt/fx_safe_types.h"
#include "core/fxcrt/numerics/safe_conversions.h"
#include "core/fxcrt/stl_util.h"
#include "core/fxge/cfx_fontmapper.h"
#include "core/fxge/cfx_fontregistry.h"
#include "core/fxge/cfx_substfont.h"
#include "core/fxge/fx_font.h"
#include "core/fxge/fx_fontencoding.h"
Expand DownExpand Up@@ -395,14 +397,38 @@ const char* CPDF_Font::GetAdobeCharName(
}

uint32_t CPDF_Font::FallbackFontFromCharcode(uint32_t charcode) {
// EmbedPDF: prefer fonts registered through EPDFFont_* before falling back to
// PDFium's hard-coded Arial substitute. This lets broken PDFs with missing
// glyph coverage render through the same runtime fallback registry used by
// annotation authoring, without repairing or mutating the source PDF.
WideString str = UnicodeFromCharCode(charcode);
uint32_t unicode = !str.IsEmpty() ? str[0] : charcode;
for (size_t i = 0; i < font_fallbacks_.size(); ++i) {
if (font_fallbacks_[i]->GetFace() &&
font_fallbacks_[i]->GetFace()->GetCharIndex(unicode) != 0) {
return pdfium::checked_cast<uint32_t>(i);
}
}

FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
const int weight = safe_weight.ValueOrDefault(pdfium::kFontWeightNormal);
if (auto font_id = CFX_FontRegistry::FindFallbackFont(unicode, weight,
italic_angle_ != 0)) {
std::unique_ptr<CFX_Font> fallback_font =
CFX_FontRegistry::CreateFont(*font_id);
if (fallback_font) {
font_fallbacks_.push_back(std::move(fallback_font));
return pdfium::checked_cast<uint32_t>(font_fallbacks_.size() - 1);
}
}

if (font_fallbacks_.empty()) {
font_fallbacks_.push_back(std::make_unique<CFX_Font>());
FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
font_fallbacks_[0]->LoadSubst(
"Arial", IsTrueTypeFont(), flags_,
safe_weight.ValueOrDefault(pdfium::kFontWeightNormal), italic_angle_,
FX_CodePage::kDefANSI, IsVertWriting());
auto fallback_font = std::make_unique<CFX_Font>();
fallback_font->LoadSubst("Arial", IsTrueTypeFont(), flags_, weight,
italic_angle_, FX_CodePage::kDefANSI,
IsVertWriting());
font_fallbacks_.push_back(std::move(fallback_font));
}
return 0;
}
Expand Down
4 changes: 4 additions & 0 deletions core/fpdfapi/page/cpdf_annotcontext.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,6 +35,10 @@ class CPDF_AnnotContext {
// Never nullptr.
IPDF_Page* GetPage() const { return page_; }

// Index at the time the annotation handle was created, or -1 when the
// handle was not created from a page annotation lookup.
int GetAnnotIndex() const { return annot_index_; }

private:
void EnsureMutableBackingForAnnotDict();

Expand Down
9 changes: 9 additions & 0 deletions core/fpdfdoc/BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,6 +13,12 @@ source_set("fpdfdoc") {
"cpdf_action.h",
"cpdf_annot.cpp",
"cpdf_annot.h",
# EmbedPDF: registered FreeText annotation fonts and per-layer subset
# embedding. Keep these fork-owned files when rebasing from upstream PDFium.
"cpdf_annotfontmap.cpp",
"cpdf_annotfontmap.h",
"cpdf_annotfontsubset.cpp",
"cpdf_annotfontsubset.h",
"cpdf_annotlist.cpp",
"cpdf_annotlist.h",
"cpdf_apsettings.cpp",
Expand DownExpand Up@@ -92,6 +98,9 @@ source_set("fpdfdoc") {
"../fpdfapi/render",
"../fxcrt",
"../fxge",
# EmbedPDF: CPDF_AnnotFontSubset uses HarfBuzz subsetting to embed only the
# glyphs used by each saved annotation/layer.
"../../third_party/harfbuzz-ng",
]
visibility = [ "../../*" ]
}
Expand Down
4 changes: 3 additions & 1 deletion core/fpdfdoc/cpdf_annot_unittest.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -189,5 +189,7 @@ TEST_F(CPDFAnnotWithPageModuleTest,
EXPECT_FALSE(annot_dict->KeyExist(pdfium::annotation::kAP));
EXPECT_EQ(CFX_FloatRect(0, 0, 10, 10),
annot_dict->GetRectFor(pdfium::annotation::kRect));
EXPECT_EQ(CFX_FloatRect(-2, -2, 12, 12), annot.GetRect());
// The drawing rect is the minimal union of the authored /Rect and the
// stroked ink bounds: points 1..9 inflated by half the width (2).
EXPECT_EQ(CFX_FloatRect(-1, -1, 11, 11), annot.GetRect());
}
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length \u003e 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -198,6 +198,15 @@ source_set("pdfium_public_headers_impl") {
sources = [
"public/cpp/fpdf_deleters.h",
"public/cpp/fpdf_scopers.h",
# EmbedPDF: detached, read-only PDF action models.
"public/epdf_action.h",
# EmbedPDF: public runtime font registration API used by page fallback
# rendering and annotation authoring.
"public/epdf_font.h",
# EmbedPDF: session-free AcroForm model, write transactions, FDF/XFDF.
"public/epdf_form.h",
# EmbedPDF: generic namespace-scoped document/page /PieceInfo metadata.
"public/epdf_pieceinfo.h",
"public/epdf_redact.h",
"public/fpdf_annot.h",
"public/fpdf_attachment.h",
Expand Down
49 changes: 47 additions & 2 deletions core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -379,8 +379,42 @@ void CPDF_PageContentGenerator::GenerateContent() {
return;
}

// EmbedPDF: did this pass rewrite EVERY existing content stream? Computed
// before the move — an append-only pass (a lone kNoContentStream bucket)
// leaves the existing streams' ops out of `page_objects_`' bookkeeping, so
// resource pruning must not run (see UpdateResourcesDict).
const int32_t existing_streams = CountExistingContentStreams();
bool regenerated_all_streams = true;
for (int32_t i = 0; i < existing_streams; ++i) {
if (!pdfium::Contains(new_stream_data, i)) {
regenerated_all_streams = false;
break;
}
}

UpdateContentStreams(std::move(new_stream_data));
UpdateResourcesDict();
UpdateResourcesDict(regenerated_all_streams);
}

int32_t CPDF_PageContentGenerator::CountExistingContentStreams() {
if (obj_holder_->GetMutableFormStream()) {
return 1;
}
RetainPtr<const CPDF_Object> contents =
obj_holder_->GetDict()->GetObjectFor(pdfium::page_object::kContents);
if (!contents) {
return 0;
}
// Resolve indirection: /Contents is commonly an indirect reference to a
// stream or to an array of streams.
RetainPtr<const CPDF_Object> direct = contents->GetDirect();
if (!direct) {
return 0;
}
if (const CPDF_Array* arr = direct->AsArray()) {
return pdfium::checked_cast<int32_t>(arr->size());
}
return direct->IsStream() ? 1 : 0;
}

std::map<int32_t, fxcrt::ostringstream>
Expand DownExpand Up@@ -540,7 +574,7 @@ void CPDF_PageContentGenerator::UpdateContentStreams(
}
}

void CPDF_PageContentGenerator::UpdateResourcesDict() {
void CPDF_PageContentGenerator::UpdateResourcesDict(bool regenerated_all_streams) {
RetainPtr<CPDF_Dictionary> resources = obj_holder_->GetMutableResources();
if (!resources) {
return;
Expand All@@ -560,6 +594,17 @@ void CPDF_PageContentGenerator::UpdateResourcesDict() {
// shared. Checked for that and clone those as well.
CloneResourcesDictEntries(document_, resources);

// EmbedPDF: pruning is only sound when THIS pass rewrote every content
// stream. `page_objects_` / `seen_resources` describe the SERIALIZED
// output; an untouched stream's raw ops can reference resources no page
// object records — e.g. a page-level `/C1 cs` prolog whose colorspace is
// inherited by a bare-`scn` Form XObject. Pruning after an append-only
// pass orphans those references (the classic symptom: the whole page
// collapses to grayscale after applying a redaction that touched nothing).
if (!regenerated_all_streams) {
return;
}

ResourcesMap seen_resources;
for (auto& page_object : page_objects_) {
if (!page_object->IsActive()) {
Expand Down
9 changes: 8 additions & 1 deletion core/fpdfapi/edit/cpdf_pagecontentgenerator.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -81,7 +81,14 @@ class CPDF_PageContentGenerator {

// Updates the resource dictionary for `obj_holder_` to account for all the
// changes.
void UpdateResourcesDict();
// EmbedPDF: `regenerated_all_streams` reports whether THIS pass rewrote
// every existing content stream. Resource pruning is only sound then —
// see the guard in the implementation.
void UpdateResourcesDict(bool regenerated_all_streams);

// EmbedPDF: the holder's current content-stream count (form = its single
// stream; page = resolved /Contents array size, or 1 for a lone stream).
int32_t CountExistingContentStreams();

UnownedPtr<CPDF_PageObjectHolder> const obj_holder_;
UnownedPtr<CPDF_Document> const document_;
Expand Down
40 changes: 33 additions & 7 deletions core/fpdfapi/font/cpdf_font.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,8 +30,10 @@
#include "core/fxcrt/check.h"
#include "core/fxcrt/fx_codepage.h"
#include "core/fxcrt/fx_safe_types.h"
#include "core/fxcrt/numerics/safe_conversions.h"
#include "core/fxcrt/stl_util.h"
#include "core/fxge/cfx_fontmapper.h"
#include "core/fxge/cfx_fontregistry.h"
#include "core/fxge/cfx_substfont.h"
#include "core/fxge/fx_font.h"
#include "core/fxge/fx_fontencoding.h"
Expand DownExpand Up@@ -395,14 +397,38 @@ const char* CPDF_Font::GetAdobeCharName(
}

uint32_t CPDF_Font::FallbackFontFromCharcode(uint32_t charcode) {
// EmbedPDF: prefer fonts registered through EPDFFont_* before falling back to
// PDFium's hard-coded Arial substitute. This lets broken PDFs with missing
// glyph coverage render through the same runtime fallback registry used by
// annotation authoring, without repairing or mutating the source PDF.
WideString str = UnicodeFromCharCode(charcode);
uint32_t unicode = !str.IsEmpty() ? str[0] : charcode;
for (size_t i = 0; i < font_fallbacks_.size(); ++i) {
if (font_fallbacks_[i]->GetFace() &&
font_fallbacks_[i]->GetFace()->GetCharIndex(unicode) != 0) {
return pdfium::checked_cast<uint32_t>(i);
}
}

FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
const int weight = safe_weight.ValueOrDefault(pdfium::kFontWeightNormal);
if (auto font_id = CFX_FontRegistry::FindFallbackFont(unicode, weight,
italic_angle_ != 0)) {
std::unique_ptr<CFX_Font> fallback_font =
CFX_FontRegistry::CreateFont(*font_id);
if (fallback_font) {
font_fallbacks_.push_back(std::move(fallback_font));
return pdfium::checked_cast<uint32_t>(font_fallbacks_.size() - 1);
}
}

if (font_fallbacks_.empty()) {
font_fallbacks_.push_back(std::make_unique<CFX_Font>());
FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
font_fallbacks_[0]->LoadSubst(
"Arial", IsTrueTypeFont(), flags_,
safe_weight.ValueOrDefault(pdfium::kFontWeightNormal), italic_angle_,
FX_CodePage::kDefANSI, IsVertWriting());
auto fallback_font = std::make_unique<CFX_Font>();
fallback_font->LoadSubst("Arial", IsTrueTypeFont(), flags_, weight,
italic_angle_, FX_CodePage::kDefANSI,
IsVertWriting());
font_fallbacks_.push_back(std::move(fallback_font));
}
return 0;
}
Expand Down
4 changes: 4 additions & 0 deletions core/fpdfapi/page/cpdf_annotcontext.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,6 +35,10 @@ class CPDF_AnnotContext {
// Never nullptr.
IPDF_Page* GetPage() const { return page_; }

// Index at the time the annotation handle was created, or -1 when the
// handle was not created from a page annotation lookup.
int GetAnnotIndex() const { return annot_index_; }

private:
void EnsureMutableBackingForAnnotDict();

Expand Down
9 changes: 9 additions & 0 deletions core/fpdfdoc/BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,6 +13,12 @@ source_set("fpdfdoc") {
"cpdf_action.h",
"cpdf_annot.cpp",
"cpdf_annot.h",
# EmbedPDF: registered FreeText annotation fonts and per-layer subset
# embedding. Keep these fork-owned files when rebasing from upstream PDFium.
"cpdf_annotfontmap.cpp",
"cpdf_annotfontmap.h",
"cpdf_annotfontsubset.cpp",
"cpdf_annotfontsubset.h",
"cpdf_annotlist.cpp",
"cpdf_annotlist.h",
"cpdf_apsettings.cpp",
Expand DownExpand Up@@ -92,6 +98,9 @@ source_set("fpdfdoc") {
"../fpdfapi/render",
"../fxcrt",
"../fxge",
# EmbedPDF: CPDF_AnnotFontSubset uses HarfBuzz subsetting to embed only the
# glyphs used by each saved annotation/layer.
"../../third_party/harfbuzz-ng",
]
visibility = [ "../../*" ]
}
Expand Down
4 changes: 3 additions & 1 deletion core/fpdfdoc/cpdf_annot_unittest.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -189,5 +189,7 @@ TEST_F(CPDFAnnotWithPageModuleTest,
EXPECT_FALSE(annot_dict->KeyExist(pdfium::annotation::kAP));
EXPECT_EQ(CFX_FloatRect(0, 0, 10, 10),
annot_dict->GetRectFor(pdfium::annotation::kRect));
EXPECT_EQ(CFX_FloatRect(-2, -2, 12, 12), annot.GetRect());
// The drawing rect is the minimal union of the authored /Rect and the
// stroked ink bounds: points 1..9 inflated by half the width (2).
EXPECT_EQ(CFX_FloatRect(-1, -1, 11, 11), annot.GetRect());
}
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -198,6 +198,15 @@ source_set("pdfium_public_headers_impl") {
sources = [
"public/cpp/fpdf_deleters.h",
"public/cpp/fpdf_scopers.h",
# EmbedPDF: detached, read-only PDF action models.
"public/epdf_action.h",
# EmbedPDF: public runtime font registration API used by page fallback
# rendering and annotation authoring.
"public/epdf_font.h",
# EmbedPDF: session-free AcroForm model, write transactions, FDF/XFDF.
"public/epdf_form.h",
# EmbedPDF: generic namespace-scoped document/page /PieceInfo metadata.
"public/epdf_pieceinfo.h",
"public/epdf_redact.h",
"public/fpdf_annot.h",
"public/fpdf_attachment.h",
Expand Down
49 changes: 47 additions & 2 deletions core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -379,8 +379,42 @@ void CPDF_PageContentGenerator::GenerateContent() {
return;
}

// EmbedPDF: did this pass rewrite EVERY existing content stream? Computed
// before the move — an append-only pass (a lone kNoContentStream bucket)
// leaves the existing streams' ops out of `page_objects_`' bookkeeping, so
// resource pruning must not run (see UpdateResourcesDict).
const int32_t existing_streams = CountExistingContentStreams();
bool regenerated_all_streams = true;
for (int32_t i = 0; i < existing_streams; ++i) {
if (!pdfium::Contains(new_stream_data, i)) {
regenerated_all_streams = false;
break;
}
}

UpdateContentStreams(std::move(new_stream_data));
UpdateResourcesDict();
UpdateResourcesDict(regenerated_all_streams);
}

int32_t CPDF_PageContentGenerator::CountExistingContentStreams() {
if (obj_holder_->GetMutableFormStream()) {
return 1;
}
RetainPtr<const CPDF_Object> contents =
obj_holder_->GetDict()->GetObjectFor(pdfium::page_object::kContents);
if (!contents) {
return 0;
}
// Resolve indirection: /Contents is commonly an indirect reference to a
// stream or to an array of streams.
RetainPtr<const CPDF_Object> direct = contents->GetDirect();
if (!direct) {
return 0;
}
if (const CPDF_Array* arr = direct->AsArray()) {
return pdfium::checked_cast<int32_t>(arr->size());
}
return direct->IsStream() ? 1 : 0;
}

std::map<int32_t, fxcrt::ostringstream>
Expand DownExpand Up@@ -540,7 +574,7 @@ void CPDF_PageContentGenerator::UpdateContentStreams(
}
}

void CPDF_PageContentGenerator::UpdateResourcesDict() {
void CPDF_PageContentGenerator::UpdateResourcesDict(bool regenerated_all_streams) {
RetainPtr<CPDF_Dictionary> resources = obj_holder_->GetMutableResources();
if (!resources) {
return;
Expand All@@ -560,6 +594,17 @@ void CPDF_PageContentGenerator::UpdateResourcesDict() {
// shared. Checked for that and clone those as well.
CloneResourcesDictEntries(document_, resources);

// EmbedPDF: pruning is only sound when THIS pass rewrote every content
// stream. `page_objects_` / `seen_resources` describe the SERIALIZED
// output; an untouched stream's raw ops can reference resources no page
// object records — e.g. a page-level `/C1 cs` prolog whose colorspace is
// inherited by a bare-`scn` Form XObject. Pruning after an append-only
// pass orphans those references (the classic symptom: the whole page
// collapses to grayscale after applying a redaction that touched nothing).
if (!regenerated_all_streams) {
return;
}

ResourcesMap seen_resources;
for (auto& page_object : page_objects_) {
if (!page_object->IsActive()) {
Expand Down
9 changes: 8 additions & 1 deletion core/fpdfapi/edit/cpdf_pagecontentgenerator.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -81,7 +81,14 @@ class CPDF_PageContentGenerator {

// Updates the resource dictionary for `obj_holder_` to account for all the
// changes.
void UpdateResourcesDict();
// EmbedPDF: `regenerated_all_streams` reports whether THIS pass rewrote
// every existing content stream. Resource pruning is only sound then —
// see the guard in the implementation.
void UpdateResourcesDict(bool regenerated_all_streams);

// EmbedPDF: the holder's current content-stream count (form = its single
// stream; page = resolved /Contents array size, or 1 for a lone stream).
int32_t CountExistingContentStreams();

UnownedPtr<CPDF_PageObjectHolder> const obj_holder_;
UnownedPtr<CPDF_Document> const document_;
Expand Down
40 changes: 33 additions & 7 deletions core/fpdfapi/font/cpdf_font.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,8 +30,10 @@
#include "core/fxcrt/check.h"
#include "core/fxcrt/fx_codepage.h"
#include "core/fxcrt/fx_safe_types.h"
#include "core/fxcrt/numerics/safe_conversions.h"
#include "core/fxcrt/stl_util.h"
#include "core/fxge/cfx_fontmapper.h"
#include "core/fxge/cfx_fontregistry.h"
#include "core/fxge/cfx_substfont.h"
#include "core/fxge/fx_font.h"
#include "core/fxge/fx_fontencoding.h"
Expand DownExpand Up@@ -395,14 +397,38 @@ const char* CPDF_Font::GetAdobeCharName(
}

uint32_t CPDF_Font::FallbackFontFromCharcode(uint32_t charcode) {
// EmbedPDF: prefer fonts registered through EPDFFont_* before falling back to
// PDFium's hard-coded Arial substitute. This lets broken PDFs with missing
// glyph coverage render through the same runtime fallback registry used by
// annotation authoring, without repairing or mutating the source PDF.
WideString str = UnicodeFromCharCode(charcode);
uint32_t unicode = !str.IsEmpty() ? str[0] : charcode;
for (size_t i = 0; i < font_fallbacks_.size(); ++i) {
if (font_fallbacks_[i]->GetFace() &&
font_fallbacks_[i]->GetFace()->GetCharIndex(unicode) != 0) {
return pdfium::checked_cast<uint32_t>(i);
}
}

FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
const int weight = safe_weight.ValueOrDefault(pdfium::kFontWeightNormal);
if (auto font_id = CFX_FontRegistry::FindFallbackFont(unicode, weight,
italic_angle_ != 0)) {
std::unique_ptr<CFX_Font> fallback_font =
CFX_FontRegistry::CreateFont(*font_id);
if (fallback_font) {
font_fallbacks_.push_back(std::move(fallback_font));
return pdfium::checked_cast<uint32_t>(font_fallbacks_.size() - 1);
}
}

if (font_fallbacks_.empty()) {
font_fallbacks_.push_back(std::make_unique<CFX_Font>());
FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
font_fallbacks_[0]->LoadSubst(
"Arial", IsTrueTypeFont(), flags_,
safe_weight.ValueOrDefault(pdfium::kFontWeightNormal), italic_angle_,
FX_CodePage::kDefANSI, IsVertWriting());
auto fallback_font = std::make_unique<CFX_Font>();
fallback_font->LoadSubst("Arial", IsTrueTypeFont(), flags_, weight,
italic_angle_, FX_CodePage::kDefANSI,
IsVertWriting());
font_fallbacks_.push_back(std::move(fallback_font));
}
return 0;
}
Expand Down
4 changes: 4 additions & 0 deletions core/fpdfapi/page/cpdf_annotcontext.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,6 +35,10 @@ class CPDF_AnnotContext {
// Never nullptr.
IPDF_Page* GetPage() const { return page_; }

// Index at the time the annotation handle was created, or -1 when the
// handle was not created from a page annotation lookup.
int GetAnnotIndex() const { return annot_index_; }

private:
void EnsureMutableBackingForAnnotDict();

Expand Down
9 changes: 9 additions & 0 deletions core/fpdfdoc/BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,6 +13,12 @@ source_set("fpdfdoc") {
"cpdf_action.h",
"cpdf_annot.cpp",
"cpdf_annot.h",
# EmbedPDF: registered FreeText annotation fonts and per-layer subset
# embedding. Keep these fork-owned files when rebasing from upstream PDFium.
"cpdf_annotfontmap.cpp",
"cpdf_annotfontmap.h",
"cpdf_annotfontsubset.cpp",
"cpdf_annotfontsubset.h",
"cpdf_annotlist.cpp",
"cpdf_annotlist.h",
"cpdf_apsettings.cpp",
Expand DownExpand Up@@ -92,6 +98,9 @@ source_set("fpdfdoc") {
"../fpdfapi/render",
"../fxcrt",
"../fxge",
# EmbedPDF: CPDF_AnnotFontSubset uses HarfBuzz subsetting to embed only the
# glyphs used by each saved annotation/layer.
"../../third_party/harfbuzz-ng",
]
visibility = [ "../../*" ]
}
Expand Down
4 changes: 3 additions & 1 deletion core/fpdfdoc/cpdf_annot_unittest.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -189,5 +189,7 @@ TEST_F(CPDFAnnotWithPageModuleTest,
EXPECT_FALSE(annot_dict->KeyExist(pdfium::annotation::kAP));
EXPECT_EQ(CFX_FloatRect(0, 0, 10, 10),
annot_dict->GetRectFor(pdfium::annotation::kRect));
EXPECT_EQ(CFX_FloatRect(-2, -2, 12, 12), annot.GetRect());
// The drawing rect is the minimal union of the authored /Rect and the
// stroked ink bounds: points 1..9 inflated by half the width (2).
EXPECT_EQ(CFX_FloatRect(-1, -1, 11, 11), annot.GetRect());
}
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -198,6 +198,15 @@ source_set("pdfium_public_headers_impl") {
sources = [
"public/cpp/fpdf_deleters.h",
"public/cpp/fpdf_scopers.h",
# EmbedPDF: detached, read-only PDF action models.
"public/epdf_action.h",
# EmbedPDF: public runtime font registration API used by page fallback
# rendering and annotation authoring.
"public/epdf_font.h",
# EmbedPDF: session-free AcroForm model, write transactions, FDF/XFDF.
"public/epdf_form.h",
# EmbedPDF: generic namespace-scoped document/page /PieceInfo metadata.
"public/epdf_pieceinfo.h",
"public/epdf_redact.h",
"public/fpdf_annot.h",
"public/fpdf_attachment.h",
Expand Down
49 changes: 47 additions & 2 deletions core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -379,8 +379,42 @@ void CPDF_PageContentGenerator::GenerateContent() {
return;
}

// EmbedPDF: did this pass rewrite EVERY existing content stream? Computed
// before the move — an append-only pass (a lone kNoContentStream bucket)
// leaves the existing streams' ops out of `page_objects_`' bookkeeping, so
// resource pruning must not run (see UpdateResourcesDict).
const int32_t existing_streams = CountExistingContentStreams();
bool regenerated_all_streams = true;
for (int32_t i = 0; i < existing_streams; ++i) {
if (!pdfium::Contains(new_stream_data, i)) {
regenerated_all_streams = false;
break;
}
}

UpdateContentStreams(std::move(new_stream_data));
UpdateResourcesDict();
UpdateResourcesDict(regenerated_all_streams);
}

int32_t CPDF_PageContentGenerator::CountExistingContentStreams() {
if (obj_holder_->GetMutableFormStream()) {
return 1;
}
RetainPtr<const CPDF_Object> contents =
obj_holder_->GetDict()->GetObjectFor(pdfium::page_object::kContents);
if (!contents) {
return 0;
}
// Resolve indirection: /Contents is commonly an indirect reference to a
// stream or to an array of streams.
RetainPtr<const CPDF_Object> direct = contents->GetDirect();
if (!direct) {
return 0;
}
if (const CPDF_Array* arr = direct->AsArray()) {
return pdfium::checked_cast<int32_t>(arr->size());
}
return direct->IsStream() ? 1 : 0;
}

std::map<int32_t, fxcrt::ostringstream>
Expand DownExpand Up@@ -540,7 +574,7 @@ void CPDF_PageContentGenerator::UpdateContentStreams(
}
}

void CPDF_PageContentGenerator::UpdateResourcesDict() {
void CPDF_PageContentGenerator::UpdateResourcesDict(bool regenerated_all_streams) {
RetainPtr<CPDF_Dictionary> resources = obj_holder_->GetMutableResources();
if (!resources) {
return;
Expand All@@ -560,6 +594,17 @@ void CPDF_PageContentGenerator::UpdateResourcesDict() {
// shared. Checked for that and clone those as well.
CloneResourcesDictEntries(document_, resources);

// EmbedPDF: pruning is only sound when THIS pass rewrote every content
// stream. `page_objects_` / `seen_resources` describe the SERIALIZED
// output; an untouched stream's raw ops can reference resources no page
// object records — e.g. a page-level `/C1 cs` prolog whose colorspace is
// inherited by a bare-`scn` Form XObject. Pruning after an append-only
// pass orphans those references (the classic symptom: the whole page
// collapses to grayscale after applying a redaction that touched nothing).
if (!regenerated_all_streams) {
return;
}

ResourcesMap seen_resources;
for (auto& page_object : page_objects_) {
if (!page_object->IsActive()) {
Expand Down
9 changes: 8 additions & 1 deletion core/fpdfapi/edit/cpdf_pagecontentgenerator.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -81,7 +81,14 @@ class CPDF_PageContentGenerator {

// Updates the resource dictionary for `obj_holder_` to account for all the
// changes.
void UpdateResourcesDict();
// EmbedPDF: `regenerated_all_streams` reports whether THIS pass rewrote
// every existing content stream. Resource pruning is only sound then —
// see the guard in the implementation.
void UpdateResourcesDict(bool regenerated_all_streams);

// EmbedPDF: the holder's current content-stream count (form = its single
// stream; page = resolved /Contents array size, or 1 for a lone stream).
int32_t CountExistingContentStreams();

UnownedPtr<CPDF_PageObjectHolder> const obj_holder_;
UnownedPtr<CPDF_Document> const document_;
Expand Down
40 changes: 33 additions & 7 deletions core/fpdfapi/font/cpdf_font.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,8 +30,10 @@
#include "core/fxcrt/check.h"
#include "core/fxcrt/fx_codepage.h"
#include "core/fxcrt/fx_safe_types.h"
#include "core/fxcrt/numerics/safe_conversions.h"
#include "core/fxcrt/stl_util.h"
#include "core/fxge/cfx_fontmapper.h"
#include "core/fxge/cfx_fontregistry.h"
#include "core/fxge/cfx_substfont.h"
#include "core/fxge/fx_font.h"
#include "core/fxge/fx_fontencoding.h"
Expand DownExpand Up@@ -395,14 +397,38 @@ const char* CPDF_Font::GetAdobeCharName(
}

uint32_t CPDF_Font::FallbackFontFromCharcode(uint32_t charcode) {
// EmbedPDF: prefer fonts registered through EPDFFont_* before falling back to
// PDFium's hard-coded Arial substitute. This lets broken PDFs with missing
// glyph coverage render through the same runtime fallback registry used by
// annotation authoring, without repairing or mutating the source PDF.
WideString str = UnicodeFromCharCode(charcode);
uint32_t unicode = !str.IsEmpty() ? str[0] : charcode;
for (size_t i = 0; i < font_fallbacks_.size(); ++i) {
if (font_fallbacks_[i]->GetFace() &&
font_fallbacks_[i]->GetFace()->GetCharIndex(unicode) != 0) {
return pdfium::checked_cast<uint32_t>(i);
}
}

FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
const int weight = safe_weight.ValueOrDefault(pdfium::kFontWeightNormal);
if (auto font_id = CFX_FontRegistry::FindFallbackFont(unicode, weight,
italic_angle_ != 0)) {
std::unique_ptr<CFX_Font> fallback_font =
CFX_FontRegistry::CreateFont(*font_id);
if (fallback_font) {
font_fallbacks_.push_back(std::move(fallback_font));
return pdfium::checked_cast<uint32_t>(font_fallbacks_.size() - 1);
}
}

if (font_fallbacks_.empty()) {
font_fallbacks_.push_back(std::make_unique<CFX_Font>());
FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
font_fallbacks_[0]->LoadSubst(
"Arial", IsTrueTypeFont(), flags_,
safe_weight.ValueOrDefault(pdfium::kFontWeightNormal), italic_angle_,
FX_CodePage::kDefANSI, IsVertWriting());
auto fallback_font = std::make_unique<CFX_Font>();
fallback_font->LoadSubst("Arial", IsTrueTypeFont(), flags_, weight,
italic_angle_, FX_CodePage::kDefANSI,
IsVertWriting());
font_fallbacks_.push_back(std::move(fallback_font));
}
return 0;
}
Expand Down
4 changes: 4 additions & 0 deletions core/fpdfapi/page/cpdf_annotcontext.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,6 +35,10 @@ class CPDF_AnnotContext {
// Never nullptr.
IPDF_Page* GetPage() const { return page_; }

// Index at the time the annotation handle was created, or -1 when the
// handle was not created from a page annotation lookup.
int GetAnnotIndex() const { return annot_index_; }

private:
void EnsureMutableBackingForAnnotDict();

Expand Down
9 changes: 9 additions & 0 deletions core/fpdfdoc/BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,6 +13,12 @@ source_set("fpdfdoc") {
"cpdf_action.h",
"cpdf_annot.cpp",
"cpdf_annot.h",
# EmbedPDF: registered FreeText annotation fonts and per-layer subset
# embedding. Keep these fork-owned files when rebasing from upstream PDFium.
"cpdf_annotfontmap.cpp",
"cpdf_annotfontmap.h",
"cpdf_annotfontsubset.cpp",
"cpdf_annotfontsubset.h",
"cpdf_annotlist.cpp",
"cpdf_annotlist.h",
"cpdf_apsettings.cpp",
Expand DownExpand Up@@ -92,6 +98,9 @@ source_set("fpdfdoc") {
"../fpdfapi/render",
"../fxcrt",
"../fxge",
# EmbedPDF: CPDF_AnnotFontSubset uses HarfBuzz subsetting to embed only the
# glyphs used by each saved annotation/layer.
"../../third_party/harfbuzz-ng",
]
visibility = [ "../../*" ]
}
Expand Down
4 changes: 3 additions & 1 deletion core/fpdfdoc/cpdf_annot_unittest.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -189,5 +189,7 @@ TEST_F(CPDFAnnotWithPageModuleTest,
EXPECT_FALSE(annot_dict->KeyExist(pdfium::annotation::kAP));
EXPECT_EQ(CFX_FloatRect(0, 0, 10, 10),
annot_dict->GetRectFor(pdfium::annotation::kRect));
EXPECT_EQ(CFX_FloatRect(-2, -2, 12, 12), annot.GetRect());
// The drawing rect is the minimal union of the authored /Rect and the
// stroked ink bounds: points 1..9 inflated by half the width (2).
EXPECT_EQ(CFX_FloatRect(-1, -1, 11, 11), annot.GetRect());
}
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -198,6 +198,15 @@ source_set("pdfium_public_headers_impl") {
sources = [
"public/cpp/fpdf_deleters.h",
"public/cpp/fpdf_scopers.h",
# EmbedPDF: detached, read-only PDF action models.
"public/epdf_action.h",
# EmbedPDF: public runtime font registration API used by page fallback
# rendering and annotation authoring.
"public/epdf_font.h",
# EmbedPDF: session-free AcroForm model, write transactions, FDF/XFDF.
"public/epdf_form.h",
# EmbedPDF: generic namespace-scoped document/page /PieceInfo metadata.
"public/epdf_pieceinfo.h",
"public/epdf_redact.h",
"public/fpdf_annot.h",
"public/fpdf_attachment.h",
Expand Down
49 changes: 47 additions & 2 deletions core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -379,8 +379,42 @@ void CPDF_PageContentGenerator::GenerateContent() {
return;
}

// EmbedPDF: did this pass rewrite EVERY existing content stream? Computed
// before the move — an append-only pass (a lone kNoContentStream bucket)
// leaves the existing streams' ops out of `page_objects_`' bookkeeping, so
// resource pruning must not run (see UpdateResourcesDict).
const int32_t existing_streams = CountExistingContentStreams();
bool regenerated_all_streams = true;
for (int32_t i = 0; i < existing_streams; ++i) {
if (!pdfium::Contains(new_stream_data, i)) {
regenerated_all_streams = false;
break;
}
}

UpdateContentStreams(std::move(new_stream_data));
UpdateResourcesDict();
UpdateResourcesDict(regenerated_all_streams);
}

int32_t CPDF_PageContentGenerator::CountExistingContentStreams() {
if (obj_holder_->GetMutableFormStream()) {
return 1;
}
RetainPtr<const CPDF_Object> contents =
obj_holder_->GetDict()->GetObjectFor(pdfium::page_object::kContents);
if (!contents) {
return 0;
}
// Resolve indirection: /Contents is commonly an indirect reference to a
// stream or to an array of streams.
RetainPtr<const CPDF_Object> direct = contents->GetDirect();
if (!direct) {
return 0;
}
if (const CPDF_Array* arr = direct->AsArray()) {
return pdfium::checked_cast<int32_t>(arr->size());
}
return direct->IsStream() ? 1 : 0;
}

std::map<int32_t, fxcrt::ostringstream>
Expand DownExpand Up@@ -540,7 +574,7 @@ void CPDF_PageContentGenerator::UpdateContentStreams(
}
}

void CPDF_PageContentGenerator::UpdateResourcesDict() {
void CPDF_PageContentGenerator::UpdateResourcesDict(bool regenerated_all_streams) {
RetainPtr<CPDF_Dictionary> resources = obj_holder_->GetMutableResources();
if (!resources) {
return;
Expand All@@ -560,6 +594,17 @@ void CPDF_PageContentGenerator::UpdateResourcesDict() {
// shared. Checked for that and clone those as well.
CloneResourcesDictEntries(document_, resources);

// EmbedPDF: pruning is only sound when THIS pass rewrote every content
// stream. `page_objects_` / `seen_resources` describe the SERIALIZED
// output; an untouched stream's raw ops can reference resources no page
// object records — e.g. a page-level `/C1 cs` prolog whose colorspace is
// inherited by a bare-`scn` Form XObject. Pruning after an append-only
// pass orphans those references (the classic symptom: the whole page
// collapses to grayscale after applying a redaction that touched nothing).
if (!regenerated_all_streams) {
return;
}

ResourcesMap seen_resources;
for (auto& page_object : page_objects_) {
if (!page_object->IsActive()) {
Expand Down
9 changes: 8 additions & 1 deletion core/fpdfapi/edit/cpdf_pagecontentgenerator.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -81,7 +81,14 @@ class CPDF_PageContentGenerator {

// Updates the resource dictionary for `obj_holder_` to account for all the
// changes.
void UpdateResourcesDict();
// EmbedPDF: `regenerated_all_streams` reports whether THIS pass rewrote
// every existing content stream. Resource pruning is only sound then —
// see the guard in the implementation.
void UpdateResourcesDict(bool regenerated_all_streams);

// EmbedPDF: the holder's current content-stream count (form = its single
// stream; page = resolved /Contents array size, or 1 for a lone stream).
int32_t CountExistingContentStreams();

UnownedPtr<CPDF_PageObjectHolder> const obj_holder_;
UnownedPtr<CPDF_Document> const document_;
Expand Down
40 changes: 33 additions & 7 deletions core/fpdfapi/font/cpdf_font.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,8 +30,10 @@
#include "core/fxcrt/check.h"
#include "core/fxcrt/fx_codepage.h"
#include "core/fxcrt/fx_safe_types.h"
#include "core/fxcrt/numerics/safe_conversions.h"
#include "core/fxcrt/stl_util.h"
#include "core/fxge/cfx_fontmapper.h"
#include "core/fxge/cfx_fontregistry.h"
#include "core/fxge/cfx_substfont.h"
#include "core/fxge/fx_font.h"
#include "core/fxge/fx_fontencoding.h"
Expand DownExpand Up@@ -395,14 +397,38 @@ const char* CPDF_Font::GetAdobeCharName(
}

uint32_t CPDF_Font::FallbackFontFromCharcode(uint32_t charcode) {
// EmbedPDF: prefer fonts registered through EPDFFont_* before falling back to
// PDFium's hard-coded Arial substitute. This lets broken PDFs with missing
// glyph coverage render through the same runtime fallback registry used by
// annotation authoring, without repairing or mutating the source PDF.
WideString str = UnicodeFromCharCode(charcode);
uint32_t unicode = !str.IsEmpty() ? str[0] : charcode;
for (size_t i = 0; i < font_fallbacks_.size(); ++i) {
if (font_fallbacks_[i]->GetFace() &&
font_fallbacks_[i]->GetFace()->GetCharIndex(unicode) != 0) {
return pdfium::checked_cast<uint32_t>(i);
}
}

FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
const int weight = safe_weight.ValueOrDefault(pdfium::kFontWeightNormal);
if (auto font_id = CFX_FontRegistry::FindFallbackFont(unicode, weight,
italic_angle_ != 0)) {
std::unique_ptr<CFX_Font> fallback_font =
CFX_FontRegistry::CreateFont(*font_id);
if (fallback_font) {
font_fallbacks_.push_back(std::move(fallback_font));
return pdfium::checked_cast<uint32_t>(font_fallbacks_.size() - 1);
}
}

if (font_fallbacks_.empty()) {
font_fallbacks_.push_back(std::make_unique<CFX_Font>());
FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
font_fallbacks_[0]->LoadSubst(
"Arial", IsTrueTypeFont(), flags_,
safe_weight.ValueOrDefault(pdfium::kFontWeightNormal), italic_angle_,
FX_CodePage::kDefANSI, IsVertWriting());
auto fallback_font = std::make_unique<CFX_Font>();
fallback_font->LoadSubst("Arial", IsTrueTypeFont(), flags_, weight,
italic_angle_, FX_CodePage::kDefANSI,
IsVertWriting());
font_fallbacks_.push_back(std::move(fallback_font));
}
return 0;
}
Expand Down
4 changes: 4 additions & 0 deletions core/fpdfapi/page/cpdf_annotcontext.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,6 +35,10 @@ class CPDF_AnnotContext {
// Never nullptr.
IPDF_Page* GetPage() const { return page_; }

// Index at the time the annotation handle was created, or -1 when the
// handle was not created from a page annotation lookup.
int GetAnnotIndex() const { return annot_index_; }

private:
void EnsureMutableBackingForAnnotDict();

Expand Down
9 changes: 9 additions & 0 deletions core/fpdfdoc/BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,6 +13,12 @@ source_set("fpdfdoc") {
"cpdf_action.h",
"cpdf_annot.cpp",
"cpdf_annot.h",
# EmbedPDF: registered FreeText annotation fonts and per-layer subset
# embedding. Keep these fork-owned files when rebasing from upstream PDFium.
"cpdf_annotfontmap.cpp",
"cpdf_annotfontmap.h",
"cpdf_annotfontsubset.cpp",
"cpdf_annotfontsubset.h",
"cpdf_annotlist.cpp",
"cpdf_annotlist.h",
"cpdf_apsettings.cpp",
Expand DownExpand Up@@ -92,6 +98,9 @@ source_set("fpdfdoc") {
"../fpdfapi/render",
"../fxcrt",
"../fxge",
# EmbedPDF: CPDF_AnnotFontSubset uses HarfBuzz subsetting to embed only the
# glyphs used by each saved annotation/layer.
"../../third_party/harfbuzz-ng",
]
visibility = [ "../../*" ]
}
Expand Down
4 changes: 3 additions & 1 deletion core/fpdfdoc/cpdf_annot_unittest.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -189,5 +189,7 @@ TEST_F(CPDFAnnotWithPageModuleTest,
EXPECT_FALSE(annot_dict->KeyExist(pdfium::annotation::kAP));
EXPECT_EQ(CFX_FloatRect(0, 0, 10, 10),
annot_dict->GetRectFor(pdfium::annotation::kRect));
EXPECT_EQ(CFX_FloatRect(-2, -2, 12, 12), annot.GetRect());
// The drawing rect is the minimal union of the authored /Rect and the
// stroked ink bounds: points 1..9 inflated by half the width (2).
EXPECT_EQ(CFX_FloatRect(-1, -1, 11, 11), annot.GetRect());
}
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -198,6 +198,15 @@ source_set("pdfium_public_headers_impl") {
sources = [
"public/cpp/fpdf_deleters.h",
"public/cpp/fpdf_scopers.h",
# EmbedPDF: detached, read-only PDF action models.
"public/epdf_action.h",
# EmbedPDF: public runtime font registration API used by page fallback
# rendering and annotation authoring.
"public/epdf_font.h",
# EmbedPDF: session-free AcroForm model, write transactions, FDF/XFDF.
"public/epdf_form.h",
# EmbedPDF: generic namespace-scoped document/page /PieceInfo metadata.
"public/epdf_pieceinfo.h",
"public/epdf_redact.h",
"public/fpdf_annot.h",
"public/fpdf_attachment.h",
Expand Down
49 changes: 47 additions & 2 deletions core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -379,8 +379,42 @@ void CPDF_PageContentGenerator::GenerateContent() {
return;
}

// EmbedPDF: did this pass rewrite EVERY existing content stream? Computed
// before the move — an append-only pass (a lone kNoContentStream bucket)
// leaves the existing streams' ops out of `page_objects_`' bookkeeping, so
// resource pruning must not run (see UpdateResourcesDict).
const int32_t existing_streams = CountExistingContentStreams();
bool regenerated_all_streams = true;
for (int32_t i = 0; i < existing_streams; ++i) {
if (!pdfium::Contains(new_stream_data, i)) {
regenerated_all_streams = false;
break;
}
}

UpdateContentStreams(std::move(new_stream_data));
UpdateResourcesDict();
UpdateResourcesDict(regenerated_all_streams);
}

int32_t CPDF_PageContentGenerator::CountExistingContentStreams() {
if (obj_holder_->GetMutableFormStream()) {
return 1;
}
RetainPtr<const CPDF_Object> contents =
obj_holder_->GetDict()->GetObjectFor(pdfium::page_object::kContents);
if (!contents) {
return 0;
}
// Resolve indirection: /Contents is commonly an indirect reference to a
// stream or to an array of streams.
RetainPtr<const CPDF_Object> direct = contents->GetDirect();
if (!direct) {
return 0;
}
if (const CPDF_Array* arr = direct->AsArray()) {
return pdfium::checked_cast<int32_t>(arr->size());
}
return direct->IsStream() ? 1 : 0;
}

std::map<int32_t, fxcrt::ostringstream>
Expand DownExpand Up@@ -540,7 +574,7 @@ void CPDF_PageContentGenerator::UpdateContentStreams(
}
}

void CPDF_PageContentGenerator::UpdateResourcesDict() {
void CPDF_PageContentGenerator::UpdateResourcesDict(bool regenerated_all_streams) {
RetainPtr<CPDF_Dictionary> resources = obj_holder_->GetMutableResources();
if (!resources) {
return;
Expand All@@ -560,6 +594,17 @@ void CPDF_PageContentGenerator::UpdateResourcesDict() {
// shared. Checked for that and clone those as well.
CloneResourcesDictEntries(document_, resources);

// EmbedPDF: pruning is only sound when THIS pass rewrote every content
// stream. `page_objects_` / `seen_resources` describe the SERIALIZED
// output; an untouched stream's raw ops can reference resources no page
// object records — e.g. a page-level `/C1 cs` prolog whose colorspace is
// inherited by a bare-`scn` Form XObject. Pruning after an append-only
// pass orphans those references (the classic symptom: the whole page
// collapses to grayscale after applying a redaction that touched nothing).
if (!regenerated_all_streams) {
return;
}

ResourcesMap seen_resources;
for (auto& page_object : page_objects_) {
if (!page_object->IsActive()) {
Expand Down
9 changes: 8 additions & 1 deletion core/fpdfapi/edit/cpdf_pagecontentgenerator.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -81,7 +81,14 @@ class CPDF_PageContentGenerator {

// Updates the resource dictionary for `obj_holder_` to account for all the
// changes.
void UpdateResourcesDict();
// EmbedPDF: `regenerated_all_streams` reports whether THIS pass rewrote
// every existing content stream. Resource pruning is only sound then —
// see the guard in the implementation.
void UpdateResourcesDict(bool regenerated_all_streams);

// EmbedPDF: the holder's current content-stream count (form = its single
// stream; page = resolved /Contents array size, or 1 for a lone stream).
int32_t CountExistingContentStreams();

UnownedPtr<CPDF_PageObjectHolder> const obj_holder_;
UnownedPtr<CPDF_Document> const document_;
Expand Down
40 changes: 33 additions & 7 deletions core/fpdfapi/font/cpdf_font.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,8 +30,10 @@
#include "core/fxcrt/check.h"
#include "core/fxcrt/fx_codepage.h"
#include "core/fxcrt/fx_safe_types.h"
#include "core/fxcrt/numerics/safe_conversions.h"
#include "core/fxcrt/stl_util.h"
#include "core/fxge/cfx_fontmapper.h"
#include "core/fxge/cfx_fontregistry.h"
#include "core/fxge/cfx_substfont.h"
#include "core/fxge/fx_font.h"
#include "core/fxge/fx_fontencoding.h"
Expand DownExpand Up@@ -395,14 +397,38 @@ const char* CPDF_Font::GetAdobeCharName(
}

uint32_t CPDF_Font::FallbackFontFromCharcode(uint32_t charcode) {
// EmbedPDF: prefer fonts registered through EPDFFont_* before falling back to
// PDFium's hard-coded Arial substitute. This lets broken PDFs with missing
// glyph coverage render through the same runtime fallback registry used by
// annotation authoring, without repairing or mutating the source PDF.
WideString str = UnicodeFromCharCode(charcode);
uint32_t unicode = !str.IsEmpty() ? str[0] : charcode;
for (size_t i = 0; i < font_fallbacks_.size(); ++i) {
if (font_fallbacks_[i]->GetFace() &&
font_fallbacks_[i]->GetFace()->GetCharIndex(unicode) != 0) {
return pdfium::checked_cast<uint32_t>(i);
}
}

FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
const int weight = safe_weight.ValueOrDefault(pdfium::kFontWeightNormal);
if (auto font_id = CFX_FontRegistry::FindFallbackFont(unicode, weight,
italic_angle_ != 0)) {
std::unique_ptr<CFX_Font> fallback_font =
CFX_FontRegistry::CreateFont(*font_id);
if (fallback_font) {
font_fallbacks_.push_back(std::move(fallback_font));
return pdfium::checked_cast<uint32_t>(font_fallbacks_.size() - 1);
}
}

if (font_fallbacks_.empty()) {
font_fallbacks_.push_back(std::make_unique<CFX_Font>());
FX_SAFE_INT32 safe_weight = stem_v_;
safe_weight *= 5;
font_fallbacks_[0]->LoadSubst(
"Arial", IsTrueTypeFont(), flags_,
safe_weight.ValueOrDefault(pdfium::kFontWeightNormal), italic_angle_,
FX_CodePage::kDefANSI, IsVertWriting());
auto fallback_font = std::make_unique<CFX_Font>();
fallback_font->LoadSubst("Arial", IsTrueTypeFont(), flags_, weight,
italic_angle_, FX_CodePage::kDefANSI,
IsVertWriting());
font_fallbacks_.push_back(std::move(fallback_font));
}
return 0;
}
Expand Down
4 changes: 4 additions & 0 deletions core/fpdfapi/page/cpdf_annotcontext.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,6 +35,10 @@ class CPDF_AnnotContext {
// Never nullptr.
IPDF_Page* GetPage() const { return page_; }

// Index at the time the annotation handle was created, or -1 when the
// handle was not created from a page annotation lookup.
int GetAnnotIndex() const { return annot_index_; }

private:
void EnsureMutableBackingForAnnotDict();

Expand Down
9 changes: 9 additions & 0 deletions core/fpdfdoc/BUILD.gn
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,6 +13,12 @@ source_set("fpdfdoc") {
"cpdf_action.h",
"cpdf_annot.cpp",
"cpdf_annot.h",
# EmbedPDF: registered FreeText annotation fonts and per-layer subset
# embedding. Keep these fork-owned files when rebasing from upstream PDFium.
"cpdf_annotfontmap.cpp",
"cpdf_annotfontmap.h",
"cpdf_annotfontsubset.cpp",
"cpdf_annotfontsubset.h",
"cpdf_annotlist.cpp",
"cpdf_annotlist.h",
"cpdf_apsettings.cpp",
Expand DownExpand Up@@ -92,6 +98,9 @@ source_set("fpdfdoc") {
"../fpdfapi/render",
"../fxcrt",
"../fxge",
# EmbedPDF: CPDF_AnnotFontSubset uses HarfBuzz subsetting to embed only the
# glyphs used by each saved annotation/layer.
"../../third_party/harfbuzz-ng",
]
visibility = [ "../../*" ]
}
Expand Down
4 changes: 3 additions & 1 deletion core/fpdfdoc/cpdf_annot_unittest.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -189,5 +189,7 @@ TEST_F(CPDFAnnotWithPageModuleTest,
EXPECT_FALSE(annot_dict->KeyExist(pdfium::annotation::kAP));
EXPECT_EQ(CFX_FloatRect(0, 0, 10, 10),
annot_dict->GetRectFor(pdfium::annotation::kRect));
EXPECT_EQ(CFX_FloatRect(-2, -2, 12, 12), annot.GetRect());
// The drawing rect is the minimal union of the authored /Rect and the
// stroked ink bounds: points 1..9 inflated by half the width (2).
EXPECT_EQ(CFX_FloatRect(-1, -1, 11, 11), annot.GetRect());
}
Loading