Camera

From GiderosMobile
Revision as of 15:52, 18 August 2021 by Hgy29 (talk | contribs) (→‎Methods)


Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.png
Available since: Gideros 2017.8

Description

Renders live camera stream into a Texture

Examples

Example

require "camera"

-- Probe camera size (use a dummy 512x512 surface)
Camera.texture=RenderTargert.new(512,512)
cw,ch=Camera.start(Camera.texture)
Camera.stop()

-- Restart camera with a full sized texture
Camera.texture=RenderTarget.new(cw,ch,true)
cw,ch=Camera.start(Camera.texture)

application:setLogicalDimensions(ch,cw)

local b=Bitmap.new(Camera.texture) 
stage:addChild(b)

Methods

camera.availableDevices Return a list of available devices.
camera.queryCamera Get information about the given camera
camera.setFlash Select the flash mode to use
camera.start Start streaming camera pictures to a Texture
camera.stop Stop camera streaming.
camera.takePicture Take a picture

Events

Constants