Where to store images

  • Thread starter Thread starter carlos.cruz
  • Start date Start date
C

carlos.cruz

Hi,

If I want to associate an image to a database record which is the best way
to store it. In a database field or in a folder (as a file) ?
Can I change the dimension or resolution of an image file (JPG) in code?
Could anyone tell me where to start (sample code or URLs)?

Thanks
CC
 
it's better in a file format (faster

yes you can change the dimension in the cod

----- (e-mail address removed) wrote: ----

Hi

If I want to associate an image to a database record which is the best way
to store it. In a database field or in a folder (as a file)
Can I change the dimension or resolution of an image file (JPG) in code
Could anyone tell me where to start (sample code or URLs)

Thank
C
 
You posted these links regarding rendering images stored in image type
columns in a web form. Using the Response.BinaryWrite() method, I can only
render to an emplty browser window. Can you offer any assistance rendering
images into a specific area of a web form, perhaps using an image web
control embedded in a data list? I'd like to have control over the position
and size of the image.

Thanks


--
Paul Turley, MCSD, MCDBA, MCAD, MSF, MCT, ITProject+, A+
www.scout-master.com
Atila B. said:
Filesystem is faster, but in your case, you can also store images as blobs
in the database, and this might work out better for you. Performance can be
optimized by using Output Caching, among other methods.
 
Back
Top