Results 1 to 3 of 3
Thread: Retrieve File Thumbnail
- 10-10-2011, 04:47 PM #1
- Join Date
- Aug 2011
- Location
- Pretoria, South Africa
- Posts
- 27
- Blog Entries
- 4
- Rep Power
- 0
Retrieve File Thumbnail
I'm trying to get the thumbnail of a Directory, whether it is a file or a folder.
I have this code and works 100%
only problem is it retrieves a 16X16 icon and when I need to draw this image on a bigger scale its all pixelated and look like the the 60's....Java Code:ImageIcon img=(ImageIcon)FileSystemView.getFileSystemView().getSystemIcon(new File(fileName));
so i was just wondering if there is a better way of retrieving the icon of a file and that's a bit bigger than 16X16
Last edited by DuvanSlabbert; 10-10-2011 at 04:52 PM.
- 10-10-2011, 11:36 PM #2
- Join Date
- Aug 2011
- Location
- Pretoria, South Africa
- Posts
- 27
- Blog Entries
- 4
- Rep Power
- 0
Re: Retrieve File Thumbnail
ok, been searching high and low... even try to search for extracting icon from file in java and it seems like this is a dead subject... like not allot of ppl have tried this and seems to get it in working order.... so now I think the next question would be, how does the FileSystemView even get the file icon that is 16X16, maybe if we can figure that out we would be able to improve on that to get a bigger icon...
- 10-11-2011, 03:17 PM #3
- Join Date
- Aug 2011
- Location
- Pretoria, South Africa
- Posts
- 27
- Blog Entries
- 4
- Rep Power
- 0
Re: Retrieve File Thumbnail
I have been battling
with this subject and reading up on allot of stuff... seems like its just not possible yet with Java
.
so for now my answer would be to stay at
If you guys can get a better way on this matter, please let me know.Java Code:Image icn=((ImageIcon)FileSystemView.getFileSystemView().getSystemIcon(new File(fileName))).getImage(); icn = icn.getScaledInstance(32,32,Image.SCALE_SMOOTH);
Similar Threads
-
thumbnail display timing
By gatensbury in forum AWT / SwingReplies: 14Last Post: 07-30-2011, 12:44 AM -
Retrieve file
By mine0926 in forum NetBeansReplies: 2Last Post: 06-03-2011, 04:47 AM -
retrieve OS architecture
By jitheshmenon in forum Advanced JavaReplies: 4Last Post: 08-21-2010, 06:52 PM -
retrieve file containg image from database
By rajeshwari_ib in forum Advanced JavaReplies: 5Last Post: 12-15-2009, 09:10 AM -
How to update the large amount of thumbnail images in background process
By Theesh in forum AWT / SwingReplies: 3Last Post: 11-10-2009, 10:24 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks