Difference between revisions of "Media"
Line 134: | Line 134: | ||
[[Special:MyLanguage/x_Media:copy|Media:copy(destination)]] ''makes a copy of an image''<br/> | [[Special:MyLanguage/x_Media:copy|Media:copy(destination)]] ''makes a copy of an image''<br/> | ||
<!-- GIDEROSMTD:Media:copy(destination) makes a copy of an image --> | <!-- GIDEROSMTD:Media:copy(destination) makes a copy of an image --> | ||
+ | [[Special:MyLanguage/x_Media:save|Media:save()]] ''saves the changes made to file''<br/> | ||
+ | <!-- GIDEROSMTD:Media:save() saves the changes made to file --> | ||
+ | [[Special:MyLanguage/x_Media:setRotation|Media:setRotation(angle)]] ''rotates image''<br/> | ||
+ | <!-- GIDEROSMTD:Media:setRotation(angle) rotates image to provided angle in degrees --> | ||
+ | [[Special:MyLanguage/x_Media:getRotation|Media:getRotation()]] ''returns current rotation''<br/> | ||
+ | <!-- GIDEROSMTD:Media:getRotation() returns previously set rotation --> | ||
+ | [[Special:MyLanguage/x_Media:flipHorizontal|Media:flipHorizontal()]] ''flips image horizontally''<br/> | ||
+ | <!-- GIDEROSMTD:Media:flipHorizontal() flips image horizontally --> | ||
+ | [[Special:MyLanguage/x_Media:flipVertical|Media:flipVertical()]] ''flips image vertically''<br/> | ||
+ | <!-- GIDEROSMTD:Media:flipVertical() flips image vertically--> | ||
+ | |||
+ | [[Special:MyLanguage/x_Media:drawImage|Media:drawImage(x, y, media, alpha)]] ''draws another image on current one''<br/> | ||
+ | <!-- GIDEROSMTD:Media:drawImage(x, y, media, alpha) draws another image on current one at specific x and y coordinates. You can provide either another media object or string path to image file--> | ||
TO DO!<br/> | TO DO!<br/> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
'''Media:drawText(x, y, text, hexColor, fontSize, alpha)''' -- draw a text at provided coorindates with provided settings<br/> | '''Media:drawText(x, y, text, hexColor, fontSize, alpha)''' -- draw a text at provided coorindates with provided settings<br/> | ||
'''Media:drawLine(x0, y0, x1, y0, hexColor, alpha, blendAlpha)''' -- draw a line from x0,y0 to x1,y1 with provided settings<br/> | '''Media:drawLine(x0, y0, x1, y0, hexColor, alpha, blendAlpha)''' -- draw a line from x0,y0 to x1,y1 with provided settings<br/> |
Revision as of 01:47, 11 February 2020
Supported platforms:
Available since: Gideros 2016.1
Description
- Get image from Camera, gallery or file system
- Resize image
- Make copy of an image
- Take screenshots
- Play videos (for cutscenes)
- Manipulate pictures (getting/setting pixels)
- And much more...
Examples
Example 1.
--require plugin
require "media"
-- is camera available
print(mediamanager:isCameraAvailable())
-- take screenshot (no permission needed)
mediamanager:takeScreenshot()
-- get picture from gallery (*need read permission*)
mediamanager:getPicture()
-- save picture to sdcard/pictures folder (*need write permission*)
mediamanager:postPicture("gfx/ball.png")
Example 2.
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
Example 3. Save a picture on your phone or on your pc.
require "media"
-- draw your gfx
local source = Pixel.new(0xff00ff, 1, 128, 128)
-- create a render target and draw to it
local rt = RenderTarget.new(source:getWidth(), source:getHeight())
rt:draw(source)
-- save your render target to gideros documents folder
local myfilepath = "|D|mysavedpicture2.png"
rt:save(myfilepath)
-- create a new media and save your gfx
local media = Media.new(myfilepath)
-- android saved path = internal storage/pictures !!! NEED permission write external storage !!!
mediamanager:postPicture(myfilepath)
-- show your gfx on stage
local mybmprt = Bitmap.new(Texture.new(myfilepath))
mybmprt:setPosition(64, 64)
stage:addChild(mybmprt)
Notes
By resizing image you will actually resize the file of the image, so there is no going back to upscale it later.
getPicture method gives you copies of the image, so you won't harm the original.
The dimensions when resizing are all actual dimensions of the image and not logical dimensions in your project.
Methodsmediamanager:deleteFile(path) deletes file at provided path Media.new(path) creates a new Media object with provided image Media:getPath() returns the path that was used to create the media Media:drawImage(x, y, media, alpha) draws another image on current one TO DO! Media:drawText(x, y, text, hexColor, fontSize, alpha) -- draw a text at provided coorindates with provided settings |
EventsEvent.MEDIA_RECEIVE (e.path) -- path to image Constants |