Questions tagged [camera-roll]

157 questions
0
votes
1 answer

Camera roll with cropping functionality in as3 starling

I implemented camera roll on my game with flash Media Event. Now, i want to have cropping functionality. Once i take photo from my gallery, how to crop before upload it to my game like cropping on black berry messenger dp on android phone? I'm…
Andri Wu
  • 105
  • 1
  • 11
0
votes
1 answer

as3/air/android/ "cameraroll and Sprite"

function showpic(e:Event):void { if(bitmap != null) { removeChild(bitmap); } var originalWidth:int = Bitmap(e.currentTarget.content).width; var originalHeight:int = Bitmap(e.currentTarget.content).height; bitmapdata…
0
votes
1 answer

why my code is not working about CameraRoll in android(as3)

import flash.media.CameraRoll; import flash.display.Loader; import flash.media.MediaPromise; import flash.display.Bitmap; import flash.display.BitmapData; import flash.events.MediaEvent; import…
0
votes
1 answer

Add bitmap to stage from CameraRoll loaded image

I need to use the code below to load an image from the CameraRoll with Adobe Air on iOS 8. (it will also be used to read the EXIF data from the loaded image) I would like to add the bitmap via addChild() to the stage as soon as the…
Jay
  • 491
  • 1
  • 12
  • 22
0
votes
0 answers

How to get the file path to a CameraRoll loaded image?

I would like to get the file path of an image that got loaded over the CameraRoll with the code below. The app runs on an iPhone with iOS 8 an it's build with Adobe Air 15. var loaderCameraRoll:Loader var deviceCameraRoll:CameraRoll function…
Jay
  • 491
  • 1
  • 12
  • 22
0
votes
0 answers

How to programmatically detect there is enough space to save the video to camera roll?

For example, my iPhone has 60MB free storage space and I have videoA which size is 23MB, and videoB which size is 47MB. In my App, i am trying to save the selected video to camera roll. Both videoA and videoB are smaller than the available free…
srjohnhuang
  • 222
  • 3
  • 18
0
votes
0 answers

Movie mp4 video from Application's Document to CameraRoll

I wnat to save video on Camera Roll self.videopath=@"/var/mobile/Applications/AE75E729-7F10-478B-9DAF-E730EB4231D1/Documents/Videos/12.mp4" 1st Approach: UISaveVideoAtPathToSavedPhotosAlbum(self.videopath, nil, NULL, NULL); 2nd Approach: NSURL…
zohaibkhan
  • 227
  • 1
  • 2
  • 12
0
votes
0 answers

iOS/Xcode: Select all images from camera roll between user-set dates

I'm trying to build a simple iOS application where a user sets some dates, and the application then fetches all the images that were taken between those two dates. I've just started, but currently have the view to select the two dates and…
user2656127
  • 625
  • 2
  • 15
  • 30
0
votes
1 answer

AS3 android camera roll crash and restart

Making an AS3 app for android that uses camera roll to load, select and then use an image. The cameraroll browser works fine, but when the image is selected, the app crashes - almost every time - as it has worked on a handful of occasions (!?!) We…
0
votes
0 answers

Camera with library button in iOS7

I have two questions :) : - in my app, I would like to post pictures that were taken from the camera, or the library. But the default camera doesn't show the library button, and I would like to use this feature. Do you know how can I integrate the…
Jeromiin
  • 71
  • 7
0
votes
1 answer

Cannot get dateTimeOriginal from camera roll

my Application use didFinishPickingMediaWithInfo for take photo and i want to save it in camera roll UIImage *orgImage=[[UIImage alloc]init]; orgImage = (UIImage *)[info objectForKey:UIImagePickerControllerOriginalImage]; if…
0
votes
1 answer

iOS rename/delete albums of photos

I am able to add photos and create albums from my app but I also want to be able to rename/delete albums and pictures in these albums. I know Apple have restrictions but is it possible at least to manage the albums and photos created by my…
gop
  • 2,060
  • 5
  • 24
  • 50
0
votes
2 answers

iOS: Control access to camera roll new appear

in my app I use ALAssetsLibrary to load access at photos in camera roll; The first time I start my app I see the classic message, if I want give the permission to access at the photo library or not. But I want to test this situation in each case…
cyclingIsBetter
  • 16,737
  • 47
  • 149
  • 236
0
votes
1 answer

Programmatically surface CameraRoll image created with CameraCaptureTask

As described in this thread's first answer, for WP8 the Camera Capture Task automatically saves a copy of any images it creates to the Camera Roll. If an image is saved in this way, is it possible to programmatically surface the image in an…
ssmolen
  • 69
  • 6
0
votes
0 answers

Button to save image to phone on a website

Is it possible to create a button, on a website, that would save an image to someone's camera roll on either iOS or Android? I've searched left and right for this but to no avail. I don't even know if it's possible or not. Thanks!
Bruno Cloutier
  • 853
  • 2
  • 9
  • 11
1 2 3
10
11