Re: Broken image if shown with file_get_contents()

2008-11-02 Thread Samuel DeVore
On Sun, Nov 2, 2008 at 10:33 AM, Bernardo Vieira <[EMAIL PROTECTED]> wrote: > > Maybe you forgot whitespace after closing a php tag. My guess is that you have a controller, component, helper that has an extra white space at the start or end. You could try clearing the output buffer

Re: Broken image if shown with file_get_contents()

2008-11-02 Thread Bernardo Vieira
Maybe you forgot whitespace after closing a php tag. Anupom wrote: > It works fine here! Did you try exiting at the end of the action? > > On Sun, Nov 2, 2008 at 7:48 PM, Giaco <[EMAIL PROTECTED] > > wrote: > > > That doesn't work either. The path is correct, put th

Re: Broken image if shown with file_get_contents()

2008-11-02 Thread Anupom
It works fine here! Did you try exiting at the end of the action? On Sun, Nov 2, 2008 at 7:48 PM, Giaco <[EMAIL PROTECTED]> wrote: > > That doesn't work either. The path is correct, put the output gets > scrambled. I think this is an encoding issue but I can't work around > it and don't find anyt

Re: Broken image if shown with file_get_contents()

2008-11-02 Thread Giaco
That doesn’t work either. The path is correct, put the output gets scrambled. I think this is an encoding issue but I can’t work around it and don’t find anything on the web about it. Does this function work as expected with your cake installation? (I’m using UTF8) On Nov 2, 11:10 am, Anupom <[E

Re: Broken image if shown with file_get_contents()

2008-11-02 Thread Giaco
I now found out then when viewed binarily the only difference between the real picture and the scrambled one of cake is: * one empty line at the top * line delimiter is CRLF not CR If I change those two, the image works as expected. How can I tell cake to show the image properly? On Nov 2,

Re: Broken image if shown with file_get_contents()

2008-11-02 Thread Anupom
Can you please try with the following code? function view() { Configure::write('debug', 0); header('Content-type: image/jpeg;'); echo file_get_contents(WWW_ROOT . 'img' . DS . 'folder' . DS . 'test.jpg'); exit; } On Sun, Nov 2, 2008 at 4:36 AM, Giaco <[EMAI