rem
rem AGK Application 1.08 Beta 13
rem MR
rem get image from camera by dialog
SetDisplayAspect( 4.0/3.0 )
SetVirtualResolution( 1024, 768 )
SetResolutionMode( 1 )
SetSyncRate( 60, 0 )
SetOrientationAllowed( 1,1,1,1 )
image=0
if GETCAMERAEXISTS() =1
if SHOWIMAGECAPTURESCREEN() =1
while ISCAPTURINGIMAGE() =1
sync()
endwhile
image=GETCAPTUREDIMAGE()
if image=0 then end
idsprite = CreateSprite ( image )
sx#=1024.0/getimagewidth(image)
sy#= 768.0/getimageheight(image)
SetSpriteScale( idsprite, sx#, sy# )
endif
else
message("no cam")
endif
ClearScreen()
setclearcolor(128,128,128)
ende=1
AddVirtualButton( ende,32, 32, 64 )
SetVirtualButtonText( ende, "Ende" )
SetVirtualButtonAlpha( ende, 192 )
do
if GetVirtualButtonPressed( ende ) then exit
Sync()
loop
end
Help make AGK better by submitting an example for this command! (All examples are subject to approval)
rem rem AGK Application 1.08 Beta 13 rem MR rem get image from camera by dialog SetDisplayAspect( 4.0/3.0 ) SetVirtualResolution( 1024, 768 ) SetResolutionMode( 1 ) SetSyncRate( 60, 0 ) SetOrientationAllowed( 1,1,1,1 ) image=0 if GETCAMERAEXISTS() =1 if SHOWIMAGECAPTURESCREEN() =1 while ISCAPTURINGIMAGE() =1 sync() endwhile image=GETCAPTUREDIMAGE() if image=0 then end idsprite = CreateSprite ( image ) sx#=1024.0/getimagewidth(image) sy#= 768.0/getimageheight(image) SetSpriteScale( idsprite, sx#, sy# ) endif else message("no cam") endif ClearScreen() setclearcolor(128,128,128) ende=1 AddVirtualButton( ende,32, 32, 64 ) SetVirtualButtonText( ende, "Ende" ) SetVirtualButtonAlpha( ende, 192 ) do if GetVirtualButtonPressed( ende ) then exit Sync() loop end