The Shrinking of Treehorn

The Shrinking of Treehorn is a children's book by Florence Parry Heide, illustrated by Edward Gorey, and first published in 1971. The main character in the book is Treehorn, whose parents barely notice when he shrinks.[1]

The Shrinking of Treehorn
AuthorFlorence Parry Heide
IllustratorEdward Gorey
GenreChildren
PublisherHoliday House
Publication date
1971
Pages63
ISBN0-8234-0189-8
OCLC277918
[E]
LC ClassPZ7.H36 Sh
Followed byTreehorn's Treasure 

Plot

Treehorn is a young boy who begins shrinking one day. The book opens with the line "Something very strange was happening to Treehorn," and the boy soon discovers that he is getting smaller when he cannot reach the candy bars and bumble gum he has hidden on a previously accessible shelf. (No reason for his shrinking is ever given in the text.) When his parents comment on it, they say, "Maybe he's doing it on purpose, just to be different." In the end, Treehorn returns to his normal size.

Sequels

The sequel to this book is Treehorn's Treasure (1981), followed by Treehorn's Wish (1984). The three books were collected in an omnibus edition, The Treehorn Trilogy, in 2006.[2]

Film adaptation

An animated film adaptation directed by Ron Howard is said to be development. The animation would be done by Animal Logic and distributed by Paramount Pictures.[3]

gollark: For example, it stores created/updated timestamps in a way which allows them to be looked up more quickly, makes it faster to look up the latest revision of stuff, allows me to do compression (I implemented brotli compression to reduce storage requirements a lot), and allows revisions to have data and represent stuff other than "the page content changed".
gollark: The new version *is* better, even if it involves something like 70 lines more code.
gollark: I've reworked minoteaur's design a bit again because productivity is BEES and happens to other people.```sqlCREATE TABLE pages ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, updated INTEGER NOT NULL, content TEXT NOT NULL);``` I went from that small and thus uncool database thingy to this:```sqlCREATE TABLE versions ( vuuid TEXT PRIMARY KEY COLLATE BINARY, rawSize INTEGER NOT NULL, encoding TEXT, data BLOB NOT NULL);CREATE TABLE pages ( title TEXT PRIMARY KEY, created INTEGER NOT NULL, updated INTEGER NOT NULL, latestVersion TEXT NOT NULL REFERENCES versions(vuuid));CREATE TABLE revisions ( ruuid TEXT PRIMARY KEY COLLATE BINARY, page TEXT NOT NULL REFERENCES pages(title), timestamp INTEGER NOT NULL, type TEXT NOT NULL, data TEXT NOT NULL, -- JSON version TEXT NOT NULL REFERENCES versions(vuuid));CREATE INDEX revisions_page_ix ON revisions(page);```
gollark: Suspicious timing.
gollark: potatOS privacy policy, first 4000 characters.

References


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.