Questions tagged [gallery]

Gallery is a collection of photos in a software system

A photo gallery is a GUI allowing users to view pictures from their local file system or network shared files. Galleries usually include features to manage and edit files, as well as print or upload them. Often times galleries allow the user to click arrows on the left and right edges of the viewer to select the previous and next photos within the files. There are many different photograph viewing programs available for multiple operating systems.

3768 questions
10
votes
4 answers

Floated thumbnail gallery, different sizes, how to handle?

When simply doing float:left to all thumbnails of the same size, a gallery looks great. But when different size thumbnails come in to play, that is no longer the case. What is the best way to handle different size thumbnails? Do I need to use…
user429620
10
votes
2 answers

I need to configure CORS in s3 bucket the code I have isn't a valid JSON

I am trying to make a photo gallery from my s3 photo bucket. the next step in my process is to configure CORS but when I use the code provided I get an error. Can someone please explain what I am doing wrong or how to change the code to valid…
Skyler James Fagan
  • 101
  • 1
  • 1
  • 4
10
votes
5 answers

jquery move elements into a random order

I am attempting to display a series of images in a random order. However, I do not want any single item to repeat until all items have been shown, so instead of selecting a random image from the array, I want to take the entire array, randomize it,…
mheavers
  • 29,530
  • 58
  • 194
  • 315
10
votes
4 answers

UIImagePickerController crashes in iPad

-(IBAction)selectPressed:(id)sender { UIImagePickerController *picker = [[UIImagePickerController alloc] init]; picker.delegate = self; picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary; [self…
spe
  • 1,031
  • 6
  • 18
  • 24
10
votes
3 answers

Default Wordpress [gallery] not showing up in custom theme

Everything was fine, until recent updates. [gallery] is not showing images anymore, and it also looks like it is not contained in code. Here is the loop for page:
Ernest Sawyer
  • 360
  • 2
  • 13
10
votes
4 answers

Android: How to set the photo selected from gallery to a bitmap

I am asking the user for the access to the gallery through the code as a listener here: Intent photoPickerIntent = new Intent(Intent.ACTION_PICK); photoPickerIntent.setType("image/*"); startActivityForResult(photoPickerIntent,…
Kinoscorpia
  • 368
  • 3
  • 6
  • 18
10
votes
2 answers

Imageloader class creates lazylist folder in gallery. How to avoid it

I am using imageLoader class to load images from url. But those all images are storing in the gallery by a folder name called LazyList. It takes upto 40 -100 mb of memory. But I dont want to load that images since the users may feel discomfort.…
Kartheek Sarabu
  • 3,886
  • 8
  • 33
  • 66
10
votes
5 answers

How to create a Django image gallery

I am looking to create a portfolio using Django. I have tried using ImageField but it only allows me to upload and replace 1 photo. I am new to Python and Django programming. How would I create a model to upload multiple images and show them in a…
Carl W.
  • 573
  • 3
  • 8
  • 13
10
votes
2 answers

Retrieve a non cached Picasa image from Gallery. 3.0 and 4.0

My app is calling the gallery with an intent that looks like this: Intent intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(intent, SELECT_IMAGE_FROM_GALLERY); In…
9
votes
2 answers

Gallery onItemClick and onTouchEvent don't work together since android version 3.0

I have a Gallery, which has an OnItemSelectedListener and an OnItemClickListener. So I can move between the pictures, and if i click on one, something else happens (depends on which i had clicked). It worked fine before version 3.0, but from there…
9
votes
7 answers

TextView Within Gallery

i have scrollable TextView and Gallery when i enable the onTouchEvent() for the TextView, i cant navigate throught the Gallery and if i disable the onTouchEvent(), i can scroll right and left throught the Gallery but can't scroll up down into…
Mohammad Ersan
  • 12,304
  • 8
  • 54
  • 77
9
votes
9 answers

What's the best jQuery "click a thumbnail and change the main image" module?

Here's what I have (all generated dynamically, if that makes a difference) : A list of images A caption for each image A thumbnail for each image The page should load with one full-size image and all the thumbnails. When a user clicks a…
Eileen
  • 6,630
  • 6
  • 28
  • 29
9
votes
1 answer

Custom gallery view in android

I want to make custom gallery view in android where i have to show 3 images on screen following. while flinging on gallery view the images should look like in this pattern? I have also tried cover flow example after making some changes. that is…
Saurabh Pareek
  • 7,126
  • 4
  • 28
  • 29
9
votes
3 answers

get the path of a Gallery Folder in Android

I know how to programatically get a gallery image (one by one). Now that the gallery is organised folderwise Is there a way to select and get the path of a folder in the gallery view...
Abhishek Susarla
  • 578
  • 1
  • 6
  • 12
9
votes
5 answers

How to have scrolling animation programmatically

I'm trying to implement scroll animation for gallery programmatically. Tried with setSelection(int pos, Boolean animate) and it's not working. Is there anyway to override setSelection() method.
Samurai
  • 301
  • 1
  • 3
  • 8