How can I change the background color that backgrounds only some text, in a PDF?Convert PDF background...
Stuck on a Geometry Puzzle
Why do neural networks need so many training examples to perform?
Which RAF squadrons and aircraft types took part in the bombing of Berlin on the 25th of August 1940?
Broad Strokes - missing letter riddle
How can I play a serial killer in a party of good PCs?
Has any human ever had the choice to leave Earth permanently?
Need help with a circuit diagram where the motor does not seem to have any connection to ground. Error with diagram? Or am i missing something?
Does Skippy chunky peanut butter contain trans fat?
Am I correct in stating that the study of topology is purely theoretical?
Subsurf on a crown. How can I smooth some edges and keep others sharp?
Custom shape shows unwanted extra line
Converting very wide logos to square formats
How to not let the Identify spell spoil everything?
Is Screenshot Time-tracking Common?
How much mayhem could I cause as a fish?
Why is it that Bernie Sanders is always called a "socialist"?
Why is 'diphthong' pronounced the way it is?
Does the US government have any planning in place to ensure there's no shortages of food, fuel, steel and other commodities?
Square Root Distance from Integers
Will rerolling initiative each round stop meta-gaming about initiative?
Does the ditching switch allow an A320 to float indefinitely?
Integration of two exponential multiplied by each other
Does diversity provide anything that meritocracy does not?
Why is one not obligated to give up his life rather than violate Lashon Hara?
How can I change the background color that backgrounds only some text, in a PDF?
Convert PDF background colorHow to view PDF with changed background color?How can I change pdf page size?Converting a scanned pdf to a compressed PDF with binary (2 level) imageHow do I overcome my visibility issue with scanned PDF files?how to change color in pdf fileVirtual PDF printers don't render text background colorHow can i make the background paragraph color be over the background image?Print PDF Text without color backgroundhow to set text field that only accept number and comma (,) in PDF Fillable Form?
With vision difficulties, my grandpa can't read text whenever backgrounded by dark color in the PDF in the screenshot beneath. Click here to download it, or see some of its pages at Google Books. It's too unproductive to remove each use of the dark background color one-by-one. Thus how can I, in one brisk stroke?
I've Adobe Acrobat DC Pro, Foxit PhantomPDF, and Nitro Pro. Acrobat states no background to be removed.
They and SensusAccess converted the PDF to a Word file's that's too deformed.
add a comment |
With vision difficulties, my grandpa can't read text whenever backgrounded by dark color in the PDF in the screenshot beneath. Click here to download it, or see some of its pages at Google Books. It's too unproductive to remove each use of the dark background color one-by-one. Thus how can I, in one brisk stroke?
I've Adobe Acrobat DC Pro, Foxit PhantomPDF, and Nitro Pro. Acrobat states no background to be removed.
They and SensusAccess converted the PDF to a Word file's that's too deformed.
Can you post a link with the PDF, or at least one page that needs the fix?
– juniorRubyist
Jan 6 at 4:44
@juniorRubyist I ought have done this...sorry! Link added to my post. mediafire.com/file/1iil649lu2he1ij/…
– Greek - Area 51 Proposal
Jan 6 at 20:50
add a comment |
With vision difficulties, my grandpa can't read text whenever backgrounded by dark color in the PDF in the screenshot beneath. Click here to download it, or see some of its pages at Google Books. It's too unproductive to remove each use of the dark background color one-by-one. Thus how can I, in one brisk stroke?
I've Adobe Acrobat DC Pro, Foxit PhantomPDF, and Nitro Pro. Acrobat states no background to be removed.
They and SensusAccess converted the PDF to a Word file's that's too deformed.
With vision difficulties, my grandpa can't read text whenever backgrounded by dark color in the PDF in the screenshot beneath. Click here to download it, or see some of its pages at Google Books. It's too unproductive to remove each use of the dark background color one-by-one. Thus how can I, in one brisk stroke?
I've Adobe Acrobat DC Pro, Foxit PhantomPDF, and Nitro Pro. Acrobat states no background to be removed.
They and SensusAccess converted the PDF to a Word file's that's too deformed.
edited Jan 6 at 20:53
Greek - Area 51 Proposal
asked Dec 28 '18 at 9:24
Greek - Area 51 ProposalGreek - Area 51 Proposal
45032752
45032752
Can you post a link with the PDF, or at least one page that needs the fix?
– juniorRubyist
Jan 6 at 4:44
@juniorRubyist I ought have done this...sorry! Link added to my post. mediafire.com/file/1iil649lu2he1ij/…
– Greek - Area 51 Proposal
Jan 6 at 20:50
add a comment |
Can you post a link with the PDF, or at least one page that needs the fix?
– juniorRubyist
Jan 6 at 4:44
@juniorRubyist I ought have done this...sorry! Link added to my post. mediafire.com/file/1iil649lu2he1ij/…
– Greek - Area 51 Proposal
Jan 6 at 20:50
Can you post a link with the PDF, or at least one page that needs the fix?
– juniorRubyist
Jan 6 at 4:44
Can you post a link with the PDF, or at least one page that needs the fix?
– juniorRubyist
Jan 6 at 4:44
@juniorRubyist I ought have done this...sorry! Link added to my post. mediafire.com/file/1iil649lu2he1ij/…
– Greek - Area 51 Proposal
Jan 6 at 20:50
@juniorRubyist I ought have done this...sorry! Link added to my post. mediafire.com/file/1iil649lu2he1ij/…
– Greek - Area 51 Proposal
Jan 6 at 20:50
add a comment |
4 Answers
4
active
oldest
votes
Testing on your document, I think I have managed to find a method that
gives good results (although not perfect).
This requires converting the PDF file to a Word document.
The best convertor I found is
Adobe Acrobat Pro
which is a commercial product with a 7-day trial.
Convert to Word
- Start Adobe Acrobat Pro
- Open the PDF file,
- Use the menu File > Export To > Microsoft Word > Word document
to export the file to a.docx
document
Convert to macro-enabled document
- Open the
.docx
document in Word - Use the menu File > Save As
- Choose a folder
- Set "Save as type" to
.docm
- Click Save
Create and run the VBA macro
- Open the
.docm
document in Word - Press Alt+F11 to open the VBA editor
- In the Insert tab click Module
Copy the following VBA code into the window:
Sub DoShapes()
For Each shp In ActiveDocument.Shapes
If shp.WrapFormat.Type = wdWrapFront Then shp.WrapFormat.Type = wdWrapBehind
If shp.Width > 216 And shp.Type <> msoGroup And shp.Type <> msoLine Then shp.Fill.ForeColor.RGB = RGB(250, 250, 250)
Next shp
End Sub
Note that the background color of the text to very light gray.
This is because the colored background is used to designate quotes.
If you want to make it all white, change in the above to
RGB(255, 255, 255)
.
Click the green triangle to run this code (this will take some time)
- When finished, save the file as
.docx
or as PDF.
I have uploaded the document after the above manipulations to
this link
for you to see.
When the document is displayed, click the three-points (...) icon and
choose Download.
I will delete this link in a few days.
Did you directly open the PDF using Word? Or don't you have Word?
– harrymc
Jan 2 at 8:43
I have Word. When I open the PDF using Word, Word requires me to consent to a conversion that's more deformed than the other converters used (see my post).
– Greek - Area 51 Proposal
Jan 3 at 5:44
1
It didn't happen for my PDF, so seems dependent on the PDF itself. If you can somehow pass it over I might have a look.
– harrymc
Jan 3 at 7:01
Got it - you may cancel the download. Word 2016 didn't ask any questions, but the conversion was slow and a bit inexact, although readable. The procedure above takes care of the shading of text, which is some but not all of the cases. It fails to take care of cases where the text is inside a dummy table and the shading is a property of the table and not of the text. I'll be away until the weekend and will take it up then.
– harrymc
Jan 3 at 8:43
I have rewritten my answer.
– harrymc
Jan 6 at 19:32
add a comment |
It should be possible to use Inkscape to process the PDF to remove the coloured background using the scripting APIs to automate the task. Inkscape can only process one page at a time, but since you'd be automating this anyway this shouldn't be too much of a problem.
To make it as easy as possible, I'd import each page, replace all instances of fill-opacity:1;
with fill-opacity:0;
, and export it again. Works! Partial solution; font also needs to be changed to be properly legible.
I'll see if I can hack together an extension to do this, but it won't be today.
If you can open a single highlighted page of the document in Inkscape (ensure that you have the fonts added to the system and play around with the text import settings to get this to work!) then this approach will work for your particular documents.
This works for the document you have provided.
' I'd import each page': Isn't this more unproductive, surprisingly, than deleting all the dark color in the PDF?
– Greek - Area 51 Proposal
Jan 7 at 5:26
@Greek-Area51Proposal The extension would do the importing and replacing and font changing.
– wizzwizz4
Jan 7 at 9:52
Actually, this would have to be done partially by a shell script, and then a program to combine the PDF pages into a complete PDF again. PDF shuffler might serve this purpose.
– wizzwizz4
Jan 7 at 10:28
add a comment |
Thanks so much for all the other answers! Yet I found this to be the most straightforward one that requires only basic knowledge of Adobe Acrobat, and doesn't require other programs.
add a comment |
UPDATED:
NEW REPLY
In Acrobate Pro.
Go to "Tools" and open the "Print Production" pane.
Choose "Output preview".
Uncheck "PANTONE 302 C" or "Spot Plates" (either works)
Now read the PDF exactly as it is but without the blue background. Do this without closing the Output Preview box.
By having the Output Preview open you can toggle the background on and off when needed.
OLD REPLY
I would suggest that you open the PDF in Acrobate pro and then save it as an HTML page.
It's more or less like this:
- In Acrobate go to File menu and choose Save as and in sub menu go to
More Options and choose HTML. - You can read the file in your normal web browser.
I Saved the file as HTML and uploaded it here.
http://www.mediafire.com/file/r8uqab29dep1186/Criminal_Law_%25282018_8_ed%2529_-_Copy.html/file
If I open this in my browser I find it very easy to read and scroll. You can search with ctrl+f and increase and decrease text size if needed with ctrl+/-
Most important: NO COLORED TEXT BACKGROUNDS!
Check it out and tell me what you think!
1
Thanks. The PDF can be downloaded at mediafire.com/file/1iil649lu2he1ij/…. Doesn't your answer face the same difficulties as superuser.com/a/1389220/269574?
– Greek - Area 51 Proposal
Jan 6 at 4:51
I saved the PDF as HTML and its actually really easy to read in my browser. Being able to increase/decrease size of text with ctrl+ and ctrl- also makes it much easier to enhance any text thats smaller then you like. All the colored backgrounds are extracted as images and are not shown as text background, but rather as an separate image not by the text. If you remove all the images from the folder that is created when you save it as HTML no dark background images are shown at all. This I would say is an excellent solution for anyone visually challenged.
– Don King
Jan 7 at 12:00
Answer has been updated
– Don King
Jan 7 at 12:50
Thanks, but the resulting HTML looks too deformed? Words are spaced wrongly: Chapter 1's title is "A N INT RODUC T ION TO CR I M I NA L L AW", under which Central Issue #1 is "An im- portant distinction is drawn between the criminal law".
– Greek - Area 51 Proposal
Jan 7 at 16:33
Yeah some odd spacing occurs on some titles. The reason for im- portant is that in the pdf the width of the text section is limited while in the html it is not. It is definitely not the best way of reading the book, but if you cant see the sections with a blue or grey background you have an alternative that is relatively easy to make. The general text is easy to read imo. 'Save as html' and 'open in browser' requires very little energy spent from the user so I figured it was a quick way of reading the 'before unreadable' sections.
– Don King
Jan 9 at 16:28
|
show 1 more comment
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1388370%2fhow-can-i-change-the-background-color-that-backgrounds-only-some-text-in-a-pdf%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Testing on your document, I think I have managed to find a method that
gives good results (although not perfect).
This requires converting the PDF file to a Word document.
The best convertor I found is
Adobe Acrobat Pro
which is a commercial product with a 7-day trial.
Convert to Word
- Start Adobe Acrobat Pro
- Open the PDF file,
- Use the menu File > Export To > Microsoft Word > Word document
to export the file to a.docx
document
Convert to macro-enabled document
- Open the
.docx
document in Word - Use the menu File > Save As
- Choose a folder
- Set "Save as type" to
.docm
- Click Save
Create and run the VBA macro
- Open the
.docm
document in Word - Press Alt+F11 to open the VBA editor
- In the Insert tab click Module
Copy the following VBA code into the window:
Sub DoShapes()
For Each shp In ActiveDocument.Shapes
If shp.WrapFormat.Type = wdWrapFront Then shp.WrapFormat.Type = wdWrapBehind
If shp.Width > 216 And shp.Type <> msoGroup And shp.Type <> msoLine Then shp.Fill.ForeColor.RGB = RGB(250, 250, 250)
Next shp
End Sub
Note that the background color of the text to very light gray.
This is because the colored background is used to designate quotes.
If you want to make it all white, change in the above to
RGB(255, 255, 255)
.
Click the green triangle to run this code (this will take some time)
- When finished, save the file as
.docx
or as PDF.
I have uploaded the document after the above manipulations to
this link
for you to see.
When the document is displayed, click the three-points (...) icon and
choose Download.
I will delete this link in a few days.
Did you directly open the PDF using Word? Or don't you have Word?
– harrymc
Jan 2 at 8:43
I have Word. When I open the PDF using Word, Word requires me to consent to a conversion that's more deformed than the other converters used (see my post).
– Greek - Area 51 Proposal
Jan 3 at 5:44
1
It didn't happen for my PDF, so seems dependent on the PDF itself. If you can somehow pass it over I might have a look.
– harrymc
Jan 3 at 7:01
Got it - you may cancel the download. Word 2016 didn't ask any questions, but the conversion was slow and a bit inexact, although readable. The procedure above takes care of the shading of text, which is some but not all of the cases. It fails to take care of cases where the text is inside a dummy table and the shading is a property of the table and not of the text. I'll be away until the weekend and will take it up then.
– harrymc
Jan 3 at 8:43
I have rewritten my answer.
– harrymc
Jan 6 at 19:32
add a comment |
Testing on your document, I think I have managed to find a method that
gives good results (although not perfect).
This requires converting the PDF file to a Word document.
The best convertor I found is
Adobe Acrobat Pro
which is a commercial product with a 7-day trial.
Convert to Word
- Start Adobe Acrobat Pro
- Open the PDF file,
- Use the menu File > Export To > Microsoft Word > Word document
to export the file to a.docx
document
Convert to macro-enabled document
- Open the
.docx
document in Word - Use the menu File > Save As
- Choose a folder
- Set "Save as type" to
.docm
- Click Save
Create and run the VBA macro
- Open the
.docm
document in Word - Press Alt+F11 to open the VBA editor
- In the Insert tab click Module
Copy the following VBA code into the window:
Sub DoShapes()
For Each shp In ActiveDocument.Shapes
If shp.WrapFormat.Type = wdWrapFront Then shp.WrapFormat.Type = wdWrapBehind
If shp.Width > 216 And shp.Type <> msoGroup And shp.Type <> msoLine Then shp.Fill.ForeColor.RGB = RGB(250, 250, 250)
Next shp
End Sub
Note that the background color of the text to very light gray.
This is because the colored background is used to designate quotes.
If you want to make it all white, change in the above to
RGB(255, 255, 255)
.
Click the green triangle to run this code (this will take some time)
- When finished, save the file as
.docx
or as PDF.
I have uploaded the document after the above manipulations to
this link
for you to see.
When the document is displayed, click the three-points (...) icon and
choose Download.
I will delete this link in a few days.
Did you directly open the PDF using Word? Or don't you have Word?
– harrymc
Jan 2 at 8:43
I have Word. When I open the PDF using Word, Word requires me to consent to a conversion that's more deformed than the other converters used (see my post).
– Greek - Area 51 Proposal
Jan 3 at 5:44
1
It didn't happen for my PDF, so seems dependent on the PDF itself. If you can somehow pass it over I might have a look.
– harrymc
Jan 3 at 7:01
Got it - you may cancel the download. Word 2016 didn't ask any questions, but the conversion was slow and a bit inexact, although readable. The procedure above takes care of the shading of text, which is some but not all of the cases. It fails to take care of cases where the text is inside a dummy table and the shading is a property of the table and not of the text. I'll be away until the weekend and will take it up then.
– harrymc
Jan 3 at 8:43
I have rewritten my answer.
– harrymc
Jan 6 at 19:32
add a comment |
Testing on your document, I think I have managed to find a method that
gives good results (although not perfect).
This requires converting the PDF file to a Word document.
The best convertor I found is
Adobe Acrobat Pro
which is a commercial product with a 7-day trial.
Convert to Word
- Start Adobe Acrobat Pro
- Open the PDF file,
- Use the menu File > Export To > Microsoft Word > Word document
to export the file to a.docx
document
Convert to macro-enabled document
- Open the
.docx
document in Word - Use the menu File > Save As
- Choose a folder
- Set "Save as type" to
.docm
- Click Save
Create and run the VBA macro
- Open the
.docm
document in Word - Press Alt+F11 to open the VBA editor
- In the Insert tab click Module
Copy the following VBA code into the window:
Sub DoShapes()
For Each shp In ActiveDocument.Shapes
If shp.WrapFormat.Type = wdWrapFront Then shp.WrapFormat.Type = wdWrapBehind
If shp.Width > 216 And shp.Type <> msoGroup And shp.Type <> msoLine Then shp.Fill.ForeColor.RGB = RGB(250, 250, 250)
Next shp
End Sub
Note that the background color of the text to very light gray.
This is because the colored background is used to designate quotes.
If you want to make it all white, change in the above to
RGB(255, 255, 255)
.
Click the green triangle to run this code (this will take some time)
- When finished, save the file as
.docx
or as PDF.
I have uploaded the document after the above manipulations to
this link
for you to see.
When the document is displayed, click the three-points (...) icon and
choose Download.
I will delete this link in a few days.
Testing on your document, I think I have managed to find a method that
gives good results (although not perfect).
This requires converting the PDF file to a Word document.
The best convertor I found is
Adobe Acrobat Pro
which is a commercial product with a 7-day trial.
Convert to Word
- Start Adobe Acrobat Pro
- Open the PDF file,
- Use the menu File > Export To > Microsoft Word > Word document
to export the file to a.docx
document
Convert to macro-enabled document
- Open the
.docx
document in Word - Use the menu File > Save As
- Choose a folder
- Set "Save as type" to
.docm
- Click Save
Create and run the VBA macro
- Open the
.docm
document in Word - Press Alt+F11 to open the VBA editor
- In the Insert tab click Module
Copy the following VBA code into the window:
Sub DoShapes()
For Each shp In ActiveDocument.Shapes
If shp.WrapFormat.Type = wdWrapFront Then shp.WrapFormat.Type = wdWrapBehind
If shp.Width > 216 And shp.Type <> msoGroup And shp.Type <> msoLine Then shp.Fill.ForeColor.RGB = RGB(250, 250, 250)
Next shp
End Sub
Note that the background color of the text to very light gray.
This is because the colored background is used to designate quotes.
If you want to make it all white, change in the above to
RGB(255, 255, 255)
.
Click the green triangle to run this code (this will take some time)
- When finished, save the file as
.docx
or as PDF.
I have uploaded the document after the above manipulations to
this link
for you to see.
When the document is displayed, click the three-points (...) icon and
choose Download.
I will delete this link in a few days.
edited Jan 6 at 19:48
answered Dec 31 '18 at 10:43
harrymcharrymc
259k14271573
259k14271573
Did you directly open the PDF using Word? Or don't you have Word?
– harrymc
Jan 2 at 8:43
I have Word. When I open the PDF using Word, Word requires me to consent to a conversion that's more deformed than the other converters used (see my post).
– Greek - Area 51 Proposal
Jan 3 at 5:44
1
It didn't happen for my PDF, so seems dependent on the PDF itself. If you can somehow pass it over I might have a look.
– harrymc
Jan 3 at 7:01
Got it - you may cancel the download. Word 2016 didn't ask any questions, but the conversion was slow and a bit inexact, although readable. The procedure above takes care of the shading of text, which is some but not all of the cases. It fails to take care of cases where the text is inside a dummy table and the shading is a property of the table and not of the text. I'll be away until the weekend and will take it up then.
– harrymc
Jan 3 at 8:43
I have rewritten my answer.
– harrymc
Jan 6 at 19:32
add a comment |
Did you directly open the PDF using Word? Or don't you have Word?
– harrymc
Jan 2 at 8:43
I have Word. When I open the PDF using Word, Word requires me to consent to a conversion that's more deformed than the other converters used (see my post).
– Greek - Area 51 Proposal
Jan 3 at 5:44
1
It didn't happen for my PDF, so seems dependent on the PDF itself. If you can somehow pass it over I might have a look.
– harrymc
Jan 3 at 7:01
Got it - you may cancel the download. Word 2016 didn't ask any questions, but the conversion was slow and a bit inexact, although readable. The procedure above takes care of the shading of text, which is some but not all of the cases. It fails to take care of cases where the text is inside a dummy table and the shading is a property of the table and not of the text. I'll be away until the weekend and will take it up then.
– harrymc
Jan 3 at 8:43
I have rewritten my answer.
– harrymc
Jan 6 at 19:32
Did you directly open the PDF using Word? Or don't you have Word?
– harrymc
Jan 2 at 8:43
Did you directly open the PDF using Word? Or don't you have Word?
– harrymc
Jan 2 at 8:43
I have Word. When I open the PDF using Word, Word requires me to consent to a conversion that's more deformed than the other converters used (see my post).
– Greek - Area 51 Proposal
Jan 3 at 5:44
I have Word. When I open the PDF using Word, Word requires me to consent to a conversion that's more deformed than the other converters used (see my post).
– Greek - Area 51 Proposal
Jan 3 at 5:44
1
1
It didn't happen for my PDF, so seems dependent on the PDF itself. If you can somehow pass it over I might have a look.
– harrymc
Jan 3 at 7:01
It didn't happen for my PDF, so seems dependent on the PDF itself. If you can somehow pass it over I might have a look.
– harrymc
Jan 3 at 7:01
Got it - you may cancel the download. Word 2016 didn't ask any questions, but the conversion was slow and a bit inexact, although readable. The procedure above takes care of the shading of text, which is some but not all of the cases. It fails to take care of cases where the text is inside a dummy table and the shading is a property of the table and not of the text. I'll be away until the weekend and will take it up then.
– harrymc
Jan 3 at 8:43
Got it - you may cancel the download. Word 2016 didn't ask any questions, but the conversion was slow and a bit inexact, although readable. The procedure above takes care of the shading of text, which is some but not all of the cases. It fails to take care of cases where the text is inside a dummy table and the shading is a property of the table and not of the text. I'll be away until the weekend and will take it up then.
– harrymc
Jan 3 at 8:43
I have rewritten my answer.
– harrymc
Jan 6 at 19:32
I have rewritten my answer.
– harrymc
Jan 6 at 19:32
add a comment |
It should be possible to use Inkscape to process the PDF to remove the coloured background using the scripting APIs to automate the task. Inkscape can only process one page at a time, but since you'd be automating this anyway this shouldn't be too much of a problem.
To make it as easy as possible, I'd import each page, replace all instances of fill-opacity:1;
with fill-opacity:0;
, and export it again. Works! Partial solution; font also needs to be changed to be properly legible.
I'll see if I can hack together an extension to do this, but it won't be today.
If you can open a single highlighted page of the document in Inkscape (ensure that you have the fonts added to the system and play around with the text import settings to get this to work!) then this approach will work for your particular documents.
This works for the document you have provided.
' I'd import each page': Isn't this more unproductive, surprisingly, than deleting all the dark color in the PDF?
– Greek - Area 51 Proposal
Jan 7 at 5:26
@Greek-Area51Proposal The extension would do the importing and replacing and font changing.
– wizzwizz4
Jan 7 at 9:52
Actually, this would have to be done partially by a shell script, and then a program to combine the PDF pages into a complete PDF again. PDF shuffler might serve this purpose.
– wizzwizz4
Jan 7 at 10:28
add a comment |
It should be possible to use Inkscape to process the PDF to remove the coloured background using the scripting APIs to automate the task. Inkscape can only process one page at a time, but since you'd be automating this anyway this shouldn't be too much of a problem.
To make it as easy as possible, I'd import each page, replace all instances of fill-opacity:1;
with fill-opacity:0;
, and export it again. Works! Partial solution; font also needs to be changed to be properly legible.
I'll see if I can hack together an extension to do this, but it won't be today.
If you can open a single highlighted page of the document in Inkscape (ensure that you have the fonts added to the system and play around with the text import settings to get this to work!) then this approach will work for your particular documents.
This works for the document you have provided.
' I'd import each page': Isn't this more unproductive, surprisingly, than deleting all the dark color in the PDF?
– Greek - Area 51 Proposal
Jan 7 at 5:26
@Greek-Area51Proposal The extension would do the importing and replacing and font changing.
– wizzwizz4
Jan 7 at 9:52
Actually, this would have to be done partially by a shell script, and then a program to combine the PDF pages into a complete PDF again. PDF shuffler might serve this purpose.
– wizzwizz4
Jan 7 at 10:28
add a comment |
It should be possible to use Inkscape to process the PDF to remove the coloured background using the scripting APIs to automate the task. Inkscape can only process one page at a time, but since you'd be automating this anyway this shouldn't be too much of a problem.
To make it as easy as possible, I'd import each page, replace all instances of fill-opacity:1;
with fill-opacity:0;
, and export it again. Works! Partial solution; font also needs to be changed to be properly legible.
I'll see if I can hack together an extension to do this, but it won't be today.
If you can open a single highlighted page of the document in Inkscape (ensure that you have the fonts added to the system and play around with the text import settings to get this to work!) then this approach will work for your particular documents.
This works for the document you have provided.
It should be possible to use Inkscape to process the PDF to remove the coloured background using the scripting APIs to automate the task. Inkscape can only process one page at a time, but since you'd be automating this anyway this shouldn't be too much of a problem.
To make it as easy as possible, I'd import each page, replace all instances of fill-opacity:1;
with fill-opacity:0;
, and export it again. Works! Partial solution; font also needs to be changed to be properly legible.
I'll see if I can hack together an extension to do this, but it won't be today.
If you can open a single highlighted page of the document in Inkscape (ensure that you have the fonts added to the system and play around with the text import settings to get this to work!) then this approach will work for your particular documents.
This works for the document you have provided.
edited Jan 6 at 21:34
answered Jan 6 at 20:52
wizzwizz4wizzwizz4
407310
407310
' I'd import each page': Isn't this more unproductive, surprisingly, than deleting all the dark color in the PDF?
– Greek - Area 51 Proposal
Jan 7 at 5:26
@Greek-Area51Proposal The extension would do the importing and replacing and font changing.
– wizzwizz4
Jan 7 at 9:52
Actually, this would have to be done partially by a shell script, and then a program to combine the PDF pages into a complete PDF again. PDF shuffler might serve this purpose.
– wizzwizz4
Jan 7 at 10:28
add a comment |
' I'd import each page': Isn't this more unproductive, surprisingly, than deleting all the dark color in the PDF?
– Greek - Area 51 Proposal
Jan 7 at 5:26
@Greek-Area51Proposal The extension would do the importing and replacing and font changing.
– wizzwizz4
Jan 7 at 9:52
Actually, this would have to be done partially by a shell script, and then a program to combine the PDF pages into a complete PDF again. PDF shuffler might serve this purpose.
– wizzwizz4
Jan 7 at 10:28
' I'd import each page': Isn't this more unproductive, surprisingly, than deleting all the dark color in the PDF?
– Greek - Area 51 Proposal
Jan 7 at 5:26
' I'd import each page': Isn't this more unproductive, surprisingly, than deleting all the dark color in the PDF?
– Greek - Area 51 Proposal
Jan 7 at 5:26
@Greek-Area51Proposal The extension would do the importing and replacing and font changing.
– wizzwizz4
Jan 7 at 9:52
@Greek-Area51Proposal The extension would do the importing and replacing and font changing.
– wizzwizz4
Jan 7 at 9:52
Actually, this would have to be done partially by a shell script, and then a program to combine the PDF pages into a complete PDF again. PDF shuffler might serve this purpose.
– wizzwizz4
Jan 7 at 10:28
Actually, this would have to be done partially by a shell script, and then a program to combine the PDF pages into a complete PDF again. PDF shuffler might serve this purpose.
– wizzwizz4
Jan 7 at 10:28
add a comment |
Thanks so much for all the other answers! Yet I found this to be the most straightforward one that requires only basic knowledge of Adobe Acrobat, and doesn't require other programs.
add a comment |
Thanks so much for all the other answers! Yet I found this to be the most straightforward one that requires only basic knowledge of Adobe Acrobat, and doesn't require other programs.
add a comment |
Thanks so much for all the other answers! Yet I found this to be the most straightforward one that requires only basic knowledge of Adobe Acrobat, and doesn't require other programs.
Thanks so much for all the other answers! Yet I found this to be the most straightforward one that requires only basic knowledge of Adobe Acrobat, and doesn't require other programs.
answered 5 hours ago
Greek - Area 51 ProposalGreek - Area 51 Proposal
45032752
45032752
add a comment |
add a comment |
UPDATED:
NEW REPLY
In Acrobate Pro.
Go to "Tools" and open the "Print Production" pane.
Choose "Output preview".
Uncheck "PANTONE 302 C" or "Spot Plates" (either works)
Now read the PDF exactly as it is but without the blue background. Do this without closing the Output Preview box.
By having the Output Preview open you can toggle the background on and off when needed.
OLD REPLY
I would suggest that you open the PDF in Acrobate pro and then save it as an HTML page.
It's more or less like this:
- In Acrobate go to File menu and choose Save as and in sub menu go to
More Options and choose HTML. - You can read the file in your normal web browser.
I Saved the file as HTML and uploaded it here.
http://www.mediafire.com/file/r8uqab29dep1186/Criminal_Law_%25282018_8_ed%2529_-_Copy.html/file
If I open this in my browser I find it very easy to read and scroll. You can search with ctrl+f and increase and decrease text size if needed with ctrl+/-
Most important: NO COLORED TEXT BACKGROUNDS!
Check it out and tell me what you think!
1
Thanks. The PDF can be downloaded at mediafire.com/file/1iil649lu2he1ij/…. Doesn't your answer face the same difficulties as superuser.com/a/1389220/269574?
– Greek - Area 51 Proposal
Jan 6 at 4:51
I saved the PDF as HTML and its actually really easy to read in my browser. Being able to increase/decrease size of text with ctrl+ and ctrl- also makes it much easier to enhance any text thats smaller then you like. All the colored backgrounds are extracted as images and are not shown as text background, but rather as an separate image not by the text. If you remove all the images from the folder that is created when you save it as HTML no dark background images are shown at all. This I would say is an excellent solution for anyone visually challenged.
– Don King
Jan 7 at 12:00
Answer has been updated
– Don King
Jan 7 at 12:50
Thanks, but the resulting HTML looks too deformed? Words are spaced wrongly: Chapter 1's title is "A N INT RODUC T ION TO CR I M I NA L L AW", under which Central Issue #1 is "An im- portant distinction is drawn between the criminal law".
– Greek - Area 51 Proposal
Jan 7 at 16:33
Yeah some odd spacing occurs on some titles. The reason for im- portant is that in the pdf the width of the text section is limited while in the html it is not. It is definitely not the best way of reading the book, but if you cant see the sections with a blue or grey background you have an alternative that is relatively easy to make. The general text is easy to read imo. 'Save as html' and 'open in browser' requires very little energy spent from the user so I figured it was a quick way of reading the 'before unreadable' sections.
– Don King
Jan 9 at 16:28
|
show 1 more comment
UPDATED:
NEW REPLY
In Acrobate Pro.
Go to "Tools" and open the "Print Production" pane.
Choose "Output preview".
Uncheck "PANTONE 302 C" or "Spot Plates" (either works)
Now read the PDF exactly as it is but without the blue background. Do this without closing the Output Preview box.
By having the Output Preview open you can toggle the background on and off when needed.
OLD REPLY
I would suggest that you open the PDF in Acrobate pro and then save it as an HTML page.
It's more or less like this:
- In Acrobate go to File menu and choose Save as and in sub menu go to
More Options and choose HTML. - You can read the file in your normal web browser.
I Saved the file as HTML and uploaded it here.
http://www.mediafire.com/file/r8uqab29dep1186/Criminal_Law_%25282018_8_ed%2529_-_Copy.html/file
If I open this in my browser I find it very easy to read and scroll. You can search with ctrl+f and increase and decrease text size if needed with ctrl+/-
Most important: NO COLORED TEXT BACKGROUNDS!
Check it out and tell me what you think!
1
Thanks. The PDF can be downloaded at mediafire.com/file/1iil649lu2he1ij/…. Doesn't your answer face the same difficulties as superuser.com/a/1389220/269574?
– Greek - Area 51 Proposal
Jan 6 at 4:51
I saved the PDF as HTML and its actually really easy to read in my browser. Being able to increase/decrease size of text with ctrl+ and ctrl- also makes it much easier to enhance any text thats smaller then you like. All the colored backgrounds are extracted as images and are not shown as text background, but rather as an separate image not by the text. If you remove all the images from the folder that is created when you save it as HTML no dark background images are shown at all. This I would say is an excellent solution for anyone visually challenged.
– Don King
Jan 7 at 12:00
Answer has been updated
– Don King
Jan 7 at 12:50
Thanks, but the resulting HTML looks too deformed? Words are spaced wrongly: Chapter 1's title is "A N INT RODUC T ION TO CR I M I NA L L AW", under which Central Issue #1 is "An im- portant distinction is drawn between the criminal law".
– Greek - Area 51 Proposal
Jan 7 at 16:33
Yeah some odd spacing occurs on some titles. The reason for im- portant is that in the pdf the width of the text section is limited while in the html it is not. It is definitely not the best way of reading the book, but if you cant see the sections with a blue or grey background you have an alternative that is relatively easy to make. The general text is easy to read imo. 'Save as html' and 'open in browser' requires very little energy spent from the user so I figured it was a quick way of reading the 'before unreadable' sections.
– Don King
Jan 9 at 16:28
|
show 1 more comment
UPDATED:
NEW REPLY
In Acrobate Pro.
Go to "Tools" and open the "Print Production" pane.
Choose "Output preview".
Uncheck "PANTONE 302 C" or "Spot Plates" (either works)
Now read the PDF exactly as it is but without the blue background. Do this without closing the Output Preview box.
By having the Output Preview open you can toggle the background on and off when needed.
OLD REPLY
I would suggest that you open the PDF in Acrobate pro and then save it as an HTML page.
It's more or less like this:
- In Acrobate go to File menu and choose Save as and in sub menu go to
More Options and choose HTML. - You can read the file in your normal web browser.
I Saved the file as HTML and uploaded it here.
http://www.mediafire.com/file/r8uqab29dep1186/Criminal_Law_%25282018_8_ed%2529_-_Copy.html/file
If I open this in my browser I find it very easy to read and scroll. You can search with ctrl+f and increase and decrease text size if needed with ctrl+/-
Most important: NO COLORED TEXT BACKGROUNDS!
Check it out and tell me what you think!
UPDATED:
NEW REPLY
In Acrobate Pro.
Go to "Tools" and open the "Print Production" pane.
Choose "Output preview".
Uncheck "PANTONE 302 C" or "Spot Plates" (either works)
Now read the PDF exactly as it is but without the blue background. Do this without closing the Output Preview box.
By having the Output Preview open you can toggle the background on and off when needed.
OLD REPLY
I would suggest that you open the PDF in Acrobate pro and then save it as an HTML page.
It's more or less like this:
- In Acrobate go to File menu and choose Save as and in sub menu go to
More Options and choose HTML. - You can read the file in your normal web browser.
I Saved the file as HTML and uploaded it here.
http://www.mediafire.com/file/r8uqab29dep1186/Criminal_Law_%25282018_8_ed%2529_-_Copy.html/file
If I open this in my browser I find it very easy to read and scroll. You can search with ctrl+f and increase and decrease text size if needed with ctrl+/-
Most important: NO COLORED TEXT BACKGROUNDS!
Check it out and tell me what you think!
edited Jan 9 at 16:47
answered Jan 5 at 21:48
Don KingDon King
170110
170110
1
Thanks. The PDF can be downloaded at mediafire.com/file/1iil649lu2he1ij/…. Doesn't your answer face the same difficulties as superuser.com/a/1389220/269574?
– Greek - Area 51 Proposal
Jan 6 at 4:51
I saved the PDF as HTML and its actually really easy to read in my browser. Being able to increase/decrease size of text with ctrl+ and ctrl- also makes it much easier to enhance any text thats smaller then you like. All the colored backgrounds are extracted as images and are not shown as text background, but rather as an separate image not by the text. If you remove all the images from the folder that is created when you save it as HTML no dark background images are shown at all. This I would say is an excellent solution for anyone visually challenged.
– Don King
Jan 7 at 12:00
Answer has been updated
– Don King
Jan 7 at 12:50
Thanks, but the resulting HTML looks too deformed? Words are spaced wrongly: Chapter 1's title is "A N INT RODUC T ION TO CR I M I NA L L AW", under which Central Issue #1 is "An im- portant distinction is drawn between the criminal law".
– Greek - Area 51 Proposal
Jan 7 at 16:33
Yeah some odd spacing occurs on some titles. The reason for im- portant is that in the pdf the width of the text section is limited while in the html it is not. It is definitely not the best way of reading the book, but if you cant see the sections with a blue or grey background you have an alternative that is relatively easy to make. The general text is easy to read imo. 'Save as html' and 'open in browser' requires very little energy spent from the user so I figured it was a quick way of reading the 'before unreadable' sections.
– Don King
Jan 9 at 16:28
|
show 1 more comment
1
Thanks. The PDF can be downloaded at mediafire.com/file/1iil649lu2he1ij/…. Doesn't your answer face the same difficulties as superuser.com/a/1389220/269574?
– Greek - Area 51 Proposal
Jan 6 at 4:51
I saved the PDF as HTML and its actually really easy to read in my browser. Being able to increase/decrease size of text with ctrl+ and ctrl- also makes it much easier to enhance any text thats smaller then you like. All the colored backgrounds are extracted as images and are not shown as text background, but rather as an separate image not by the text. If you remove all the images from the folder that is created when you save it as HTML no dark background images are shown at all. This I would say is an excellent solution for anyone visually challenged.
– Don King
Jan 7 at 12:00
Answer has been updated
– Don King
Jan 7 at 12:50
Thanks, but the resulting HTML looks too deformed? Words are spaced wrongly: Chapter 1's title is "A N INT RODUC T ION TO CR I M I NA L L AW", under which Central Issue #1 is "An im- portant distinction is drawn between the criminal law".
– Greek - Area 51 Proposal
Jan 7 at 16:33
Yeah some odd spacing occurs on some titles. The reason for im- portant is that in the pdf the width of the text section is limited while in the html it is not. It is definitely not the best way of reading the book, but if you cant see the sections with a blue or grey background you have an alternative that is relatively easy to make. The general text is easy to read imo. 'Save as html' and 'open in browser' requires very little energy spent from the user so I figured it was a quick way of reading the 'before unreadable' sections.
– Don King
Jan 9 at 16:28
1
1
Thanks. The PDF can be downloaded at mediafire.com/file/1iil649lu2he1ij/…. Doesn't your answer face the same difficulties as superuser.com/a/1389220/269574?
– Greek - Area 51 Proposal
Jan 6 at 4:51
Thanks. The PDF can be downloaded at mediafire.com/file/1iil649lu2he1ij/…. Doesn't your answer face the same difficulties as superuser.com/a/1389220/269574?
– Greek - Area 51 Proposal
Jan 6 at 4:51
I saved the PDF as HTML and its actually really easy to read in my browser. Being able to increase/decrease size of text with ctrl+ and ctrl- also makes it much easier to enhance any text thats smaller then you like. All the colored backgrounds are extracted as images and are not shown as text background, but rather as an separate image not by the text. If you remove all the images from the folder that is created when you save it as HTML no dark background images are shown at all. This I would say is an excellent solution for anyone visually challenged.
– Don King
Jan 7 at 12:00
I saved the PDF as HTML and its actually really easy to read in my browser. Being able to increase/decrease size of text with ctrl+ and ctrl- also makes it much easier to enhance any text thats smaller then you like. All the colored backgrounds are extracted as images and are not shown as text background, but rather as an separate image not by the text. If you remove all the images from the folder that is created when you save it as HTML no dark background images are shown at all. This I would say is an excellent solution for anyone visually challenged.
– Don King
Jan 7 at 12:00
Answer has been updated
– Don King
Jan 7 at 12:50
Answer has been updated
– Don King
Jan 7 at 12:50
Thanks, but the resulting HTML looks too deformed? Words are spaced wrongly: Chapter 1's title is "A N INT RODUC T ION TO CR I M I NA L L AW", under which Central Issue #1 is "An im- portant distinction is drawn between the criminal law".
– Greek - Area 51 Proposal
Jan 7 at 16:33
Thanks, but the resulting HTML looks too deformed? Words are spaced wrongly: Chapter 1's title is "A N INT RODUC T ION TO CR I M I NA L L AW", under which Central Issue #1 is "An im- portant distinction is drawn between the criminal law".
– Greek - Area 51 Proposal
Jan 7 at 16:33
Yeah some odd spacing occurs on some titles. The reason for im- portant is that in the pdf the width of the text section is limited while in the html it is not. It is definitely not the best way of reading the book, but if you cant see the sections with a blue or grey background you have an alternative that is relatively easy to make. The general text is easy to read imo. 'Save as html' and 'open in browser' requires very little energy spent from the user so I figured it was a quick way of reading the 'before unreadable' sections.
– Don King
Jan 9 at 16:28
Yeah some odd spacing occurs on some titles. The reason for im- portant is that in the pdf the width of the text section is limited while in the html it is not. It is definitely not the best way of reading the book, but if you cant see the sections with a blue or grey background you have an alternative that is relatively easy to make. The general text is easy to read imo. 'Save as html' and 'open in browser' requires very little energy spent from the user so I figured it was a quick way of reading the 'before unreadable' sections.
– Don King
Jan 9 at 16:28
|
show 1 more comment
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1388370%2fhow-can-i-change-the-background-color-that-backgrounds-only-some-text-in-a-pdf%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you post a link with the PDF, or at least one page that needs the fix?
– juniorRubyist
Jan 6 at 4:44
@juniorRubyist I ought have done this...sorry! Link added to my post. mediafire.com/file/1iil649lu2he1ij/…
– Greek - Area 51 Proposal
Jan 6 at 20:50