rotate image file, VC Tutorial, download sample source code

来源:百度文库 编辑:神马文学网 时间:2024/06/12 12:03:38
VC++ Tutorial: High quality image rotation (rotate by shear)
By Eran Yariv.

Unlike traditional rotation of images, where every n'th pixel is sampled and copied to the result image, this template provides much more accurate image rotation features (weighing the pixels).
template is instantiated with a specific pixel format and must be inherited to support pixel access functions for a specific bitmap implementation. This provides abstaction of the rotation mechanism from the actual bitmap representation.
Major features:
ides professional quality image rotation.
Code is optimized for image quality, not speed.
Rotated image retains size and aspect ratio of source image (destination image size is usally bigger).
Supports double precision rotation angles (0..360).
Supports generic bitmap structures. Specific bitmap structure is defined by inheritance.
Template based - no need for libraries, DLLs etc. No linkage problems.
How to use the rotation template:
You must derive you own class from the rotation template.
For example:
class CRotateByShearRGB : public CRotateByShear
will define a concrete class where each pixel is of COLORREF type.
Next, you must override 5 abstract functions which support creation, destruction of bitmap buffers and pixel level access to the bitmap buffers.
Then you instantiate your derived class and call the AllocAndRotate(...) function which allocates a new destination bitmap buffer and rotates the input image into it.
That's it.
For further instructions please view the attached sample command-line project (Rotate.cpp). It is a simple command line utility which reads PPM (ASCII or binary) image file into a DIB structure, rotates it and saves it to another PPM image file.
Download source code
Download demo project - 21 Kb
Download source files - 4 Kb
Copyright?1998-2007 UCanCode.Net Software , all rights reserved.
Other product and company names herein may be the trademarks of theirrespective owners.
Please direct your questions or comments towebmaster@ucancode.net