Database
blend.asc
Associated article: Alpha Blending Graphic Images
Tags: Database Web Development Design
_ALPHA BLENDING GRAPHIC IMAGES_
by Tim Wittenburg
Listing One
void memImage::smoothX3NN(){
int x, y;
BYTE HUGE *myTemp = bytes;
for (y = 1; y <= imageHeight; y++){
for (x = 1; x < imageWidth; x++){
if(x == 1 && *myTemp > 0){
*myTemp = (*(myTemp)+ *(...


