#ImageWriterII

kylewkylew01
2025-03-30

I’m a dollar short and a day late, but better late than never! With only a little over a day left to go, I have my on too! Find it at DeereGreenZone.

paulrickardspaulrickards
2024-10-24

Printing another Print Shop banner because you can never have enough banners 😆

Sound on for dot matrix ASMR

paulrickardspaulrickards
2024-10-18

ASCII art color wheel on ImageWriter II

A linear color wheel printed as ASCII text on a CMYK dot matrix printer. A linear color wheel printed as ASCII text on an ImageWriter II dot matrix printer with sheet feeder attachment.
paulrickardspaulrickards
2024-10-05

Adjusting the CPI and LPI to get more characters.

ASCII art from a dot matrix ImageWriter II in color of a pink flower in a green bottle. Detail from an ASCII art from a dot matrix ImageWriter II in color of a pink flower in a green bottle. The detail show the flower closeup is made from ASCII text with the four CMYK colors overlapped. Detail from an ASCII art from a dot matrix ImageWriter II in color of a pink flower in a green bottle. The detail show the bottle closeup is made from ASCII text with the four CMYK colors overlapped.
paulrickardspaulrickards
2024-10-05

Some classics: ImageWriter II color ribbon X ASCII art

Great wave as color ASCII artMona Lisa as color ASCII art
paulrickardspaulrickards
2024-10-05

ImageWriter II color ribbon X ASCII art

Color Apple logo in ASCII art. Print of the Apple color logo on paper on top of an ImageWriter II with sheet feeder attachment.
paulrickardspaulrickards
2024-10-05

A while back I wrote some Python to print directly to ImageWriter II & LQ printers, both mono and color over serial. It also seems to work over AppleTalk which is awesome!

I printed this BYTE magazine cover using MacPalette II and my Python script for comparison.

MacPalette II is better at color but mine is better at smaller details, like the text at the top.

paulrickardspaulrickards
2024-10-04

New blog post: Fixing NOS ImageWriter II color ribbons. Long story short, I went back to foam! This post goes through my trials, failures, and success. Hope you find it useful!

biosrhythm.com/?p=2919

A composite of two images of the inside of ImageWriter II color ribbons. On the left shows disintegrated foam everywhere and a puke emoji. On the right is clean with new rollers and a starry eyed emoji.
paulrickardspaulrickards
2024-10-04

I may have found a solution for the ImageWriter II color ribbon pinch rollers. The O-ring method just wasn’t working for me. Details soon after some more testing. ☺️

#

A letter size page on an ImageWriter II sheet feeder that says ImageWriter II Color! in rainbow colors followed by “This is” and a color name on each line for magenta, red, yellow, green, cyan, blue, and black in that color.
paulrickardspaulrickards
2024-10-01

I got O rings from Home Depot (#70 3/4” OD, 9/16” ID) to go around the pinch rollers to replace the bad foam. It worked well with no friction on take up.

Now that the ribbon is all back inside the cartridge, there’s not enough torque to pull it from the other side of the cartridge. The O rings are loose and slip.

Anyone know a source for better O rings?

Open ImageWriter II color cartridge next to a small pack of O rings. Close up of the pinch rollers from an ImageWriter II color ribbon cartridge showing rows of new O rings pinching and pulling the ribbon.
paulrickardspaulrickards
2024-10-01
An open empty ImageWriter II color cartridge with the color ribbon in a pile above it with a single loop threaded in.
paulrickardspaulrickards
2024-10-01

Vacuum: 1
Ribbon: 0
😂

ImageWriter II color ribbon cartridge open with the ribbon half in the cartridge and half on the floor and partially inside a vacuum hose. Whoops.
paulrickardspaulrickards
2024-10-01

Still crumbly. Hmmm.

Inside a color ImageWriter II ribbon which has lots of yellow foam flecks stuck to it still.
paulrickardspaulrickards
2024-10-01

“I fall to pieces” 🥴

A color ImageWriter II ribbon with top removed showing a color ribbon winding back and forth with crumbling foam pieces distributed everywhere inside. Close up of a color ImageWriter II ribbon with top removed showing a color ribbon winding back and forth with crumbling foam pieces distributed everywhere inside. Two ImageWriter II color ribbon pinch rollers removed with crumbled foam bits everywhere.
Random_Seed :apple_inc: 💾 🇿🇦Random_Seed@bitbang.social
2024-07-17

Uh oh. No back cover on my newly acquired ImageWriter II 🙁. Clearly been off for a while and in storage as there’s rust in there. #Apple #imagewriterII #retrocomputing #vintage #dotmatrix

Vintage Apple ImageWriter II. Alas, no back cover.
paulrickardspaulrickards
2024-05-13

This animation shows the simulated output of CUPS ImageWriter II DitherPPI setting approximately from 2 to 31. After that, it changes to a more posterized dither and is the same for any larger value. You can see the dithering dots start very large and shrink down with each new value.

paulrickardspaulrickards
2024-05-13

I was able to tweak the output of the ImageWriter II prints from CUPS to be slightly better. I've updated the blog post.

biosrhythm.com/?p=2791

Two simulated test prints of Margaret Hamilton standing next to a stack of books. The top print is dark (labeled CUPS iwhi no changes/default). The bottom print is lighter with more clarity (labeled CUPS iwhi with DitherPPI: 31).
paulrickardspaulrickards
2024-05-13

This Python script will convert an ImageWriter II data stream/capture into a TIFF file. This was incredibly handy for running multiple tests without needing to actually print it on the printer to see the results.

github.com/shysaur/ImageWriter

paulrickardspaulrickards
2024-05-08

Ok, so this centipede printer workflow isn’t really reliable so I dove into CUPS to try and see if there’s a way to alter the dithering.

I tried adding different settings to the PPD file but nothing produced any changes.

Until I added “DitherPPI” (a GS option) and it produced a result that was pretty good! I tried various values (30, 80, 120, 180) but they all looked identical. In any case, this is good enough for me!

Image showing three different test prints of Margaret Hamilton smiling next to a stack of code. Labeled from top to bottom: "CUPS iwhi with DitherPPI: 30," "CUPS iwhi no changes,” and “MacPalette.”

Subjectively, the top and bottom are much better than the middle (default).
paulrickardspaulrickards
2024-05-08

The way it works is this:

1. A print is initiated from a device to the CUPS-PDF driver on my Raspberry Pi.
2. The resulting PDF is placed in the AFP share of netatalk/afpd.
3. An emulated PPC Mac 9.2.2 running the below is watching for new files in that folder and will print them using Acrobat Reader to the via using the MacPalette II driver.

It works, but crashes with dialog that I can't auto-dismiss.

Description:
An AppleScript that runs continuously watching a folder for any new items. It prints the ones it finds and moves them to the trash.

AppleScript:
property currentFiles : {}
property runinterval @ 5 - - in seconds
global folderSpool
set folderSpool to "MaclPpi DISK:Print:" as alias
repeat
tell application "Finder”
activate "Finder”
type text return
open folderSpool
set currentFiles to files of folderSpool as list
repeat with i from 1 to count of currentFiles
set theFile to item i of currentFiles
if size of theFile » O then
delay 10.0 
print theFile
type text return
delete theFile
repeat with j from 1 to 15
type text return
delay 2.0
end repeat
delay 5
end if
end repeat
close folderSpool
end tell
delay runlnterval
end repeat

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst