All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.oscim.android.canvas.AndroidGraphics Maven / Gradle / Ivy

Go to download

OpenGL vector map library written in Java - running on Android, iOS, Desktop and within the browser.

There is a newer version: 0.21.0
Show newest version
/*
 * Copyright 2010, 2011, 2012 mapsforge.org
 * Copyright 2016-2019 devemux86
 * Copyright 2017 Longri
 *
 * This file is part of the OpenScienceMap project (http://www.opensciencemap.org).
 *
 * This program is free software: you can redistribute it and/or modify it under the
 * terms of the GNU Lesser General Public License as published by the Free Software
 * Foundation, either version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License along with
 * this program. If not, see .
 */
package org.oscim.android.canvas;

import android.content.res.Resources;
import android.graphics.Bitmap.Config;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.os.Build;
import org.oscim.backend.CanvasAdapter;
import org.oscim.backend.Platform;
import org.oscim.backend.canvas.Bitmap;
import org.oscim.backend.canvas.Canvas;
import org.oscim.backend.canvas.Paint;
import org.oscim.layers.marker.MarkerSymbol;
import org.oscim.layers.marker.MarkerSymbol.HotspotPlace;

import java.io.IOException;
import java.io.InputStream;

public final class AndroidGraphics extends CanvasAdapter {

    public static void init() {
        CanvasAdapter.init(new AndroidGraphics());
        CanvasAdapter.platform = Platform.ANDROID;
    }

    public static android.graphics.Paint getAndroidPaint(Paint paint) {
        return ((AndroidPaint) paint).mPaint;
    }

    public static android.graphics.Bitmap getBitmap(Bitmap bitmap) {
        return ((AndroidBitmap) bitmap).mBitmap;
    }

    private AndroidGraphics() {
        // do nothing
    }

    @Override
    public Bitmap decodeBitmapImpl(InputStream inputStream) {
        return new AndroidBitmap(inputStream);
    }

    @Override
    public Bitmap decodeBitmapImpl(InputStream inputStream, int width, int height, int percent) {
        return new AndroidBitmap(inputStream, width, height, percent);
    }

    @Override
    public Bitmap decodeSvgBitmapImpl(InputStream inputStream, int width, int height, int percent) throws IOException {
        return new AndroidSvgBitmap(inputStream, width, height, percent);
    }

    @Override
    public Bitmap loadBitmapAssetImpl(String relativePathPrefix, String src, int width, int height, int percent) throws IOException {
        return createBitmap(relativePathPrefix, src, width, height, percent);
    }

    @Override
    public Paint newPaintImpl() {
        return new AndroidPaint();
    }

    @Override
    public Bitmap newBitmapImpl(int width, int height, int format) {
        return new AndroidBitmap(width, height, format);
    }

    @Override
    public Canvas newCanvasImpl() {
        return new AndroidCanvas();
    }

    //-------------------------------------
    public static Bitmap drawableToBitmap(Drawable drawable) {
        if (Build.VERSION.SDK_INT < Build.VERSION_CODES.P && drawable instanceof BitmapDrawable) {
            return new AndroidBitmap(((BitmapDrawable) drawable).getBitmap());
        }

        android.graphics.Bitmap bitmap = android.graphics.Bitmap
                .createBitmap(drawable.getIntrinsicWidth(),
                        drawable.getIntrinsicHeight(),
                        Config.ARGB_8888);

        android.graphics.Canvas canvas = new android.graphics.Canvas(bitmap);
        drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
        drawable.draw(canvas);

        return new AndroidBitmap(bitmap);
    }

    public static Bitmap drawableToBitmap(Resources res, int resId) {
        return drawableToBitmap(res.getDrawable(resId));
    }

    /**
     * @deprecated
     */
    public static MarkerSymbol makeMarker(Drawable drawable, HotspotPlace place) {
        if (place == null)
            place = HotspotPlace.CENTER;

        return new MarkerSymbol(drawableToBitmap(drawable), place);
    }

    /**
     * @deprecated
     */
    public static MarkerSymbol makeMarker(Resources res, int resId, HotspotPlace place) {
        if (place == null)
            place = HotspotPlace.CENTER;

        InputStream in = res.openRawResource(resId);
        return new MarkerSymbol(new AndroidBitmap(in), place);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy