Re: storing images

Поиск
Список
Период
Сортировка
От Adrian Tineo
Тема Re: storing images
Дата
Msg-id 004b01c2c84e$5f31d1e0$f8ddd8d9@supercable.es
обсуждение исходный текст
Ответ на storing images  (angelo.rigo@globo.com)
Ответы Re: storing images  ("scott.marlowe" <scott.marlowe@ihs.com>)
Список pgsql-php

>I am searching for tutorials to store and properly display images using
>php-postgresql!
>
>What data type must be the image collumn on my database?
>how can i display the images ?
>how can i control the size of the stored image?

To include large objects (like images) in the database you need to use
BLOBs, I think the type for postgresql is "bytea". Check the docs. I seem to
remember that you inserted them by means of "lo_import" and extracted them
via "lo_export".

I am designing an application that needs images (who doesn't?) but I have
decided to store the images separately as usual images (gif, jpg) and store
in the database the link to those images, so I read the link from the
database and the php script loads the image from the link. I don't have any
special requirement for the security of the images, that is, if you knew the
link yourself you could load it in the browser but that is not important.

Adrian Tineo


В списке pgsql-php по дате отправления:

Предыдущее
От: Matthew Horoschun
Дата:
Сообщение: Re: URGENT : pgsql for windows
Следующее
От: "Adrian Tineo"
Дата:
Сообщение: Re: problem with select option