Mediamanager:isCameraAvailable

From GiderosMobile
Revision as of 15:28, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")

Available since: Gideros 2016.1
Class: Media

Description

Checks if camera is available. <syntaxhighlight lang="lua"> (bool) = mediamanager:isCameraAvailable() </source>

Return values

Returns (bool) true if camera is available, false otherwise

Example

<syntaxhighlight lang="lua"> require "media" mediamanager:addEventListener(Event.MEDIA_RECEIVE, function(e)

   local media = Media.new(e.path)
   media:resize(200, 200)
   print(media:getPixel(1, 1))
   for x = 50, 100 do
       for y = 50, 100 do
           media:setPixel(x, y, 255, 0, 0, 0.5)
       end
   end
   media:save()
   local bmp = Bitmap.new(Texture.new(e.path, true))
   stage:addChild(bmp)

end)

if mediamanager:isCameraAvailable() then

   mediamanager:takePicture()

else

   mediamanager:getPicture()

end </source>