Difference between revisions of "Event.MEDIA RECEIVE"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 8: Line 8:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
require "media"
 
require "media"
 
mediamanager:addEventListener(Event.MEDIA_RECEIVE, function(e)
 
mediamanager:addEventListener(Event.MEDIA_RECEIVE, function(e)

Revision as of 15:26, 13 July 2023

Available since: Gideros 2016.1
Value: complete
Defined by: Media

Description

This event is dispatched when a media is received via a call to mediamanager.

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) </source>

Parameters

e.path: (string) path to image