thumbnail

CFPDF thumbnail problem not showing background/images

I have 2 pdf's i'm running through CFPDF action="thumbnail". The first pdf returns a perfect looking thumb. The second returns a thumb with only the text and background colors, but NO background or foreground images. I didn't create these PDF's, I can't tell a difference in the two. Here's the code, simplified for testing purposes: <c...

UsingWebBrowser control in ASP.NET application

I want to create site thumbnails through my web application, so I thought I would use the WebBrowser control. However, I get an error: System.Threading.ThreadStateException: ActiveX control '8856f961-340a-11d0-a96b-00c04fd705a2' cannot be instantiated because the current thread is not in a single-threaded apartment. I tried settin...

"How to get the Google video's thumbnail image ? " in PHP or Javascript ?

I want to use the thumbnail of the Google video's. In PHP or JavaScript function function getScreen( url, size ) { if(url === null){ return ""; } size = (size === null) ? "big" : size; var vid; var results; results = url.match("[\?&]v=([^&#]*)"); vid = ( results === null ) ? url : results[1]; if(size == "small"){ return "htt...

Upload Custom Thumbnail to Sharepoint Image library

Hi, I've got a webpart to upload images to a SharePoint image library, and SP does the thumbnail generation automagically. I'd like to give my users the options of uploading their own thumbnails, without SP doing it for them. Any thoughts how to do this? I do know that SP will store the thumbnails in a folder /_t in the library, but I...

Attachment_Fu thumbnail width

Any ideas on how to get the width and height of the thumbnail image? photo.width returns the original photos width. I am storing the width of the thumbnail in the database, I'm just not sure how to access that object. Doesn't work: <%= image_tag photo.authenticated_s3_url(:medium), :width => photo.width, :he...

How does Bing.com create enlarged thumbnails?

When I search images using Bing.com, I realize their images are well cropped and sorted. When you place your mouse on an image, another window will pop up with an enlarged image. http://www.bing.com/images/search?q=Heros&amp;FORM=BIFD# I want to do the same thing in my program. I checked the source code of their page. They are using ja...

Facebook Post Link Image

When someone posts a link on facebook, a script usually scans that link for any images, and displays a quick thumbnail next to the post. For certain URLs though (including mine), FB doesn't seem to pick up anything, despite their being a number of images on that page. I read up that FB prefers the "image_src" rel tag for the image the ...

Displaying thumbnail icons 128x128 pixels or larger in a grid in ListView

Original Question (see Update below) I have a WinForms program that needs a decent scrollable icon control with large icons (128x128 or larger thumbnails, really) that can be clicked to hilight or double clicked to perform some action. Preferably there would be minimal wasted space (short filename captions might be needed below each ico...

Creating thumbnails from a swf file in php?

Hi all, I'm looking for a script that will generate jpg thumbnails on the fly (in php) from a swf file. Does anyone know where I can find something like this? ...

Get video first frame in javascript

How can I get the first frame of a video file in javascript as an image? ...

codeigniter photo thumb create and upload...

hi friends... it gives blank screen :/ it uploads first image, thats fine. than it call _create_thumbnail and it gives blank screen at line "$this->image_lib->resize()" :/ any idea what can be the problem? Thanks!! /** * ================================================================== * Upload photo * * Thumb = 210px - 16...

ffmpeg image creation

hi im using ffmpeg in my server and every thing is working fine except one that the image(thumbnail) creation im using this script /usr/bin/ffmpeg -i /var/www/test/test.flv -deinterlace -an -ss 13.45 -t 00:00:05 -r 0.01 -y -s 120x72 -vcodec mjpeg -f mjpeg /var/www/test/test.jpg is there any problem...

Create thumbnails in C++

Wondering if anyone knows how to create thumbnails in C++ from NITF 2.1 images ...

Hiding the type tag/badge/extension in OS X thumbnails generated via Quick Look?

We are writing a Quick Look generator to create custom thumbnails for PDF files - not a preview of the document, but something else. These thumbnails display text that in Finder is currently partially covered with a "PDF" string (Type tag? Type badge? I don't know what it's called officially) and the turned corner effect, as can be seen ...

Create a new image on the file system from System.Drawing.Image?

Ok, I'm sorry, this is probably a noob question but I'm kinda stuck. So what I'm doing (on my asp.net application) is loading an image from the file system: System.Drawing.Image tempImage; tempImage = System.Drawing.Image.FromFile(HttpContext.Server.MapPath(originalPath)); Then I do some resizing: tempImage = my awesomeResizingFunct...

php: take a thumbnail from a quicktime (movie) file

Does someone know if it's even possible (in PHP) to take a frame/thumbnail from a quicktime movie on the server? Something like the usual GD thumbnail generation, but for .mov files. thanks! note: I'm using dreamhost, so I don't have more than web-panel access to the server. ...

Create pdf thumbnail with C#

What would be the best method to create thumbnails generated from supplied pdf's using C#? The solution would have to run on Windows Server 2008 and will ultimately be ported to Azure. ...

How to get thumbnail image of video?

file format is wmv, asx,flv, mov, rmv, rmvb, swf, mpg, mpeg. How to get thumbnail image while video uploading , if: not use ffmpeg. ...

Is there any sample code to read thumbnail from Jpeg exif header?

I am writing application using c++, in windows. I want to get a thumbnail from jpeg, without decoding the whole image. How Can I read thumbnail from jpeg exif header? Can any one offer me a some sample code? Many thanks! ...

Create Thumbnail from url using asp.net 2.0

Can any one help me on how to create a thumbnail from a url. when the user saves a link, i want to show the screenshot of the web page as a thumbnail i am using asp.net 2.0 Thank You ...