blending images?
Blitz3D Forums/Blitz3D Programming/blending images?
| ||
| is it possable to blend an image into another one? like u gather and save a screen hot of game then average it in with another would look kinda like this?
graphics 800,600,32,1
setbuffer backbuffer()
car=loadimage("car.bmp")
dude_thats_behind_window_in_car=loadimage("dude.bmp")
while not keydown(1)
drawimage dude_thats_behind_window_in_car,x,y
blendimagestobackground(car)
flip
cls
wend
function blendimagestobackground(car)
;stuff goes in here
end function
any ideas how to do this? |
| ||
| This should work .... As you can see ... it's dog slow. The percent param should be between 0 and 1.0. Stevie |
| ||
| I would rather use a pixelperfect sprite of the image, then use EntityAlpha. That's fast enough to blend multiple images simultanously. There may be some ready to use solutions in the archives. |
| ||
| it isn't that slow.(only if ur using normal sized images instead of screenshots) anyway thanks stevie. ps how do u make the window inside of the fourms? |
| ||
| {codebox} YOUR CODE {/codebox} But change the {} to [] |