1999.10.29 22:33 "TIFF scaling", by Tom DeGerlia

1999.11.01 14:51 "Re: TIFF scaling", by Eric Shapiro

If not, what is a reasonably efficient way of implementing a scaling function?

If you want to be cross-platform, I think you have to roll your own or find something in a book or on the 'net.

Almost all computer platforms these days have some sort of bitmap scaling routines built-in. On the Mac, you just allocate a second GWorld and call CopyBits(). Under Windows I think the call is StretchDIBits() or something like that.

Depending on how you want to scale the image you may like or dislike the choices made by the system routines, though. There are a few different ways to stretch and shrink images. If you need to be fast you do it the easy way. If they are cartoon-like images, you might not need to average surrounding pixels. If they are photograph-like images you may want to do something else. Line drawings a different way. Etc, etc.

Any good graphic algorithm book should cover this.

-Eric

-------------------------------------------------
 Eric Shapiro                   eric@relium.com
 Relium Corp.                    www.relium.com
-------------------------------------------------


Editor's note: This mail was not originally archived, and has been reconstructed from quotes.