Excuse my naivety but would it be possible to hack a laser printer driver/firmware to implement custom dithering instead of the embedded default ones?
Custom halftones algorithm on laser printers
349 Views Asked by user1415785 At
1
There are 1 best solutions below
Related Questions in IMAGE-PROCESSING
- Need help in detecting multiple blobs
- Image based steganography that survives resizing?
- WinRT Extract Thumbnail from RAW image format
- 3D B-Spline approximation
- Qualitative and Quantitative analysis of filtered back projection / iradon in matlab
- How to detect objects in an image based on colour?
- How to make sense (handle) when computes logarithm of zero in prior information
- scilab - Drawing bounding box
- Lowpass filter non working
- Get a single line representation for multiple close by lines clustered together in opencv
- error while drawing several x-marks on a binary image in matlab
- Which method should I use to find gradient direction of pixels in an image?
- Finding Circle Boundary Pixels Coordinates and RGB Intensity Values from An RGB Input Image in Matlab
- using SURF for handdetection
- Using only one tool from CLImageEditor
Related Questions in PRINTING
- How to send ESC/POS commands to thermal printer in Linux
- JTable Printing. How to set page breaks programmatically?
- Why do print and echo behave differently in a "for" loop
- Is there a way to limit the html page to a particular page size?
- How to execute keybord shortcut CTRL + P by clicking a link using jquery
- Chrome print preview disable only link location in footer and header
- C program doesn't print
- how to print a receipt to a particular printer
- How to print Jasper reports from servlets?
- Is it possible to print web content on thermal printer?
- How to print the HTML in Java
- How to get a response of file printing job to user from printer using CUPS in linux
- Android PrintManager get callback
- Business card height and width in pixels on web?
- Microsoft Dynamics Ax 2012 R2 run time issue
Related Questions in DRIVER
- C++ Mongodb driver, not working
- Raspberry PI Compute Module - SPI1
- Insert element into nested array in Mongodb
- Loading a Windows Driver Class other than NetService to act as an NDIS Filter
- where to find oneplus one binaries (Device tree, Vendor, Kernel) to build rom from AOSP?
- Why does this static funtion have three prefixes?
- Is it possible to limit data traffic in kernel USB drivers?
- Twain driver scanner integration in Windows 8.1
- USB3 Controller & Kinect 2
- Connecting R from JSP
- Universal Drivers will run inside Universal Apps in Windows 10?
- USB keeps disconnecting...only for mobile devices
- IoCreateDeviceSecure function denies the access from member in Administrators
- Intel OpenGL Driver bug?
- CoreMediaIO camera driver not detected until restart of application
Related Questions in POSTSCRIPT
- How to insert a TIFF into PostScript?
- Description of PostScript internal error handler procedures
- Select paper source in php printing solution
- ColorConversionStrategy CMYK adds a white background
- IPython notebook embed postscript
- PostScript error with imagemask and raw data
- C# SVG rendering engine - doesn't convert PostScript font but TrueType font does convert?
- EPS file from R loads very slow in evince
- How to batch convert PostScript files to PNGs via folder action with use of ImageMagick
- Ghostscript - determine the final substituted font at runtime
- Print PDF using GhostScript
- postscript programming regular polygon with diagonals
- PDF to PostScript conversion slow while converting stamped pages
- Python Tkinter postscript wrong size export
- Where are PostScript procedure sets and resources stored?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If its a PostScript laser printer then you might be able to use the sethalftone operator to use a different threshold array for the screens.
If you actually want to use dithering or something instead then you would need to actually 'hack' the code. I've no doubt its possible, but it would be enormously difficult and to my mind fairly pointless.
If you don't like the technique in your printer then use something like Ghostscript to render the PostScript to a grayscale image, apply the technique you like, then wrap the resulting 1 bit per pixel image back up as PostScript and send it to your printer. Because the image is now monochrome no further screening will be applied.
If you are talking about colour then you can do the same, but you'll have to produce separated output and recombine the halftoned images into one.
I should probably point out that printer manufacturers usually expend a reasonable degree of effort in getting passable quality output, taking the characteristics of the print technology into account. I won't say its impossible to do better, but you'll have to have a good idea what you are doing.