Figures from chapter 6 of ImageMagick, the definitive guide

Here are the thumbnails for the figures from chapter 6 of ImageMagick, the Definitive Guide: Figure 6-1 Figure 6-2 Figure 6-3 Figure 6-4 Figure 6-5 Figure 6-6 Figure 6-7 Figure 6-8 Figure 6-9 Figure 6-10 Figure 6-11 Figure 6-12 Figure 6-13 Figure 6-14 Figure 6-15 Figure 6-16 Figure 6-17 Figure 6-18 Figure 6-19 Figure 6-20 Figure 6-21 Figure 6-22 Figure 6-23 Figure 6-24 Figure 6-25 Figure 6-26 Figure 6-27 Figure 6-28 Figure 6-29 Figure 6-30 Figure 6-31 Figure 6-32 Figure 6-33 Figure 6-34 Figure 6-35 Figure 6-36 Figure 6-37 Figure 6-38 Figure 6-39 Figure 6-40 Figure 6-41 Figure 6-42 Figure 6-43 Figure 6-44 Figure 6-45

Continue ReadingFigures from chapter 6 of ImageMagick, the definitive guide

Figures from chapter 7 of ImageMagick, the definitive guide

Here are the thumbnails for the figures from chapter 7 of ImageMagick, the Definitive Guide: Figure 7-1 Figure 7-2 Figure 7-3 Figure 7-4 Figure 7-5 Figure 7-6 Figure 7-7 Figure 7-8 Figure 7-9 Figure 7-10 Figure 7-11 Figure 7-12 Figure 7-13 Figure 7-14 Figure 7-15 Figure 7-16 Figure 7-17 Figure 7-18 Figure 7-19 Figure 7-20 Figure 7-21 Figure 7-22 Figure 7-23 Figure 7-24 Figure 7-25 Figure 7-26 Figure 7-27 Figure 7-28 Figure 7-29 Figure 7-30 Figure 7-31 Figure 7-32 Figure 7-33 Figure 7-34 Figure 7-35 Figure 7-36 Figure 7-37 Figure 7-38 Figure 7-39 Figure 7-40 Figure 7-41 Figure 7-42 Figure 7-43 Figure 7-44 Figure 7-45 Figure 7-46 Figure 7-47 Figure 7-48 Figure 7-49 Figure 7-50 Figure 7-51 Figure 7-52 Figure 7-53 Figure 7-54 Figure 7-55 Figure 7-56 Figure 7-57 Figure 7-58 Figure 7-59 Figure 7-60 Figure 7-61 Figure 7-62 Figure 7-63 Figure 7-64 Figure 7-65 Figure 7-66 Figure 7-67 Figure 7-68 Figure 7-69 Figure 7-70 Figure 7-71 Figure 7-72 Figure 7-73 Figure 7-74 Figure 7-75 Figure 7-76 Figure 7-77 Figure 7-78 Figure 7-79 Figure 7-80 Figure 7-81 Figure 7-82 Figure 7-83 Figure 7-84 Figure 7-85 Figure 7-86 Figure 7-87 Figure 7-88 Figure 7-89 Figure 7-90 Figure 7-91 Figure 7-92 Figure…

Continue ReadingFigures from chapter 7 of ImageMagick, the definitive guide

Errata from the book

The Definitive Guide to ImageMagick arrives in bookstores 26 December 2005, but Apress has already started sending out PDF versions of the book to some reviewers (let me know if you're interested in doing a review and I will see what I can do), and there is a sample chapter available for download from the Apress site. We worked hard to make the book as good as we could, including having a technical review team, several layers of editors, and me reading all of the chapters more than I would like to admit. That doesn't mean that it's impossible that errata slipped through though, so if you see something like that then please send either me an email, or even better send an email to the address reserved for such things. Each error found, if I agree with it, will result in a thank you email, the error being corrected in any future editions, the error being listed online (I don't know where yet though), and a credit in future versions of the book.

Continue ReadingErrata from the book

Building a stack of images from thumbnails

I have a directory full of thumbnails of the rental tour I went on the other day while looking for a new apartment, and I want to put them online. Instead of putting each photo online, which I thought might be boring, I wanted to build a stack on images on a background. I'm not really describing the effect well, so here's the output so you know what I mean: This was remarkably easy to create with a simple script that uses ImageMagick. Here's the code: #!/bin/bash # Setup the random number stuff LOBOUND=1 HIBOUND=600 RANDMAX=32767 # Create a white image to start with convert -size $HIBOUND"x"$HIBOUND xc:lightgray output.png for img in img*jpg do echo "Processing $img" # Rotate the image if needed rotate="" if [ `exif $img | grep Orientation | grep bottom | wc -l | tr -d " "` -gt 0 ] then convert -rotate -90 $img img.png else convert $img img.png fi imgwidth=`identify -ping img.png | cut -f 3 -d " " | cut -f 1 -d "x"` imgheight=`identify -ping img.png | cut -f 3 -d " " | cut -f 2 -d "x"` # For more information on bounded numbers with bash, see # http://www.stillhq.com/bashrand/…

Continue ReadingBuilding a stack of images from thumbnails

The book

Just a little status update... The book went to print last night, so I guess that makes me a published author or something. Cool, huh?

Continue ReadingThe book

Status of the book

The book has been written for a while, along with the technical editing and review. The copy edits have been done since last week. There are only two chapters left for page layout. The process has been interesting, educational, and in some parts long. The hardest part though? Ironically, it's filling in the marketing questionnaire. I've never done anything approaching sales before, although I have done customer facing work. Some parts of the questionnaire are easy... The target audience for instance, a short pitch for the book, that sort of thing. What about things like which magazines to ask to do a review? What about people who might be willing to do reviews? Got suggestions? Reply in a comment?

Continue ReadingStatus of the book

End of content

No more pages to load