Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

80%
+6 −0
Q&A What is the difference between dot and pixel?

In either a print job or a digital picture at the smallest level there are individual color markers, in print that is called a dot, and on a computer, it's called a pixel. The difference between th...

posted 2y ago by Charlie Brumbaugh‭

Answer
#1: Initial revision by user avatar Charlie Brumbaugh‭ · 2021-11-14T20:14:36Z (over 2 years ago)
In either a print job or a digital picture at the smallest level there are individual color markers, in print that is called a dot, and on a computer, it's called a pixel. The difference between the two is whether the image is physical or digital.

On say a 4x6 inch picture, the more dots/pixels there are the better the quality will be.

Channels refer to colors/opacity, a 32bitmap image will have 4 channels Red, Blue, Green, and opacity while a grayscale image will only have one channel.

Bytes per pixel determine the amount of color. For instance, a 24-bit bitmap image has one 3 bytes per pixel, one byte per channel resulting in 256*256*256 possible color combinations. A grayscale bitmap on the other hand has one byte per pixel, resulting in 256 different combinations.

Atomic simply means that it's the smallest possible entity, it's not possible to split a pixel or dot any smaller.