Questions tagged [photo-gallery]

For questions relating to image galleries

For questions relating to image galleries - multiple images displayed to the user.

589 questions
8
votes
3 answers

Google+ style tiled photo gallery

Has anyone seen a javascript library that will generate a photo gallery similar to the way Google+, and now Facebook, organizes photos where some are cropped, but the all seamlessly fill a space. Something like this:
Salsero69
  • 2,160
  • 3
  • 23
  • 27
8
votes
5 answers

Invariant Violation: requireNativeComponent: "FastImageView" was not found in the UIManager in react native

When I'm writting this code error is showing please let me know, Where i'm worng? import React, { Component } from 'react'; import { StyleSheet, Text, View, TouchableOpacity, FlatList, Modal, } from…
Manoj
  • 113
  • 1
  • 1
  • 7
8
votes
1 answer

How do I programmatically access the facial recognition cache in Windows Live Photo Gallery with SQL?

I'm not talking about the "people tags" embeded in the XMP packets of JPEGs. I'm talking about the face database used to recognize new faces. I want to add to my program the option to recognize faces using the already trained database of WLPG. I…
8
votes
2 answers

iOS photo extension finishContentEditingWithCompletionHandler: Unable to Save Changes

My photo extension app has access to both Camera and Photos. All is ok, but when pressing Done, it can not save image. Code of standard completion handler: - (void)finishContentEditingWithCompletionHandler:(void (^)(PHContentEditingOutput…
olha
  • 2,132
  • 1
  • 18
  • 39
8
votes
2 answers

how to update gallery after moving photo programmatically?

I am moving photo from on directory to another using following code File oldfile= new File(originalImagePath); File newfile=new File(newImagePath); boolean d=oldfile.renameTo(newfilee); if(d){ sendBroadcast(new…
kiran boghra
  • 3,662
  • 2
  • 18
  • 23
7
votes
1 answer

Phonegap selecting multiple images from gallery/camera

I'm using the latest version of Phonegap and trying to build an app where users can select and upload multiple images from their gallery. Problem is, users may need to select tons of images, similar to the facebook app. Does phonegap allow this, or…
ShoxV
  • 93
  • 1
  • 1
  • 5
7
votes
2 answers

How to send a photo to my app from default iOS Camera app?

I know my app can read the photos saved in iOS photo-library; also my app can save a new photo in the default iOS photo-library. But what I am trying to achieve is something like this: the default Photos app should be able to send a photo to my iOS…
Prabu Arumugam
  • 1,929
  • 2
  • 15
  • 19
6
votes
4 answers

Use the UIImagePickerController on a iphone simulator

I have the method, that take photos from gallery or from the camera -(IBAction) getPhoto:(id) sender { UIImagePickerController * picker = [[UIImagePickerController alloc] init]; picker.delegate = self; if((UIButton *) sender ==…
6
votes
5 answers

How to display 'Camera Roll' directly using ImagePickerController

I want to directly open the 'Camera Roll' album using the imagePickerController instead of showing all 3 albums (camera roll, photo library, last import). Is there any way to do that?
Zhen
  • 12,361
  • 38
  • 122
  • 199
6
votes
1 answer

How can i access the photo from gallery using Photo framework in objective c

I am new on Photo framework i don't know how to use it. I have use many link but i have confused how to display image in imageview. I want to get the all photo from gallery using photo framework i am trying NSMutableOrderedSet…
sohil
  • 818
  • 2
  • 15
  • 38
6
votes
1 answer

What software libraries are available to programmatically create photomosaics?

I'm looking for a library to programmatically create photomosaics of pictures of my kids... it's a toy side project. I'm on Windows and would prefer a windows-based solution, be it Java or something else that I could run from the Java platform (even…
marc esher
  • 4,871
  • 3
  • 36
  • 51
6
votes
1 answer

how to open bitmap in gallery in android

Hi I want to open image in gallery, below is my code mImageView.setImageBitmap(AppUtil.getBitmapFromFile(obj.getImageUrl(), 200, 200)); mImageView.setOnClickListener(new OnClickListener() { @Override public void onClick(View…
Raja
  • 161
  • 1
  • 11
5
votes
2 answers

How to get thumb image from Photolibrary image?

Currently i am fetching memory issue because i am loading direct image in Flatlist of React Native. Issue is that due to high resolutions images memory limit reached and app get crashed on iPhone. Is there any way i can fetch direct thumb url like…
Nilesh Kikani
  • 2,628
  • 21
  • 37
5
votes
2 answers

Paperclip path/url using values of an object

I've been playing around with using Paperclip to build a photo gallery/store. A Gallery has many Photos, and a Photo belongs to a Gallery, and Users can have many Galleries. The paperclip defaults do something like…
Josh Kovach
  • 7,679
  • 3
  • 45
  • 62
5
votes
4 answers

Android pick image from gallery not working (Android 6.0 & Android 5.1.1)

I'm using the code below to pick an image file from device gallery: First I call this piece of code: Intent i = new Intent(); i.setType("image/*"); i.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(i, "Select…
user19922
  • 175
  • 1
  • 3
  • 12
1
2
3
39 40