LiveCode 第3天——从图片库取图片

 安卓教程列表

原文 2011-7-19

 

on mouseUp
   set the lockloc of the templateimage to true
   set the width of the templateimage to "300"
   set the height of the templateimage to "400"
   set the left of the templateimage to "10"
   set the top of the templateimage to "10"
   mobilepickphoto "library"
end mouseUp

mobilePickPhoto有3个参数。参数1,source,指定范围:

library,库

album,当前的照片库

camera,打开摄像头拍照

rear camera,后置摄像头(仅ios)

front camera,前置摄像头(仅ios)

参数2,参数3,最大宽高。
 使用手机的图片选择器'image chooser'

 操作:

1 新建stack
2 宽度320,高度 460
3 创建按钮“获取图片”,不支持中文

4 移到底部给图片留出空间

你可能感兴趣的:(LiveCode 第3天——从图片库取图片)