Code: Select all
on opencard
iPhonePickPhoto "rear camera", 600, 600
if the result = "cancel" then
exit opencard
end if
iphoneExportImageToAlbum (the number of images)
end opencard
Thanks! Much appreciation for any help!
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
on opencard
iPhonePickPhoto "rear camera", 600, 600
if the result = "cancel" then
exit opencard
end if
iphoneExportImageToAlbum (the number of images)
end opencard
Code: Select all
on opencard
iPhonePickPhoto "rear camera", 600, 600
if the result = "cancel" then
exit opencard
end if
iphoneExportImageToAlbum the text of last img
end opencard
Not per se!Is it just plain impossible for livecode to resize the image to a square?
Obviously LiveCode will ALWAY preserve the correct aspect ratio.I understand the iPhone is not taking a square picture but if you specify parameters it just resizes the image based off of a rectangle anyways?
From the iOS Release Notes:Is there no way to specify where the image dumps to or will it always just plop in the middle of my screen?
Code: Select all
on opencard
set the lockloc of the templateimage to true
set the height of the templateimage to "450"
set the width of the templateimage to "430"
set the top of the templateimage to "155"
set the left of the templateimage to "105"
iPhonePickPhoto "rear camera"
if the result = "cancel" then
exit opencard
end if
end opencard
Code: Select all
on opencard
set the lockloc of the templateimage to true
## Numbers NOT in Quotes!
set the topleft of the templateimage to 105,155
iPhonePickPhoto "rear camera",430,450
if the result = "cancel" then
exit opencard
end if
end opencard