Changes between Initial Version and Version 2 of Ticket #2524


Ignore:
Timestamp:
Feb 22, 2008, 6:17:49 AM (16 years ago)
Author:
dmorissette
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2524

    • Property Owner changed from sdlime to mapserverbugs
    • Property Component MapServer C LibraryOutput-SWF
  • Ticket #2524 – Description

    initial v2  
    11I have a map file that outputs swf format... I use PHPMapScript to
    22implement:
    3 
     3{{{
    44$map = ms_newMapObj("test.map");
    55$image=$map->draw();
    66$image_url=$image->saveWebImage();
     7}}}
    78
    89It generates some random name swf files like:
     10{{{
    91147ba3cf0_d1c_0.swf
    101247ba3cf0_d1c_0_layer_0.swf
    111347ba3cf0_d1c_0_layer_1.swf
     14}}}
    1215
    1316But I want to save them as normal name, so I do next:
     17{{{
    1418$image->saveImage("img_gen/test.swf");
     19}}}
    1520and it works when saving them to those files:
     21{{{
    1622test.swf
    1723test_layer_0.swf
    1824test_layer_1.swf
     25}}}
    1926
    2027But in the test.swf file, the '''links''' to its child layers not
    2128change, so I can't use them !
     29
    2230( Maybe it's a MapServer's fatal error )
     31
    2332Thanks.