LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 04-30-2022, 08:33 AM   #1
gregors
Member
 
Registered: Mar 2018
Posts: 177

Rep: Reputation: Disabled
How to pixel-play with printer?


Hi there,

some 20 years ago, when I bought a new printer, I used to "pixel-play" with it: Try printer commands, see how far I can push it using the highest possible resolution, see how fast I can print graphics ...

So, recently I had to bury my loved HP-LJ 4M (600 dpi laser) and bought an Epson ET-M1140 (1200x2400 ink) and I'd like to see what I can do with it. First I bought different types of paper and tried paper handling, two sided printing and such. BTW: Once I used to work as an DTP operator.

Now, how can I try out printing in 1200x2400 dpi? Since angled lines look kinda "stairy" I guess CUPS doesn't use the printer's full capabilities. So, what to do?

Any hints anybody?

TIA

Gregor

PS: The cover page for my calendar (made in Inkscape, printed with "vector" option set): http://test.szaktilla.de/nmz/ (beware the big hi-res files behind the previews :-)
PPS: Inkscape is faulty. It doesn't really embed images. So, here you are: http://test.szaktilla.de/scheibe1.png

Last edited by gregors; 04-30-2022 at 11:00 AM.
 
Old 04-30-2022, 07:02 PM   #2
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,808

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Quote:
Originally Posted by gregors View Post
Now, how can I try out printing in 1200x2400 dpi? Since angled lines look kinda "stairy" I guess CUPS doesn't use the printer's full capabilities. So, what to do?

Any hints anybody?

TIA

Gregor
Start by examining the available printer options (as reported by the printer or associated PPD).

Code:
lpoptions -d <printername> -l
More info:
Code:
man lpoptions
 
Old 04-30-2022, 08:59 PM   #3
gregors
Member
 
Registered: Mar 2018
Posts: 177

Original Poster
Rep: Reputation: Disabled
Using lpoptions

Code:
lpoptions -o quality=HIGHQUALITY_PLAIN_HIGH
I changed the print quality in some way - well, at least printing takes more time now.
But it didn't change any resolution aspects. Circles, angled lines, text and so on still show some kind of „saw tooth“ edges. Now grey areas don't show „line feed stripes“ as it was before but text/bitmaps still look like 300 dpi (ugly for someone like me). It seems that there simply doesn't exist a way to change the resolution to something other than 300x300 dpi - so to me it seems that Epson has some major problem with their printers under Linux/CUPS. Looking at this problem with my DTP operator's eyes it is a really HUGE problem.

And searching the Epson Homepage I didn't find out how to tell/ask them about it. Huh?! Don't they offer any support?

Even the most recent version of Debian 11 doesn't support this printer in any way other than use it with the driver for the (older) ET-M1120 ...

Hm ... ?!

Gregor

Last edited by gregors; 04-30-2022 at 09:02 PM.
 
Old 04-30-2022, 11:20 PM   #4
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,808

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Which drivers are you using?
Code:
sudo egrep -i "name|model|filter" /etc/cups/ppd/*
 
Old 04-30-2022, 11:27 PM   #5
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,808

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Linux drivers (release date 7 March 2022) for the ET-M1140 are available from here:
https://epson.com/Support/wa00821
 
Old 04-30-2022, 11:50 PM   #6
gregors
Member
 
Registered: Mar 2018
Posts: 177

Original Poster
Rep: Reputation: Disabled
Yes, there are deb packages on that page.

But trying to install

epson-inkjet-printer-escpr2_1.1.48-1lsb3.2_amd64.deb
or
epson-printer-utility_1.1.1-1lsb3.2_amd64.deb

results in an error message: lsb-3.2 missing (although lsb-11.1 is installed)


Code:
gszaktilla@mimi:~$ aptitude show lsb-base
Paket: lsb-base                                 
Version: 11.1.0
Zustand: Installiert
Automatisch installiert: nein
Multi-Arch: foreign
Priorität: optional
Bereich: misc
Verwalter: Debian sysvinit maintainers <debian-init-diversity@chiark.greenend.org.uk>
Architektur: all
Unkomprimierte Größe: 50,2 k
Liefert: lsb-base:i386 (= 11.1.0)
Beschreibung: Linux Standard Base - Funktionalität für Init-Skripte
 Die Linux Standard Base (LSB, http://www.linuxbase.org/) ist ein vereinheitlichtes Basissystem, auf das
 Linuxanwendungen von Dritten aufbauen können.
Gregor

PS:
Code:
root@mimi:/home/gszaktilla/dokumente/downloads# apt-get install ./epson-inkjet-printer-escpr2_1.1.48-1lsb3.2_amd64.deb 
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Note, selecting 'epson-inkjet-printer-escpr2' instead of './epson-inkjet-printer-escpr2_1.1.48-1lsb3.2_amd64.deb'
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 epson-inkjet-printer-escpr2 : Depends: lsb (>= 3.2) but it is not installable
E: Unable to correct problems, you have held broken packages.

Last edited by gregors; 04-30-2022 at 11:53 PM.
 
Old 05-01-2022, 12:06 AM   #7
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,808

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Regarding Debian based distros and LSB:
https://wiki.debian.org/DebianLsb

One of many threads on this topic:
https://unix.stackexchange.com/quest...ll-lsb-package
 
Old 05-01-2022, 12:14 AM   #8
gregors
Member
 
Registered: Mar 2018
Posts: 177

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ferrari View Post
Regarding Debian based distros and LSB:
https://wiki.debian.org/DebianLsb

One of many threads on this topic:
https://unix.stackexchange.com/quest...ll-lsb-package
Uh ... so Linux is moving away from being conform to any standard ...?! Well, it must have something to do with systemd ... maybe *eg*

Shit happens ...

Gregor
 
Old 05-01-2022, 12:26 AM   #9
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,808

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Yes, a Debian decision...you can read the history for yourself...
https://en.wikipedia.org/wiki/Linux_...ions_on_Debian
https://lwn.net/Articles/658809/

Unfortunately, Epson Linux driver packages require it. FWIW, here's an account of a Mint user who managed to install lsb-compat via a Debian repo...
https://forums.linuxmint.com/viewtop...f=247&t=315539

Good luck.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Google Pixel 6 and Pixel 6 Pro are seeing work for mainline Linux kernel support LXer Syndicated Linux News 0 11-25-2021 02:31 AM
LXer: Pixel 2 and Pixel 2 XL Ship with 18W PD Power Adapters and Support up to 27W Charging from Compliant Chargers LXer Syndicated Linux News 0 10-08-2017 03:57 AM
LXer: Paranoid Android 7.2 Improves Google Pixel/Pixel XL Support, Adds Pocket Lock LXer Syndicated Linux News 0 07-13-2017 07:30 AM
Manipulating The Display Pixel By Pixel :: Low Level cin_ Linux - Software 3 08-31-2014 10:09 PM
problem installing ( pixel view ) Play TV usb 415 card on fedora 10 narendra.pant Linux - Hardware 1 02-04-2010 06:19 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 04:16 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration