A cocoa-touch framework. An instance of ALAssetsLibrary represents the videos and photos that are under the control of the Photos application.

learn more… | top users | synonyms

-1
votes
2answers
23 views

Issues uploading video to server [closed]

I've tried searching in Google for hours now and I hit a dead end. I need a way to correct video orientation when uploading video to server. I was able to find a function to help me do this for images ...
0
votes
1answer
20 views

Saving to custom photo folder also saves to “Saved Photos” folder

Is there a way to disable the "Saved Photos" folder when saving to a custom folder? NSData *data1 = UIImagePNGRepresentation(imageToCrop.image); UIImage *tehnewimage = [UIImage imageWithData: ...
0
votes
0answers
18 views

How to stop blocking main thread while retrieving alassets

When i run this code from viewdidload it blocks the main UI having image slider. As block not finishing i have to get asset array in viewDidAppear . This Way its working fine getting 400 images with ...
0
votes
0answers
52 views

How to get images from photo library without using ALAssetsLibrary?

I want to implement a custom image picker with multiple images selection feature, just like an extension of the standard UIImagepickerController. I know I can use ALAssetsLibrary to enumerate the ...
0
votes
0answers
17 views

AllAsset Library failure block called

I am using AllAsset library in my application.In IOS5 if user disable Location Service failure block will be called.What are the other options that causes failure block calling?
0
votes
1answer
16 views

Writing orignal image with exif to Document Directory folder from ALAsset object

I want to save alasset imagearray directly to document directory with EXIF i tried PNG conversion, jpeg conversion nothing worked It just creating new image either with jpg or png (loss of exif) I ...
-1
votes
0answers
64 views

How to load images from specific folder to iOS app [closed]

I am creating an app which have two options :- load all images from iPhone gallery load images from a specific folder. Till now, I am succeeded to load all images from gallery using ...
0
votes
1answer
27 views

App crashes with 'NSRangeException' when library is empty

I am using this code to get the latest photo from the cameraRoll: - (void) getTheLatestPhoto{ ALAssetsLibrary *cameraRoll = [[ALAssetsLibrary alloc] init]; [cameraRoll ...
0
votes
0answers
23 views

Fetching Images from photos after some specific date or last imported date

So far i have been able to Load Images from photos using alassetslibrary to Image array. Writing all files to Document Directory under some specific folder Showing it to Inbuilt image gallery of ...
0
votes
0answers
38 views

ALAssetsLibrary: how can I get all the video types from both photo library and video app?

my target is to get url of the videos from not just photo library, but also the videos in the video app (all the types including Movies, TV Shows, Music Videos, etc.). I am using ...
2
votes
0answers
19 views

Non Retina Ipad having blur issue when trying to get Thumbnail from Asset

I am having an application in which i need thumbnail of the image of asset i have selected from the gallery. So wrote the following code for getting the thumbnail, it works fine in IPAD retina but ...
1
vote
1answer
59 views

ALAssets get video data

I am trying to access video data from ALAssets library using the below code ALAssetRepresentation *rep = [asset defaultRepresentation]; Byte *buffer = (Byte*)malloc(rep.size); ...
0
votes
1answer
82 views

How to get NSData of mp3 using MPMediaPickerController?

I want to upload mp3 from my phone to server, for this i am using MPMediaPickerController. After getting URL of MPMediaItem, i want to get NSData of this url , but i am getting null in NSData. - ...
0
votes
1answer
22 views

Saving images as ALAssets without duplicates

I'd like to download images with the dropbox api and save them in a custom album ("DropBox") in my ALAssetLibrary. However I don't want to save duplicates. So what is the best way to check if the ...
0
votes
1answer
38 views

list all the videos (from the photo library and the video app) into the uitableviewcell

I want to list all the videos. Not just the videos in photo library, but also in the video app, including the movies, tv shows, music videos, etc into my app. When I used ALAsset like this: ...
0
votes
0answers
31 views

kCGImagePropertyIPTCStarRating Removed from ALAssetsLibrary Metadata

The IPTC Star Rating field, kCGImagePropertyIPTCStarRating in iOS, is stripped from the metadata dictionary when writing a new image using ALAssetsLibrary writeImageDataToSavedPhotosAlbum in iOS6. All ...
1
vote
0answers
27 views

Assets Library not updating

I am using a photo gallery feature in the app I am building, so users can take pictures from within the app and it will save them to a custom album, with special metadata attached to identify which ...
3
votes
0answers
59 views

ALAssetsLibrary doesn't return runloop

i wanna show a UICollectionView but i have a problem with loading the images. The AlAssetsLibrary doesn't return to the runloop. I get the output as 2013-04-12 11:36:25.429 Filmriss[459:907] ...
2
votes
1answer
80 views

ALAsset thumbnail have black background

I have written my own image picker classes through using ALAssetsLibrary classes. Almost everything is fine, but there are some image thumbnails which have black background, while the actual image is ...
1
vote
1answer
26 views

How to Localize NSPhotoLibraryUsageDescription key (ALAssets)

I'm trying to localize the NSPhotoLibraryUsageDescription key defined in the application's info.plist file (reference here). This key gives you a point to provide custom message when the app is first ...
0
votes
0answers
56 views

Why does this array not being populated?

Even if assetsEnumerator block is executed in a different thread it still takes a long time for my images to fill the array , so that's why I'm trying to do this, for better performance. The thing is ...
0
votes
1answer
49 views

How can I seed the iOS simulator photo albums?

I've got a suite of KIF tests for our app, but one part that I can't work out how to cover is where we use UIImagePickerControllers. Obviously I can't check the camera, but I'd like to write a ...
0
votes
1answer
41 views

Why do I get index beyond bounds if I fill array in another thread?

I'm using the assets enumerator block to populate two arrays; one for library assets and one for fullScreen pictures. _albumAssets array is used as data source for one collectionView and _albumPics ...
-1
votes
1answer
81 views

break iteration of photos ALAssetsLibrary

How do I break through the enumeration going on for ALAssetsLibrary enumerateAssets method with a boolean set. Can I just get out of the loop? CODE: [self.library ...
1
vote
0answers
55 views

Updating PSTCollectionView contents while loading photos

I'm using PSTCollectionView class to load the photos from iPhone camera roll. I want the photos to appear while they're loaded though, not wait until everything is read. My code looks like this: ...
1
vote
0answers
74 views

asset library crashes application without any message in log

That's the log in organizer ocesses Name rpages recent_max [reason] (state) MobileMail 1557 1557 ...
1
vote
1answer
132 views

Image loading with GCD receiving memory warning

I'm developing a photo gallery application using AssetsLibrary to load my device photos. When presenting a random image in another VC I've noticed the following : it takes about 1 or 2 seconds for my ...
2
votes
1answer
208 views

ALAssetsLibrary get Camera Roll

I enumerate all assets groups using ALAssetsLibrary Here is code: ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init]; void (^enumerate)(ALAssetsGroup *, BOOL *) = ^(ALAssetsGroup *group, ...
0
votes
1answer
180 views

ALAssetsLibrary and Location Services in iOS 6

I'm in the process of upgrading one of my apps to support iOS6 and iPhone5. In the previous version, I had to prompt the user to enable Location Services in order to display photos using the ...
1
vote
1answer
129 views

Delete/Edit album group in ALAssetsLibrary, is it possible?

If an app creates a group in ALAssetsLibrary via "addAssetsGroupAlbumWithName:", is there a way to delete it again from within that app or change its name ? cheers
0
votes
2answers
120 views

How to compare two ALAssets?

I have some trouble with compare two ALAssets object. I have two NSMutableArray: selectedImages and mutableAssets. I store there ALAssets object. But when i want to compare this assets it doesnt work ...
0
votes
2answers
203 views

How to load several photos with assetForURL with a list of URLs

For a list of URLs I need to load the photos with ALAssetsLibrary:assetForURL, and this within one method. Since this method works async but it is not iterating over the passed list of URLs, as we all ...
0
votes
1answer
108 views

Add an NSDictionary to image metadata

I'm trying to save an image with some custom metadata to a Photo Album. The custom metadata I would like to save should be in the form of a NSDictionary. Until now I have only succeeded in inserting ...
0
votes
3answers
243 views

how to prevent ALAssetsLibrary to get video thumbnail images with liabrary images?

I'm using the following code to access all ALAssetsLibrary images but the ALAssetsLibrary is giving me the saved video thumbnail images with the saved images from ALAssetsLibrary. how can i prevent ...
1
vote
0answers
58 views

ALAssetGroup poster image size

Can someone explain what is the size of poster image of AlassetGroup? I do not understand what is the dependency on image and poster image of the album. For example as i tested poster image size on ...
0
votes
1answer
68 views

Open Source Asset Management or File Server

I'm looking for a simple tool that would allow users to update and tag assets. THen search/browse for assets and view the assets in the search results. I have lots of files, i.e. logos, buttons, ...
1
vote
1answer
259 views

Reset permissions for ALAssetsLibrary in the simulator

I have an iOS app which needs to ask the user for permissions to access their photos. I am trying to enhance the user experience by displaying a prompt and explanation to the user the first time the ...
0
votes
1answer
236 views

Is it possible to Create custom album in IOS 6

Can any one tell me.. I want to work with Camera Application now so I have to know Is it possible to create custom album in IOS 6. I know it is possible in IOS5 then I searched it for IOS6 I did not ...
0
votes
2answers
130 views

How to show video files in UITableView with image of video?

I could access mediafiles with MPMediaPickerController, I need to list down all videos I selected from picker. MPMoviePlayerViewController is being used and I have added a player to every cell, but I ...
1
vote
1answer
42 views

ALAssetURL unique even after SYNC ipad/iPhone with iTunes

The documentation describes it as 'persistent' ...
2
votes
1answer
59 views

When enumerating ALAssetsLibrary, can I distinguish screen-short-cut images and camera-taken images?

Now I only want to get the screen-short-cut images. Is there any way to distinguish screen-short-cut images and camera-taken images when enumerating the ALAssetsLibrary? Thans very much.
0
votes
1answer
234 views

Memory problems while reading iphone camera roll with AlAssetsLibrary

I'm trying to get last picture from iphone camera roll. I use the following code: UIImage* __block image = [[UIImage alloc] init]; ALAssetsLibrary* library = [[ALAssetsLibrary alloc] init]; [library ...
2
votes
0answers
91 views

monotouch asset library orientation

I have an app that allows users to select multiple images from the asset library. The problem I'm having is that the orientation metadata is not stored when I "copy" the image from the asset library ...
0
votes
3answers
256 views

ALAssetsLibrary custom location services permission alert iPhone

I am using ALAssetsLibrary for accessing photos in my app and when apps first trying to access photos it asks for permissions for location services. I want to give custom message for that alert like ...
0
votes
1answer
117 views

ALAsset “real” filename

I have transfered an MP4 from iTunes to my iPad. If I open the Videos app I can see it listed - there's the thumbnail and the filename below (my_file.mp4). However the actual filename of the asset ...
0
votes
1answer
126 views

Import User Photo Library Albums

I am trying to import, not just multiple photos at a time, but also multiple albums (or single if impossible) at a time. Basically I want to implement something similar to stock Picture Frame App on ...
0
votes
0answers
83 views

detect when user take a picture or when a new image is added to the camera roll

In my app, I have an Image View showing the most recent image from the Camera Roll. I want it to always be updated so I need a way to detect when a new image was added to the Camera Roll. Is there ...
0
votes
2answers
147 views

How to order the results from ALAssetsLibraryGroupsEnumerationResultsBlock

Question I want to order the results returned from my ALAssetsLibrary in way which Camera Roll will be on top of my array. Code This is my enumeration block which walk through all returned items. ...
0
votes
2answers
265 views

Unable to load image from asset URL

I have a class that stores information about the assets on the phone (images, videos). My class has the ResourceURLString defined as such @property NSURL *ResourceURL; I am setting the property ...
1
vote
1answer
174 views

Is there a way to get NSURL of all the images in iphone without using ALAsset

I am new to iphone - objC et al. I wanted to know if there is a way by which I could get all the NSURL and filename of the images files in an iphone without making use of ALAsset ? In the current ...

1 2 3 4 5 6