Thumbnails are reduced-size versions of pictures, used to help in recognizing and organizing them, serving the same role for images as a normal text index does for words.
Questions tagged [thumbnails]
3149 questions
38
votes
11 answers
How to display Woocommerce Category image?
I use this code in PHP:
$idcat = 147;
$thumbnail_id = get_woocommerce_term_meta( $idcat, 'thumbnail_id', true );
$image = wp_get_attachment_url( $thumbnail_id );
echo '
';
Where 147 is the…

MrRoman
- 793
- 2
- 7
- 17
37
votes
2 answers
How do I get Facebook to show my site's logo when I paste the link in a post/status/comment?
Facebook sometimes does this really neat thing where they show a thumbnail preview of a website you link to in a status update. It is usually the website's logo.
I'm wondering what the trick is to get this to work for my site, so if I were to share…

Hristo
- 45,559
- 65
- 163
- 230
35
votes
9 answers
Creating thumbnails from video files with Python
I need to create thumbnails for a video file once I've uploaded to a webapp running python.
How would I go about this... I need a library that can basically either do this for me, or that can read the image frames out of video files (of several…

Alterlife
- 6,557
- 7
- 36
- 49
34
votes
5 answers
HTML : Is there any way to show images in a textarea?
So I want to show image thumbnails too in the

Adam Halasz
- 57,421
- 66
- 149
- 213
32
votes
9 answers
Is it possible to Generate a thumbnail from a video url in android
I am working on a video app. I am streaming a video from server link , is it possible for me to generate a video thumbnail from the URL without downloading the video.

DKV
- 1,767
- 3
- 28
- 49
32
votes
4 answers
Carousel with Thumbnails in Bootstrap 3.0
I need to make Bootstrap 3.0 Carousel to display a slide of thumbnails. How can I do this?
This is an image of what I´m looking for:
This is a working example for Bootstrap 2, but I need this for Bootstrap 3.0.: Bootstrap Thumbnail Slider

Martín
- 3,105
- 7
- 25
- 43
30
votes
4 answers
PHP image resize on the fly vs storing resized images
I'm building a image sharing site and would like to know the pros and cons of resizing images on the fly with PHP and having the resized images stored.
Which is faster?
Which is more reliable?
How big is the gap between the two methods in speed…

Pablo
- 5,897
- 7
- 34
- 51
29
votes
9 answers
Create thumbnail from a video url in IPhone SDK
I am trying to acquire a thumbnail from a video url. The video is a stream (HLS) with the m3u8 format.
I've already tried requestThumbnailImagesAtTimes from the MPMoviePlayerController, but that didn't work. Does anyone have a solution for that…

MrCoinSiX
- 571
- 1
- 6
- 13
28
votes
2 answers
Extract thumbnail for any file in Windows
What's the most efficient way of extracting thumbnails from any file, not just just images at varying sizes?
I've looked all over, most promising of which was Windows API ShellFile yet this didn't appear to install properly. I'm using windows 7.

matinau
- 305
- 1
- 3
- 10
28
votes
3 answers
How can I set height for Twitter bootstrap thumbnails?
I’m having trouble setting up the Thumbnail module for my personal website. I use twitter bootstrap (3.0) for my project and I can’t finish setting up the Thumbnail module.
The width is okay, but I can’t set the height of thumbnails (I can’t align…

Ion Ungurean
- 283
- 1
- 3
- 5
28
votes
4 answers
Share on Facebook - Thumbnail not showing for the first time
https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.frcc.us%2F1197%3Fv%3D3422%26f%3D5
You should see it has thumbnail now. But every time I post a new link from my website (configured like the above example), the thumbnail won't show up…

user2503176
- 291
- 1
- 3
- 5
26
votes
9 answers
Get thumbnail Uri/path of the image stored in sd card + android
SDK version - 1.6
I am using following intent to open android's default gallery:
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
…

mudit
- 25,306
- 32
- 90
- 132
25
votes
5 answers
UIImagePickerController thumbnail of video which is pick up from library
I am trying to get the thumbnail of the video which is pick up from library using the UIImagePickerController.
Here is my code. I can get the the thumbnail of video if I using the camera to record a video. But I can not get the thumbnail if I pick…

Gargamal
- 283
- 1
- 4
- 7
24
votes
2 answers
How do I add a custom thumbnail to a .mp4 file using ffmpeg?
I am trying to find the proper ffmpeg command to add a .png or .jpg image to a .mp4 video as a thumbnail. The command will eventually automatically be executed by a C# program.
This is what I have so far:
# This does not work. It only removes the…

cooder_one
- 301
- 1
- 2
- 11
24
votes
5 answers
Create thumbnail image for PDF in Java
I'm looking for a Java library that will can take a PDF and create a thumbnail image (PNG) from the first page.
I've already looked at JPedal, but its insane licensing fee is completely prohibitive. I am using iText to manipulate PDF files at the…

Shaggy Frog
- 27,575
- 16
- 91
- 128