最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

html - JavaScript - Splitting a tileset image to be stored in 2D Image() array - Stack Overflow

programmeradmin1浏览0评论

Let's say I have this image:

and I have this 2D array tiles[] .. and using Image() function... how can do I use the (what I assume be best way?) for loop to add each tile into the array so tile[0] through however many there are is read and used as Image() objects later to be painted on HTML5 canvas?

Let's say I have this image:

and I have this 2D array tiles[] .. and using Image() function... how can do I use the (what I assume be best way?) for loop to add each tile into the array so tile[0] through however many there are is read and used as Image() objects later to be painted on HTML5 canvas?

Share Improve this question edited Jul 18, 2012 at 3:36 test asked Jul 18, 2012 at 2:47 testtest 18.2k67 gold badges173 silver badges245 bronze badges 8
  • You have to know how many pixels wide and high each square is – jeschafe Commented Jul 18, 2012 at 2:52
  • This is hard to test because it's from imgur. It deals with cross-domain issues. This needs to be on your local server. – jeschafe Commented Jul 18, 2012 at 4:59
  • I have it saved on my puter jeschafe... – test Commented Jul 18, 2012 at 5:02
  • I understand it's just hard for us to test because you can't save the file on jsfiddle or anything like that – jeschafe Commented Jul 18, 2012 at 5:03
  • Can't you test it on localhost? I don't know what else to do there. – test Commented Jul 18, 2012 at 5:05
 |  Show 3 more ments

2 Answers 2

Reset to default 5

I would..

  • Figure out how many tiles wide and high this image is
  • Draw the image to a canvas in memory, and use the context to get image data.
  • Loop through and subimage each tile, storing in an array.

Assuming:

imageWidth, imageHeight, tileWidth, tileHeight

All describe what their names suggest, and:

EDIT: Added image load as per ment, fixed wrongly name ImageWidth and ImageHeight to imageWidth and imageHeight

EDIT: Performing code inside imageObj.onload as the image is drawn here, drawImage() from origin (0,0)

    var canvas = document.getElementById("myCanvas");
    var ctx = canvas.getContext("2d");
    var imageObj = new Image();
    imageObj.src = "tilesetImageLocationHere";

  imageObj.onload = function() {
    ctx.drawImage(imageObj, 0, 0);

Then, split up your image into a list of tile data..

    var tilesX = imageWidth / tileWidth;
    var tilesY = imageHeight / tileHeight;
    var totalTiles = tilesX * tilesY;        
    var tileData = new Array();
    for(var i=0; i<tilesY; i++)
    {
      for(var j=0; j<tilesX; j++)
      {           
        // Store the image data of each tile in the array.
        tileData.push(ctx.getImageData(j*tileWidth, i*tileHeight, tileWidth, tileHeight));
      }
    }
    //From here you should be able to draw your images back into a canvas like so:
    ctx.putImageData(tileData[0], x, y);
  }

ok I did this on my localhost: it should give you a base at least. I think you should be able to use this straight outta the box but you might have to make a few calculation adjustments for it depending on what you want. I just don't think it's neccessary to spend thee time to perfect it to your example:

You'll obviously have to point the image to your own image.

<html>
  <head>
    <script type="text/javascript" src="https://ajax.googleapis./ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script type="text/javascript">
      $(function(){
        var canvas = document.getElementById('fakeCanvas');
        var ctx = canvas.getContext('2d');
        var img = new Image();
        img.src = '/theImage.png';
        var tiles = [];
        var  imageTileNumWidth = 23;
        var imageTileNumHeight = 21;

img.onload = function(){
  var imageWidth = img.width;
  var imageHeight = img.height;
  sndCanvasWidth = imageWidth/imageTileNumWidth;
  sndCanvasHeight = imageHeight/imageTileNumHeight;
  canvas.width = imageWidth;
  canvas.height = imageHeight;
  ctx.drawImage(img,0,0,imageWidth,imageHeight);
  var sndCanvas = document.getElementById('drawCanvas');
  sndCanvas.width=sndCanvasWidth;
  sndCanvas.height=sndCanvasHeight;
  var i=0;
  var j=0;
  var t=0;
    for(i=0;i<imageWidth;i+=sndCanvasWidth){
      for(j=0;j<imageHeight;j+=sndCanvasHeight){
            var myImageData = ctx.getImageData(j,i,sndCanvasWidth,sndCanvasHeight);     
            var ctx2 = sndCanvas.getContext("2d");
            ctx2.putImageData(myImageData,0,0);
            tiles.push(myImageData);  
      }
    }
};
    });
  </script>
</head>
  <body>
    <canvas id="fakeCanvas"></canvas>
    <canvas id="drawCanvas"></canvas>
  </body>
</html>
发布评论

评论列表(0)

  1. 暂无评论