Photos in My Database

G

Guest

I am building a database which has photos(OLE Object) in it as an employee and thier pictures, this database will include more than 500 photos. So far I have put 6 small size pictures and the size of the file reached more than 11 Mb, so if any body know a way to include these photos and not making my file very very larg.
 
A

Allen Browne

As you found, using an OLE Object to embed photos is not workable.

Instead, use a Hyperlink field to store a link to the photo. If you are not
familiar with Hyperlink fields, see:
http://allenbrowne.com/casu-09.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.

esm said:
I am building a database which has photos(OLE Object) in it as an employee
and thier pictures, this database will include more than 500 photos. So far
I have put 6 small size pictures and the size of the file reached more than
11 Mb, so if any body know a way to include these photos and not making my
file very very larg.
 
J

John buckett

-----Original Message-----
I am building a database which has photos(OLE Object) in
it as an employee and thier pictures, this database will
include more than 500 photos. So far I have put 6 small
size pictures and the size of the file reached more than
11 Mb, so if any body know a way to include these photos
and not making my file very very larg.

Convert the photos to jpeg, then they will only be about
25 kbytes each.
 
D

Douglas J. Steele

John buckett said:
it as an employee and thier pictures, this database will
include more than 500 photos. So far I have put 6 small
size pictures and the size of the file reached more than
11 Mb, so if any body know a way to include these photos
and not making my file very very larg.

Convert the photos to jpeg, then they will only be about
25 kbytes each.

Actually, unless you take care when you load them, that's not true. Stephen
Lebans has sample code that uses the Intel Jpeg library to avoid bloat.
However, unless you use that approach, even a Jpeg is going to create severe
bloat.

The sample imaging databases at http://accdevel.tripod.com illustrate three
approaches to handling images in Access, and the download includes an
article discussing considerations in choosing an approach. Two of the
approaches do not use OLE Objects and, thus, avoid the database bloat, and
some other problems, associated with images in OLE Objects.

If you are printing the images in reports, to avoid memory leakage, you
should also see MVP Stephen Lebans' http://www.lebans.com/printfailures.htm.
PrintFailure.zip is an Access97 MDB containing a report that fails during
the Access formatting process prior to being spooled to the Printer Driver.
This MDB also contains code showing how to convert the contents of the Image
control to a Bitmap file prior to printing. This helps alleviate the "Out of
Memory" error that can popup when printing image intensive reports.
 
E

Exponent

Using OLE Embedding to store compressed images can cause a huge overhead - we've seen as much as 200 *times*
the size of the original file.

If you want to store the images inside the database, store just the raw-binary (blob) data to avoid this
and other problems with OLE Embedding.

Alternatively, instead of storing the image inside the database store it as an external file and reference
this file in your forms/reports etc.

More info on this, with a comparison of techniques etc, is available here:

http://www.ammara.com/articles/imagesaccess.html
http://www.ammara.com/acctech.html

--
_______________________________________________________
http://www.ammara.com/
Image Handling Components, Samples, Solutions and Info
DBPix 2.0 - lossless jpeg rotation, EXIF, asynchronous



=?Utf-8?B?ZXNt?= said:
I am building a database which has photos(OLE Object) in it as an employee and thier pictures, this database
will include more than 500 photos. So far I have put 6 small size pictures and the size of the file reached
more than 11 Mb, so if any body know a way to include these photos and not making my file very very larg.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top