Question Import existing tiled images

  • 23 มีนาคม 2555 18:28
     
     

    I have an existing directory of non-overlapping tiles aligned using our own tools.  The naming convention is as follows:

    0001_X000_Y000.png

    0001_X000_Y001.png

    0001_X000_Y002.png

    etc...

    Is there an easy way to import this data to HDView?  The images are too large to assemble into a single image to be cut again, and the alignment is already done by our existing mosaic'ing tools.

ตอบทั้งหมด

  • 26 มีนาคม 2555 20:59
     
     

    Unfortunately HDView's XML specification doesn't allow for leading 0s...you'll have to rename your tiles to:

    1_X0_Y0.png

    1_X0_Y1.png

    1_X0_Y2.png

    etc...

    Then your .xml file would look like:

    <?xml version="1.0"?>
    <root>
        <imageset
            url="{L}_X{c}_Y{r}.png"
            ...

        />
    </root>

    --Howard