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

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Post History

75%
+4 −0
Q&A Get supported resolutions of scanner in Linux

Using scanimage First, get the name of the scanner with scanimage --list-devices In my case, this produced device `brother4:net1;dev0' is a Brother Brother_DCP-L3550CDW DCP-L3550CDW To get...

posted 12mo ago by Matthias Braun‭  ·  edited 12mo ago by Matthias Braun‭

Answer
#2: Post edited by user avatar Matthias Braun‭ · 2023-05-22T20:01:24Z (12 months ago)
add link to blog post
  • # Using [`scanimage`](https://man.archlinux.org/man/scanimage.1.en)
  • First, get the name of the scanner with
  • scanimage --list-devices
  • In my case, this produced
  • device `brother4:net1;dev0' is a Brother Brother_DCP-L3550CDW DCP-L3550CDW
  • To get the different options and capabilities of that device, run
  • scanimage --help -d 'brother4:net1;dev0'
  • In the output, following the line
  • Options specific to device `brother4:net1;dev0':
  • there were the supported resolutions, in DPI:
  • --resolution 100|150|200|300|400|600|1200|2400|4800|9600dpi [200]
  • I proceeded to do a test scan, to see if the resolution is actually supported:
  • scanimage -d 'brother4:net1;dev0' --resolution 2400 -o 'test_file.jpg'
  • # Using [`scanimage`](https://man.archlinux.org/man/scanimage.1.en)
  • First, get the name of the scanner with
  • scanimage --list-devices
  • In my case, this produced
  • device `brother4:net1;dev0' is a Brother Brother_DCP-L3550CDW DCP-L3550CDW
  • To get the different options and capabilities of that device, run
  • scanimage --help -d 'brother4:net1;dev0'
  • In the output, following the line
  • Options specific to device `brother4:net1;dev0':
  • there were the supported resolutions, in DPI:
  • --resolution 100|150|200|300|400|600|1200|2400|4800|9600dpi [200]
  • I proceeded to do a test scan, to see if the resolution is actually supported:
  • scanimage -d 'brother4:net1;dev0' --resolution 2400 -o 'test_file.jpg'
  • ---
  • [This helpful blog post](https://jvns.ca/blog/2020/07/11/scanimage--scan-from-the-command-line/) by Julia Evans pointed me to `scanimage --help -d`.
  • []()
#1: Initial revision by user avatar Matthias Braun‭ · 2023-05-22T19:52:06Z (12 months ago)
# Using [`scanimage`](https://man.archlinux.org/man/scanimage.1.en)

First, get the name of the scanner with

    scanimage --list-devices

In my case, this produced

    device `brother4:net1;dev0' is a Brother Brother_DCP-L3550CDW DCP-L3550CDW

To get the different options and capabilities of that device, run

    scanimage --help -d 'brother4:net1;dev0'

In the output, following the line

    Options specific to device `brother4:net1;dev0':

there were the supported resolutions, in DPI:

    --resolution 100|150|200|300|400|600|1200|2400|4800|9600dpi [200]

I proceeded to do a test scan, to see if the resolution is actually supported:

    scanimage -d 'brother4:net1;dev0' --resolution 2400 -o 'test_file.jpg'