Questions tagged [image-gallery]

An image gallery is set up to display multiple images. They can be basic or creative. Basic ones often have a grid layout with all of the images showing at once. More creative ones are often created using javascript and css3 and include animations and transitions.

An image gallery is set up to display multiple images regardless of the platform. They can be basic or creative. Basic ones often have a grid layout with all of the images showing at once. More creative ones are often created using javascript and css3 and include animations and transitions.

1373 questions
141
votes
15 answers

Select multiple images from android gallery

So basically what i am trying to achieve is opening the Gallery in Android and let the user select multiple images. Now this question has been asked frequently but i'm not satisfied with the answers. Mainly because i found something interesting in…
Dion Segijn
  • 2,625
  • 4
  • 24
  • 41
119
votes
9 answers

android get real path by Uri.getPath()

I'm trying to get image from gallery. Intent intent = new Intent(); intent.setType("image/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(intent, "Select picture"), resultCode ); After I returned from…
davs
  • 9,226
  • 8
  • 41
  • 54
56
votes
13 answers

Android get image from gallery into ImageView

I'm trying to add a photo from galery to a ImageView but I get this error: java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=Intent { dat=content://media/external/images/media/1 }} to…
user1378505
  • 563
  • 1
  • 4
  • 5
42
votes
5 answers

How to get the Correct orientation of the image selected from the Default Image gallery

I have gone through some of the links to get the correct image orientation of the image selected from the default image gallery to be worked standard in all devices the exif tag always returns 0. EXIF orientation tag value always 0 for image taken…
33
votes
5 answers

Best Static Photo Gallery Generator

There are a lot of static website generators out there, but most of them seem rather text-oriented (to my knowledge). What are the best image gallery static website generators? ( Note: I realize that a more general form of this question has been…
alexbw
  • 2,028
  • 2
  • 21
  • 25
20
votes
2 answers

Fancybox 2 visible navigation arrows

Is it possible with Fancybox 2.0 to always keep the image gallery navigation arrows visible? Rather than just visible on hover.
Richard Hartle
  • 227
  • 1
  • 3
  • 8
17
votes
4 answers

Android: Intent.EXTRA_ALLOW_MULTIPLE allows only single picking

I want to open multiple images from the Android gallery using "Intent.EXTRA_ALLOW_MULTIPLE" intent filter: if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) { final Intent intent = new Intent(Intent.ACTION_GET_CONTENT); …
Hyndrix
  • 4,282
  • 7
  • 41
  • 82
15
votes
1 answer

Android Image Picker Select multiple images from gallery with a maximum limit of 5

I have an app where the user needs to be able to choose multiple pictures to send them somewhere. However, they can only send five images at a time. I need to be able to limit the number of images that they can pick from the gallery through the…
Alex K
  • 8,269
  • 9
  • 39
  • 57
13
votes
5 answers

Is there a way to create a simple static image gallery in nginx without any third-party utilities?

I just want to be able to share a link to several images at once.
squirrel
  • 5,114
  • 4
  • 31
  • 43
13
votes
4 answers

how to Calculate whether an image is landscape or portrait

I am creating an image gallery with jquery. Is there any possibilities to Calculate whether an image is landscape or portrait using jquery? Thanks for your support.
geovani075
  • 369
  • 1
  • 2
  • 12
12
votes
5 answers

How to implement Image Gallery in Gridview in android?

I have a requirement in that I want to implement an image gallery with a GridView. I tried using Hello gallery on the Android developer website. But the GridView doesn't work.
Kruti Mevada
  • 517
  • 5
  • 7
  • 21
12
votes
4 answers

Scan barcode from an image in gallery android

I'm creating a android project, main feature is scan barcode. I'm tried integrate with Zxing library into my project, and it's work fine. However, it's seems not support scan barcode from an available image in gallery of android devices. How i can…
MrSiro
  • 281
  • 1
  • 4
  • 16
12
votes
5 answers

Bootstrap 3 CSS image caption overlay

I use bootstrap and having a problem to overlay caption over an image, the caption div just cannot fit within the box, as shown below: HTML:
conmen
  • 2,377
  • 18
  • 68
  • 98
11
votes
4 answers

iPhone image gallery

I am looking for a simple picture gallery for iPhone (photo viewer). I was using EasyGallery on iOS 4 and I am having some issues with this gallery under iOS 5. The Gallery from Three20 is too complex for me and has a lot of Features I do not need…
jcdmb
  • 3,016
  • 5
  • 38
  • 53
11
votes
6 answers

iPhone-like navigation dots for Android

I have to create an image gallery that navigation dots like the iPhone gallery. Check out the screenshot. I need such a widget, look at the white dots: Is there any widget available in Android that includes navigation dots? If not, how can I…
Venky
  • 11,049
  • 5
  • 49
  • 66
1
2 3
91 92