|
|
|
Next: how to install php on Ubuntu?
|
| Author |
Message |
External

Since: Jun 08, 2008 Posts: 1
|
(Msg. 16) Posted: Sun Jun 08, 2008 12:34 pm
Post subject: Re:_How_to_display_JPG_files_that_are_stored_on_the_ Archived from groups: comp>lang>php, others (more info?)
|
|
|
You've had a lot of replies saying that you can not
do this in PHP
While the PHP Script can't do it alone,
you can embed client side code to meet the need.
Several users suggested Java.
If you are open to an ActiveX solution ( requires browser
to be IE on Windows system ) then this becomses easy.
Our MetaDraw control can display local ( or remote)
JPGs ( or other image formats ) within a scrollable,
zoomable client side window. Also in Active X it
is easy to handle the directory listing and file
deletions ( if allowed by the user ).
If you are interested, contat me at
Jeff AT Bennet-Tec.com
============================
On May 4, 9:28 am, PHPBABY3 <shymath... DeleteThis @gmail.com> wrote:
> I would like to do as follows:
>
> 1. The user identifies any directory on his computer.
> 2. I go through that directory and find all JPG files in it.
> 3. I display those JPG files.
>
> This is what I know:
>
> 1: The input type “file” would let them choose any file in that
> directory and send me the complete pathname (the drive, list of
> directories leading to it and file name.) I then ignore the file name
> at the end and I have the directory.
>
> Is there a way for them to browse to a directory and choose just a
> directory instead of a random file within that directory? This is
> minor, but still I am only asking for the drive and directories part
> of the pathname.
>
> 2: I can get a list of the file names in that directory using the
> opendir and readdir functions.
>
> 3: I go through the list of file names and want to use html IMG to
> display the JPG file. This is the real problem. How can I specify
> that the SRC is an arbitrary file on their computer? Using the
> pathname (drive, directories and file name) doesn’t work.
>
> I can get the contents of the file using the fopen and fread
> functions. But how do I specify the contents as the html SRC? Do I
> have to save the file contents to the server first? Then would I need
> to assign it a file name e.g. “A1”, “A2” etc? And then delete it
> after displaying it? And if there is a problem during that process
> and it doesn’t run to completion, I have to periodically delete these
> “A1” etc. file names that will not be deleted by the process that
> created them. How do I tell if it is a file that is currently being
> displayed and to not delete it?
>
> Thanks,
>
> P - |
|
| Back to top |
|
 |  |
External

Since: Jun 09, 2008 Posts: 1
|
(Msg. 17) Posted: Mon Jun 09, 2008 2:07 am
Post subject: Re: How to display JPG files that are stored on the user's computer? Archived from groups: per prev. post (more info?)
|
|
|
On Jun 7, 3:37 pm, PHPBABY3 <shymath....DeleteThis@gmail.com> wrote:
> On May 5, 4:17 pm, "Paul Lautman" <paul.laut....DeleteThis@btinternet.com> wrote:
>
>
>
> > PHPBABY3 wrote:
> > > On May 4, 10:46 am, "J.O. Aho" <u....DeleteThis@example.net> wrote:
> > >> Jerry Stuckle wrote:
> > >> > J.O. Aho wrote:
> > >> >> PHPBABY3 wrote:
> > >> >>> 2: I can get a list of the file names in that directory using the
> > >> >>> opendir and readdir functions.
> > >> >> No you can't, those will only work on the server, not on the
> > >> >> client side, if you want to do something on the client side, then
> > >> >> you use a client side scripting language like javascript.
> > >> > Javascript won't do it, either. Security restrictions will prevent
> > >> > it.
>
> > >> You are right, must been thinking of trusted java applet that can get
> > >> some local file system access, even so, I don't believe it would be a
> > >> good solution.
>
> > >> --
>
> > >> //Aho
>
> > > Can anyone give me a straight answer as to how I can do what I
> > > describe? I could even pay money for an answer.
>
> > > P -
>
> > You have had lots of straight answers. I tell you again, what you say you
> > know is all wrong. You cannot do it. Period!
>
> Some people say I can. PHP can invoke other languages.
>
> - Hide quoted text -
>
>
>
> > - Show quoted text -
Some people are wrong. |
|
| Back to top |
|
 |  |
External

Since: Jun 09, 2008 Posts: 2
|
(Msg. 18) Posted: Mon Jun 09, 2008 5:45 am
Post subject: Re: How to display JPG files that are stored on the user's computer? Archived from groups: per prev. post (more info?)
|
|
|
think about other client side techs, such as vbscript and activex, this
may not be able to work with firefox and other non-ie browsers. |
|
| Back to top |
|
 |  |
External

Since: Jul 08, 2004 Posts: 3787
|
(Msg. 19) Posted: Mon Jun 09, 2008 6:36 am
Post subject: Re: How to display JPG files that are stored on the user's computer? Archived from groups: per prev. post (more info?)
|
|
|
GuangXiN wrote:
> think about other client side techs, such as vbscript and activex, this
> may not be able to work with firefox and other non-ie browsers.
>
And even if you use them, the user has to give permission for the script
to access his/her disk - which no intelligent user will do. And it
won't work on non Windoze systems.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex.TakeThisOut@attglobal.net
================== |
|
| Back to top |
|
 |  |
External

Since: Jun 09, 2008 Posts: 2
|
(Msg. 20) Posted: Mon Jun 09, 2008 7:10 pm
Post subject: Re: How to display JPG files that are stored on the user's computer? Archived from groups: per prev. post (more info?)
|
|
|
Yes, it's user's computer after all. Web developers have no rights to do
anything without permition |
|
| Back to top |
|
 |  |
External

Since: Oct 21, 2009 Posts: 2
|
(Msg. 21) Posted: Wed Oct 21, 2009 5:51 am
Post subject: Re:_How_to_display_JPG_files_that Archived from groups: per prev. post (more info?)
|
|
|
|
|
| Back to top |
|
 |  |
External

Since: Oct 21, 2009 Posts: 1
|
(Msg. 22) Posted: Wed Oct 21, 2009 9:05 am
Post subject: Re:_How_to_display_JPG_files_that Archived from groups: per prev. post (more info?)
|
|
|
|
|
| Back to top |
|
 |  |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|