Giter Club home page Giter Club logo

tilesview's Introduction

Not usable at the moment.

TilesView is an Android widget that is able to display a very huge image and make it browsable. It works by cutting them in small tiles. The only thing it needs from you is to define how to fill those tiles. It then takes care of threading, recycling tiles, scrolling and zooming for you.

Story

We had a huge SVG of a big airport indoor map, with lots of details, and we needed to make it browsable to the user. At first we used AndroidSVG, a library that reads the SVG file and exposes a method renderToCanvas(Canvas);. But the result was really bad: drawing the whole SVG on every frame dropped the framerate down to barely 5 FPS. It has nothing to do with the lib, there's no way it could render faster since the SVG has thousands of elements including complexe shapes, sometimes transparent, or using gradients, etc...

We thought it could render a lot faster if we render the SVG to a bitmap once and just draw the bitmap on every frame. But this has 2 problems: the bitmap would change size when the users zooms in and out, and it would get too big on higher zoom levels.

So I started working on tilesview, with the help of @NicolasPoirier. It basically cuts whatever you need to display in tiles. Tiles are 256x256 images, created on a background thread when needed, and reused as soon as they get offscreen. When the user zooms in, new tiles are rendered with the appropriate scale, but they are still 256x256. All it needs from you is then to know how to fill those tiles.

Let's see an example with a huge 11730x6351 image displayed on a 730x400 TilesView.

Scale 1

Scale 2

In the example above, you can see the strength of this method: it only needs to build and draw at most 6 tiles on screen at any given time. Of course that depends on the screen size. Instead of drawing a very huge image or a very complex SVG, the GPU only needs to draw those 6 small images, no matter what the zoom level is, and the GPU is very good at it. Using this technique, we reached 60 FPS again!

Usage

Add the dependency to your build.gradle

dependencies {
    compile 'com.joanzapata.tilesview:tilesview:0.0.3'
}

Put a TilesView in your layout.

<com.joanzapata.tilesview.TilesView
  android:id="@+id/tilesView"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content" />

Programatically set an adapter to it.

// This is not actually related to the lib, but in this example we want
// to read a huge JPG file, so we'll need a BitmapRegionDecoder to read
// some parts of it when requested in the adapter.
BitmapRegionDecoder decoder = BitmapRegionDecoder.newInstance(
  context.getResources().getAssets().open("world.jpg"), false);
                    
// Create and set the adapter.
TilesView tilesView = (TilesView) findViewById(R.id.tilesView);
tilesView.setAdapter(new BigMapAdapter(decoder));

And implement the adapter, subclassing FixedSizeAdapter.

public class BigMapAdapter extends FixedSizeAdapter {
    private final BitmapRegionDecoder decoder;

    public BigMapAdapter(BitmapRegionDecoder decoder) {
        super(decoder.getWidth(), decoder.getHeight());
        this.decoder = decoder;
    }

    @Override
    protected void drawTile(Canvas canvas, RectF sourceRectF, RectF destRectF) {
        // Decode the part of the image we need to render in this tile    
        // and draw this part on the tile, at the bounds specified by destRectF
        Bitmap tmpBitmap = decoder.decodeRegion(sourceRectF);
        canvas.drawBitmap(tmpBitmap, null, destRectF, null);
    }
}

Contributors

License

Copyright 2015 Joan Zapata

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

tilesview's People

Contributors

joanzapata avatar nicolaspoirier avatar

Watchers

James Cloos avatar Nikhil avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.