Everytime I convert PDF to PNG it becomes more pixely. How can I fix it?Free PDF printers produce ugly images?Adobe Reader renders Times fonts fuzzyOffice 2010 converts pptx to pdf differently on windows7 and XPConverting PDF to images preserving the vectorial qualityExport word document with high resolution PNG to PDFHow can I convert a large PDF to PNG?Better alternative for forms than PDF documentsHow to change the font(s) used by a PDF in OSX? Specifically I want to change from bitmap to vector fontsHow do I overcome my visibility issue with scanned PDF files?Importing JPEGs into Acrobat ruins edges
Why would Thor need to strike a building with lightning to attack enemies?
Can the word crowd refer to just 10 people?
Parse a C++14 integer literal
Why aren't satellites disintegrated even though they orbit earth within earth's Roche Limits?
Have the writers and actors of Game Of Thrones responded to its poor reception?
In How Many Ways Can We Partition a Set Into Smaller Subsets So The Sum of the Numbers In Each Subset Is Equal?
How can I stop my kitten from growing?
What does this 'x' mean on the stem of the voice's note, above the notehead?
Why does string strummed with finger sound different from the one strummed with pick?
Is it possible to view all the attribute data in QGIS
How can sister protect herself from impulse purchases with a credit card?
Can the bitcoin lightning network support more than 8 decimal places?
Working hours and productivity expectations for game artists and programmers
"File type Zip archive (application/zip) is not supported" when opening a .pdf file
Germany rejected my entry to Schengen countries
Are there any crystals that are theoretically possible, but haven't yet been made?
Why does Taylor’s series “work”?
Failing students when it might cause them economic ruin
How to convince boss to spend notice period on documentation instead of new projects
Find the 3D region containing the origin bounded by given planes
Precedent for disabled Kings
Why does snapping your fingers activate the Infinity Gauntlet?
Bash Read: Reading comma separated list, last element is missed
Cycling to work - 30 mile return
Everytime I convert PDF to PNG it becomes more pixely. How can I fix it?
Free PDF printers produce ugly images?Adobe Reader renders Times fonts fuzzyOffice 2010 converts pptx to pdf differently on windows7 and XPConverting PDF to images preserving the vectorial qualityExport word document with high resolution PNG to PDFHow can I convert a large PDF to PNG?Better alternative for forms than PDF documentsHow to change the font(s) used by a PDF in OSX? Specifically I want to change from bitmap to vector fontsHow do I overcome my visibility issue with scanned PDF files?Importing JPEGs into Acrobat ruins edges
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
The pdf file I use is high quality, and if you were to zoom at a letter as much as Adobe Reader can handle, you still find it difficult to look at a blocky pixel at the edges of a letter. But when I convert to PNG, it will zoom and the letters will look very pixely, it's as if it only saved the details that can be observed at its normal display size. How can I fix this?
imagemagick is a last choice, if there's a different program tell me
pdf png
New contributor
add a comment |
The pdf file I use is high quality, and if you were to zoom at a letter as much as Adobe Reader can handle, you still find it difficult to look at a blocky pixel at the edges of a letter. But when I convert to PNG, it will zoom and the letters will look very pixely, it's as if it only saved the details that can be observed at its normal display size. How can I fix this?
imagemagick is a last choice, if there's a different program tell me
pdf png
New contributor
Try converting to a higher resolution PNG, eg 300 DPI and see if you're able to zoom a reasonable amount without very high pixelation.
– Edi
5 hours ago
add a comment |
The pdf file I use is high quality, and if you were to zoom at a letter as much as Adobe Reader can handle, you still find it difficult to look at a blocky pixel at the edges of a letter. But when I convert to PNG, it will zoom and the letters will look very pixely, it's as if it only saved the details that can be observed at its normal display size. How can I fix this?
imagemagick is a last choice, if there's a different program tell me
pdf png
New contributor
The pdf file I use is high quality, and if you were to zoom at a letter as much as Adobe Reader can handle, you still find it difficult to look at a blocky pixel at the edges of a letter. But when I convert to PNG, it will zoom and the letters will look very pixely, it's as if it only saved the details that can be observed at its normal display size. How can I fix this?
imagemagick is a last choice, if there's a different program tell me
pdf png
pdf png
New contributor
New contributor
New contributor
asked 6 hours ago
thatone dodobirdthatone dodobird
61
61
New contributor
New contributor
Try converting to a higher resolution PNG, eg 300 DPI and see if you're able to zoom a reasonable amount without very high pixelation.
– Edi
5 hours ago
add a comment |
Try converting to a higher resolution PNG, eg 300 DPI and see if you're able to zoom a reasonable amount without very high pixelation.
– Edi
5 hours ago
Try converting to a higher resolution PNG, eg 300 DPI and see if you're able to zoom a reasonable amount without very high pixelation.
– Edi
5 hours ago
Try converting to a higher resolution PNG, eg 300 DPI and see if you're able to zoom a reasonable amount without very high pixelation.
– Edi
5 hours ago
add a comment |
1 Answer
1
active
oldest
votes
How can I fix this?
You don't.
The formats are inherently different and work in different ways.
PDF supports what is known as "vector" graphics. PDF allows you to specify line and curve start and end points and you can effectively "draw" items perfectly. This is why you can zoom in infinitely without loosing any quality in the picture. Lines are redrawn at your current resolution and zoom and always look sharp. In vector graphics there is no real concept of resolution, only relative co-ordinates and scaling.
PNG on the other hand is a "raster" format. It supports stating what colour each individual pixel is and that is it. The "resolution" of the file tells you exactly how many pixels there are in it. When you zoom in you start seeing individual pixels. To see the same level of detail as the PDF you would need an infinitely large file and it would be difficult to manage and work with.
You can also embed raster graphics data such as JPEG images into a PDF, but that is a story for another day.
If you want to retain the vector format of the PDF you can import it into a program such as Inkscape and export it as an SVG or EMF file which also support vector graphics.
Exporting at a sufficiently high resolution should meet the needs of the OP.
– Appleoddity
6 hours ago
@Appleoddity True, but why loose quality when you don't have to. I've added a link to a program that can import vector PDF and export various other vector formats.
– Mokubai♦
6 hours ago
Thank you for your time. You seem to know about computers, I have asked a question and didn't get an answer. Can you please see the question and answer it as it is very important? Here: stackoverflow.com/questions/56162864/…
– thatone dodobird
2 hours ago
add a 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
);
);
thatone dodobird is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1438169%2feverytime-i-convert-pdf-to-png-it-becomes-more-pixely-how-can-i-fix-it%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
How can I fix this?
You don't.
The formats are inherently different and work in different ways.
PDF supports what is known as "vector" graphics. PDF allows you to specify line and curve start and end points and you can effectively "draw" items perfectly. This is why you can zoom in infinitely without loosing any quality in the picture. Lines are redrawn at your current resolution and zoom and always look sharp. In vector graphics there is no real concept of resolution, only relative co-ordinates and scaling.
PNG on the other hand is a "raster" format. It supports stating what colour each individual pixel is and that is it. The "resolution" of the file tells you exactly how many pixels there are in it. When you zoom in you start seeing individual pixels. To see the same level of detail as the PDF you would need an infinitely large file and it would be difficult to manage and work with.
You can also embed raster graphics data such as JPEG images into a PDF, but that is a story for another day.
If you want to retain the vector format of the PDF you can import it into a program such as Inkscape and export it as an SVG or EMF file which also support vector graphics.
Exporting at a sufficiently high resolution should meet the needs of the OP.
– Appleoddity
6 hours ago
@Appleoddity True, but why loose quality when you don't have to. I've added a link to a program that can import vector PDF and export various other vector formats.
– Mokubai♦
6 hours ago
Thank you for your time. You seem to know about computers, I have asked a question and didn't get an answer. Can you please see the question and answer it as it is very important? Here: stackoverflow.com/questions/56162864/…
– thatone dodobird
2 hours ago
add a comment |
How can I fix this?
You don't.
The formats are inherently different and work in different ways.
PDF supports what is known as "vector" graphics. PDF allows you to specify line and curve start and end points and you can effectively "draw" items perfectly. This is why you can zoom in infinitely without loosing any quality in the picture. Lines are redrawn at your current resolution and zoom and always look sharp. In vector graphics there is no real concept of resolution, only relative co-ordinates and scaling.
PNG on the other hand is a "raster" format. It supports stating what colour each individual pixel is and that is it. The "resolution" of the file tells you exactly how many pixels there are in it. When you zoom in you start seeing individual pixels. To see the same level of detail as the PDF you would need an infinitely large file and it would be difficult to manage and work with.
You can also embed raster graphics data such as JPEG images into a PDF, but that is a story for another day.
If you want to retain the vector format of the PDF you can import it into a program such as Inkscape and export it as an SVG or EMF file which also support vector graphics.
Exporting at a sufficiently high resolution should meet the needs of the OP.
– Appleoddity
6 hours ago
@Appleoddity True, but why loose quality when you don't have to. I've added a link to a program that can import vector PDF and export various other vector formats.
– Mokubai♦
6 hours ago
Thank you for your time. You seem to know about computers, I have asked a question and didn't get an answer. Can you please see the question and answer it as it is very important? Here: stackoverflow.com/questions/56162864/…
– thatone dodobird
2 hours ago
add a comment |
How can I fix this?
You don't.
The formats are inherently different and work in different ways.
PDF supports what is known as "vector" graphics. PDF allows you to specify line and curve start and end points and you can effectively "draw" items perfectly. This is why you can zoom in infinitely without loosing any quality in the picture. Lines are redrawn at your current resolution and zoom and always look sharp. In vector graphics there is no real concept of resolution, only relative co-ordinates and scaling.
PNG on the other hand is a "raster" format. It supports stating what colour each individual pixel is and that is it. The "resolution" of the file tells you exactly how many pixels there are in it. When you zoom in you start seeing individual pixels. To see the same level of detail as the PDF you would need an infinitely large file and it would be difficult to manage and work with.
You can also embed raster graphics data such as JPEG images into a PDF, but that is a story for another day.
If you want to retain the vector format of the PDF you can import it into a program such as Inkscape and export it as an SVG or EMF file which also support vector graphics.
How can I fix this?
You don't.
The formats are inherently different and work in different ways.
PDF supports what is known as "vector" graphics. PDF allows you to specify line and curve start and end points and you can effectively "draw" items perfectly. This is why you can zoom in infinitely without loosing any quality in the picture. Lines are redrawn at your current resolution and zoom and always look sharp. In vector graphics there is no real concept of resolution, only relative co-ordinates and scaling.
PNG on the other hand is a "raster" format. It supports stating what colour each individual pixel is and that is it. The "resolution" of the file tells you exactly how many pixels there are in it. When you zoom in you start seeing individual pixels. To see the same level of detail as the PDF you would need an infinitely large file and it would be difficult to manage and work with.
You can also embed raster graphics data such as JPEG images into a PDF, but that is a story for another day.
If you want to retain the vector format of the PDF you can import it into a program such as Inkscape and export it as an SVG or EMF file which also support vector graphics.
edited 6 hours ago
answered 6 hours ago
Mokubai♦Mokubai
58.7k16139158
58.7k16139158
Exporting at a sufficiently high resolution should meet the needs of the OP.
– Appleoddity
6 hours ago
@Appleoddity True, but why loose quality when you don't have to. I've added a link to a program that can import vector PDF and export various other vector formats.
– Mokubai♦
6 hours ago
Thank you for your time. You seem to know about computers, I have asked a question and didn't get an answer. Can you please see the question and answer it as it is very important? Here: stackoverflow.com/questions/56162864/…
– thatone dodobird
2 hours ago
add a comment |
Exporting at a sufficiently high resolution should meet the needs of the OP.
– Appleoddity
6 hours ago
@Appleoddity True, but why loose quality when you don't have to. I've added a link to a program that can import vector PDF and export various other vector formats.
– Mokubai♦
6 hours ago
Thank you for your time. You seem to know about computers, I have asked a question and didn't get an answer. Can you please see the question and answer it as it is very important? Here: stackoverflow.com/questions/56162864/…
– thatone dodobird
2 hours ago
Exporting at a sufficiently high resolution should meet the needs of the OP.
– Appleoddity
6 hours ago
Exporting at a sufficiently high resolution should meet the needs of the OP.
– Appleoddity
6 hours ago
@Appleoddity True, but why loose quality when you don't have to. I've added a link to a program that can import vector PDF and export various other vector formats.
– Mokubai♦
6 hours ago
@Appleoddity True, but why loose quality when you don't have to. I've added a link to a program that can import vector PDF and export various other vector formats.
– Mokubai♦
6 hours ago
Thank you for your time. You seem to know about computers, I have asked a question and didn't get an answer. Can you please see the question and answer it as it is very important? Here: stackoverflow.com/questions/56162864/…
– thatone dodobird
2 hours ago
Thank you for your time. You seem to know about computers, I have asked a question and didn't get an answer. Can you please see the question and answer it as it is very important? Here: stackoverflow.com/questions/56162864/…
– thatone dodobird
2 hours ago
add a comment |
thatone dodobird is a new contributor. Be nice, and check out our Code of Conduct.
thatone dodobird is a new contributor. Be nice, and check out our Code of Conduct.
thatone dodobird is a new contributor. Be nice, and check out our Code of Conduct.
thatone dodobird is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1438169%2feverytime-i-convert-pdf-to-png-it-becomes-more-pixely-how-can-i-fix-it%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
Try converting to a higher resolution PNG, eg 300 DPI and see if you're able to zoom a reasonable amount without very high pixelation.
– Edi
5 hours ago