|
|
 alyn | 2012-05-09 00:46:30 - In reply to message 9 from Taha Paksu |
Anyway don't bother :D , i have removed those 2 & sings mentioned on the top posts , and it works great ! better than before i might say .. !
You rock ! :) tnx for your support. |
 Taha Paksu | 2012-05-09 14:10:41 - In reply to message 11 from alyn |
| Try it again. I made some changes, and it won't give E_DEPRECATED and E_NOTICE's anymore (maybe some E_NOTICE's that I couldn't catch). |
 Taha Paksu | 2012-07-13 22:01:27 - In reply to message 13 from aburrone |
| Your file seems to have an extra comment at the end. open your gif file with notepad and delete the content starting with "This" till the end of the file and leave the ";" at the end. Then it'll work. |
 aburrone | 2012-07-14 06:35:13 - In reply to message 14 from Taha Paksu |
Thanks a lot for your quick reply.
I think that we have to do something into the code, because the final user don't know about this and the code crash.
What do you think about it? |
 Taha Paksu | 2012-07-14 09:18:02 - In reply to message 15 from aburrone |
I replaced
while(!$this->checkbyte(0x3b) && !$this->checkEOF()){
$this->get_comment_data(1);
$this->get_graphics_extension(2);
$this->get_image_block(2);
}
with
while(!$this->checkbyte(0x3b) && !$this->checkEOF()){
$this->get_comment_data(1);
$this->get_graphics_extension(2);
$this->get_image_block(2);
$this->get_comment_data(1);
$this->get_application_data();
}
and it worked because after the last frame there's a comment and a app block inside your gif file. But it's not very usual. |
 aburrone | 2012-07-14 09:41:28 - In reply to message 16 from Taha Paksu |
Works!!! Excellent!
Thanks a lot for your quick reply and your professionalism.
|
|