The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
9 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
1answer
26 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
2answers
30 views

ALAsset thumbnail without inward black translucent border

I have find that for most photos in the gallery, [ALAsset thumbnail] will return the thumbnail with an inward black translucent border. My question is, how can I obtain the thumbnail without this ...
0
votes
1answer
21 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
36 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: ...
1
vote
1answer
49 views

Memory leak attaching multiple photos in MFMailComposerViewController

I am trying to attach multiple photos in a MailComposerViewController and I am using ALAssetPickerViewController to pick multiple photos. I have an NSMutableArray, which contains reference of selected ...
0
votes
0answers
37 views

memory leak when get fullScreenImage from ALASset result

I found there's memory leak in the ALAsset result handler if write: ALAssetRepresentation* representation = [result defaultRepresentation]; CGImageRef imageRef = [representation ...
2
votes
1answer
77 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
0answers
64 views

Properly displaying cropped images in iOS v5.0.1 and below + ALAssetLibrary

I am trying to display photos from the camera roll within my application using ALAssetLibrary. All images are displaying fine except for cropped images. ALAsset returns unedited version of the image ...
0
votes
1answer
116 views

ALAsset GPS Metadata does not match the exif GPS data

I am updating my app to allow photo uploads to included GPS metadata when using UIImagePickerControllerSourceTypeSavedPhotosAlbum. The GPS data's accuracy is very important. I am running into an ...
0
votes
3answers
234 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
52 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
228 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 ...
1
vote
0answers
76 views

Display an ALAsset using QLPreviewController

I'm wanting to use QLPreviewController to display ALAssets from the Photo Stream QLPreviewController needs an NSURL to display the item This works great when it is a File URL such as ...
0
votes
1answer
114 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 ...
1
vote
1answer
166 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 ...
0
votes
1answer
79 views

Leaked Objects: ALasset and ALAssetPrivate

I am using Profile to find any memory leaks. I found 2 interesting leaks, which i can't understand: Leaked Object | Responsible Library | Responsible Frame ALAsset AssetsLibrary ...
0
votes
1answer
307 views

How can I avoid saving to camera roll an image picked from camera roll ? [iOS]

I can easily save to camera roll images taken with camera. But I don't want to save the image if this is chosen from the camera roll, because it will create a duplicate. How can I do the following ...
0
votes
0answers
218 views

ALAssetsGroup, how to check if exists?

I have my ALAssetsGroup object. For example: ALAssetsGroup *_someGroup. But user can send the application to background and delete this album. Is there any check if assetsGroup is proper? ...
1
vote
1answer
79 views

Remove image from custom photo album

Is there a way to remove an image from a custom photo album? I don't want to permanently delete the asset from the phone but just simply disassociate x image from x album. I am trying to build an ...
1
vote
0answers
120 views

video file could not be opened. The movie's file format isn't recognized

I am trying to create a video file from images given by image magick library one by one after applying some effects like opacity difference and it created successfully but the Quick time player gives ...
2
votes
1answer
123 views

ALAsset not editable

For some reason the editable property for an ALAsset object is always set to false in the following code: ALAsset *testAsset = [[ALAsset alloc] init]; if(!testAsset.editable) { NSLog(@"This ...
3
votes
1answer
466 views

Properly crop an image obtained from the photo library

I've been working on this all day, and have looked at lots of questions here on SO and google, but so far I can't come up with anything quite right. I have taken a photo on an iPad running iOS 5.1.1 ...
0
votes
0answers
58 views

iOS: how to retrieve all photos by custom criteria? (for example: by country)

I am trying to retrieve and display all user photos by a criteria. Typically like: get all photos which user took in France for example. So the first solution come to my mind is using CLGeocoder to ...
0
votes
4answers
320 views

Feel lag when scroll and sametime load full screen image from asset in background thread

Here is the thing: I have a scroll view, it did the lazy load for full screen image of user's photo: [self.assetsLibrary assetForURL:[NSURL URLWithString:[[self.assets objectAtIndex:index] ...
0
votes
3answers
219 views

Getting Image From AlAsset Crashing my App

I have this code in my app: [[self assetsLibrary] assetForURL:info.media.url resultBlock:^(ALAsset *asset) { ALAssetRepresentation *rep = [asset defaultRepresentation]; CGImageRef img = [rep ...
1
vote
2answers
80 views

How can I load a section of an image in iOS, without loading the entire contents in to memory?

I am using a table view with varying cell sizes which hold an image. Since it's varying size, I use the ALAsset fullScreenImage at times to get higher resolution than the cached thumbnails. However, ...
-1
votes
1answer
178 views

I want to convert AlAsset object to nsstring to store it in database

I am trying to store a copy of the data in an AlAsset into my database as the URL of an image retrieved from my photo library. To do this, I'd like to convert it into an NSString, but I'm not sure ...
0
votes
0answers
98 views

ALAssets imported with Camera Connection Kit show black bars in thumbnails (wrong aspect ratio). Any workaround?

I display albums and photos in my app using the ALAsset aspectRatioThumbnails. This looked fine until I imported some photos through the camera connection kit on the iPad Mini (iOS 6.0.1). Both ...
0
votes
0answers
221 views

How to add an ALAsset to the Photo Stream?

I tried to add an ALAsset to the Photo Stream, but it looks like this is not possible. Any suggestions? I tried the following: typedef void(^SaveImageCompletion)(NSError* error); ...
0
votes
1answer
123 views

ALAssetLibrary for audio

I am trying to load all the files(audio, video and images) in my application using ALAssetLibrary by this piece of code: ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init]; [library ...
1
vote
1answer
212 views

Using ALAsset photo in UIWebView img tag

I am able to successfully look up an image from the ALAssetsLibrary and use the UIImage in native views. Is it possible to use that same asset's url (for example: ...
0
votes
0answers
198 views

ALAssetPropertyDate does not return asset creation date

I have some confusions about ALAssetPropertyDate and kCGImagePropertyExifDateTimeDigitized, kCGImagePropertyExifDateTimeOriginal, kCGImagePropertyTIFFDateTime from metadata of ALAsset. I save the ...
0
votes
1answer
67 views

Best way to assign a property to an ALAsset?

What would be the best way to assign a property to an existing class? I have an existing array of ALAssets, and would like to assing a boolean as property to each asset. I could subclass, but then I ...
0
votes
2answers
249 views

Is it possible to create an ALAsset object from NSData or other image type (CFImageRef, CIImage, UIImage)? [closed]

Is it possible to create an ALAsset object from NSData or other image type (CFImageRef, CIImage, UIImage)? I don't want to save all of my applications images to the camera roll, but I want to be ...
0
votes
1answer
60 views

Reorder ALAssets

Does anyone know how to reorder assets in the assets library? Does ALAsset have something like an order property that I can use to change the order of the asset? What is the default ordering when I ...
2
votes
1answer
124 views

capturing event of a photo click in code: iPhone

I want to create an environment similar to the photo streaming in iCloud. When my app is in background, can I get the events of user clicking photos through the Camera app of iPhone? A sample code ...
1
vote
2answers
134 views

IOS 5: Using Asset Object loaded in UITableView to display in another ViewController using StoryBoard

Edited: From my earlier question (below), I have a handle on my assets (video) and I also have an implementation of my PlayVideoViewController but I am stuck on how to pass this asset to the ...
1
vote
1answer
476 views

how to get the physical path to the ALAsset object

Is there a way to turn the asset url returned by the following call to the physical path on the device? NSURL *assetUrl = [_selectedAsset defaultRepresentation] url];
0
votes
0answers
98 views

How copy video to a temporary directory using ALAsset URL? [duplicate]

Possible Duplicate: Getting video from ALAsset I have an user selected video referenced by an ALAsset instance, now I want to copy that video to a temporary directory, is it possible to do ...
1
vote
2answers
234 views

fetching photo alassetlibrary asset representation size zero

When I am fetching photos using the ALAssetLibrary, for some images, the AssetRepresentation.size comes zero, which does not make the image, on my ImageView. Here is the code: ALAssetsLibrary ...
0
votes
0answers
74 views

Is it the only way to read out medium in camera roll use ALAsset?

I want to show sorted medium in camera roll, so I can't use UIImagePickerController to show pictures. I use ALAsset instead, but user will add picture into camera roll dynamically. So I have to ...
8
votes
2answers
982 views

Generating custom thumbnail from ALAssetRepresentation

My main problem is i need to obtain a thumbnail for an ALAsset object. I tried a lot of solutions and searched stack overflow for days, all the solutions i found are not working for me due to these ...
0
votes
1answer
511 views

ALAsset thumbnail at specific timestamp

I'm working working on an iPhone application for uploading video files to a specific platform, and one feature I would really love is to be able to present, say, ten different thumbnails for the same ...
0
votes
1answer
117 views

How to prevent ALAssetsLibrary enumerateGroupWithTypes:usingBlock:failureBlock from dismissing modal?

The first time an app is run on the iPad when accessing ALAssetsLibrary you get the standard alert "'Appname' Would Like to Use Your Current Location. This allows access to location information in ...
1
vote
1answer
1k views

send URL of assets-library to MPMoviePlayerController

I want to play movie from assets-library. I get a ALAsset from camera roll, then send its URL to MPMoviePlayerController: xxxViewController *SelectVC = [[xxxViewController alloc] initWithContentURL: ...
2
votes
1answer
314 views

How to update exif of ALAsset without changing the image?

I use setImageData:metadata:completionBlock: of ALAsset to update the exif(metadata) of an asset. I just want to update the metadata, but this method require an imageData as the first parameter. I ...
0
votes
1answer
355 views

iOS: How to load a portion of a larger file for uploading?

I am working with large instances of ALAsset and I am trying to split the asset up into smaller chunks for uploading. What is a good approach to split a large file up into smaller chunks without ...
0
votes
1answer
190 views

Are “PixelHeight” and “PixelWidth” always present on ALAssetRepresentation metadata?

I have noticed that, for images, the dictionary ALAssetRepresentation.metadata contains a couple of keys named "PixelHeight" and "PixelWidth". My question is: is there a guarantee that these keys will ...
1
vote
1answer
506 views

defaultRepresentation fullScreenImage on ALAsset does not return full screen image

In my application I save images to an album as assets. I want also to retrieve them and display them in full screen. I use the following code : ALAsset *lastPicture = [scrollArray ...

1 2 3