Welcome Guest! To enable all features, please Login or Register.

Notification

Icon
Error

Options
View
Last Go to last post Unread Go to first unread post
#1 Posted : Friday, July 30, 2010 2:57:01 AM(UTC)

k3nn  
k3nn

Groups: Registered
Posts: 17


Hi, I can't seem to find info on how to get the file image info (pixelwidth/number of colors/etc) without loading it into a rasterimageviewer. This takes unnecessary cycles, is there a way to get the info from just the file headers and read them without loading? can u give sample for Tiff images? thanks.
 

Try the latest version of LEADTOOLS for free for 60 days by downloading the evaluation: https://www.leadtools.com/downloads

Wanna join the discussion? Login to your LEADTOOLS Support accountor Register a new forum account.

#2 Posted : Sunday, August 1, 2010 2:45:19 AM(UTC)

Basel  
Guest

Groups: Guests
Posts: 3,022

Was thanked: 2 time(s) in 2 post(s)

You can use CodecsImageInfo Class to get some information about images supported by LEADTOOLS without loading them.
Some of the properties you can get:
- BitsPerPixel
- ColorSpace
- Compression
- HasAlpha
- SizeDisk

Here's a sample:
CodecsImageInfo imageInfo = codecs.GetInformation(srcFileName, true);
int i = imageInfo.BitsPerPixel;

For more information please see the help topic "CodecsImageInfo Class" in our .NET help file.
 
#3 Posted : Sunday, August 8, 2010 8:12:53 PM(UTC)

k3nn  
k3nn

Groups: Registered
Posts: 17


Thanks much Basel, it's working great.
 
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Powered by YAF.NET | YAF.NET © 2003-2024, Yet Another Forum.NET
This page was generated in 0.095 seconds.