Difference between revisions of "Mediamanager:getPicture"

From GiderosMobile
(added real life example)
m
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''<translate>Available since</translate>:''' Gideros 2016.1<br/>
+
'''Available since:''' Gideros 2016.1<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/Media|Media]]<br/>
+
'''Class:''' [[Media]]<br/>
  
 
=== Description ===
 
=== Description ===
Line 9: Line 9:
 
</source>
 
</source>
  
=== <translate>Return values</translate> ===
+
=== Return values ===
'''<translate>Returns</translate>''' (string) <translate>path to the picture</translate><br/>
+
'''Returns''' (string) path to the picture<br/>
  
 
=== Example ===
 
=== Example ===

Revision as of 23:47, 24 October 2022

Available since: Gideros 2016.1
Class: Media

Description

Allows user to select picture from gallery.

(string) = mediamanager:getPicture()

Return values

Returns (string) path to the picture

Example

local alertdialog = AlertDialog.new("ERROR", "TILE MUST BE 128 PIXELS\n", "OK")
btnloadtile:addEventListener("click", function() -- load external tile
	local function mediareceive(e)
		external_tile_bmp = Bitmap.new(Texture.new(e.path))
		local w, h = external_tile_bmp:getWidth(), external_tile_bmp:getHeight()
		if w == h and w <= 128 then
			g_tilesize = w
			scenemanager:changeScene("tile", 0.5, transitions[21], easing.outBack)
		else
			alertdialog:show()
		end
		mediamanager:removeEventListener(Event.MEDIA_RECEIVE, mediareceive)
	end
	mediamanager:getPicture() -- opens windows/android file explorer
	mediamanager:addEventListener(Event.MEDIA_RECEIVE, mediareceive)
end)