mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
145 lines
4.1 KiB
TypeScript
145 lines
4.1 KiB
TypeScript
import types = require("utils/types");
|
|
import definition = require("image-source");
|
|
import common = require("./image-source-common");
|
|
import * as utilsModule from "utils/utils";
|
|
import * as fileSystemModule from "file-system";
|
|
import * as enumsModule from "ui/enums";
|
|
|
|
global.moduleMerge(common, exports);
|
|
|
|
var utils: typeof utilsModule;
|
|
function ensureUtils() {
|
|
if (!utils) {
|
|
utils = require("utils/utils");
|
|
}
|
|
}
|
|
|
|
var fs: typeof fileSystemModule;
|
|
function ensureFS() {
|
|
if (!fs) {
|
|
fs = require("file-system");
|
|
}
|
|
}
|
|
|
|
var enums: typeof enumsModule;
|
|
function ensureEnums() {
|
|
if (!enums) {
|
|
enums = require("ui/enums");
|
|
}
|
|
}
|
|
|
|
export class ImageSource implements definition.ImageSource {
|
|
public android: android.graphics.Bitmap;
|
|
public ios: UIImage;
|
|
|
|
public loadFromResource(name: string): boolean {
|
|
this.android = null;
|
|
|
|
ensureUtils();
|
|
|
|
var res = utils.ad.getApplicationContext().getResources();
|
|
if (res) {
|
|
var identifier: number = res.getIdentifier(name, 'drawable', utils.ad.getApplication().getPackageName());
|
|
if (0 < identifier) {
|
|
// Load BitmapDrawable with getDrawable to make use of Android internal caching
|
|
var bitmapDrawable = <android.graphics.drawable.BitmapDrawable>res.getDrawable(identifier);
|
|
if (bitmapDrawable && bitmapDrawable.getBitmap) {
|
|
this.android = bitmapDrawable.getBitmap();
|
|
}
|
|
}
|
|
}
|
|
|
|
return this.android != null;
|
|
}
|
|
|
|
public loadFromFile(path: string): boolean {
|
|
ensureFS();
|
|
|
|
var fileName = types.isString(path) ? path.trim() : "";
|
|
if (fileName.indexOf("~/") === 0) {
|
|
fileName = fs.path.join(fs.knownFolders.currentApp().path, fileName.replace("~/", ""));
|
|
}
|
|
|
|
this.android = android.graphics.BitmapFactory.decodeFile(fileName, null);
|
|
return this.android != null;
|
|
}
|
|
|
|
public loadFromData(data: any): boolean {
|
|
this.android = android.graphics.BitmapFactory.decodeStream(data);
|
|
return this.android != null;
|
|
}
|
|
|
|
public loadFromBase64(source: string): boolean {
|
|
if (types.isString(source)) {
|
|
var bytes = android.util.Base64.decode(source, android.util.Base64.DEFAULT);
|
|
this.android = android.graphics.BitmapFactory.decodeByteArray(bytes, 0, bytes.length)
|
|
}
|
|
return this.android != null;
|
|
}
|
|
|
|
public setNativeSource(source: any): boolean {
|
|
this.android = source;
|
|
return source != null;
|
|
}
|
|
|
|
public saveToFile(path: string, format: string, quality = 100): boolean {
|
|
if (!this.android) {
|
|
return false;
|
|
}
|
|
|
|
var targetFormat = getTargetFromat(format);
|
|
|
|
// TODO add exception handling
|
|
var outputStream = new java.io.BufferedOutputStream(new java.io.FileOutputStream(path));
|
|
|
|
var res = this.android.compress(targetFormat, quality, outputStream);
|
|
outputStream.close();
|
|
return res;
|
|
}
|
|
|
|
public toBase64String(format: string, quality = 100): string {
|
|
if (!this.android) {
|
|
return null;;
|
|
}
|
|
|
|
var targetFormat = getTargetFromat(format);
|
|
|
|
var outputStream = new java.io.ByteArrayOutputStream();
|
|
var base64Stream = new android.util.Base64OutputStream(outputStream, android.util.Base64.NO_WRAP);
|
|
|
|
this.android.compress(targetFormat, quality, base64Stream);
|
|
|
|
base64Stream.close();
|
|
outputStream.close();
|
|
|
|
return outputStream.toString();
|
|
}
|
|
|
|
get height(): number {
|
|
if (this.android) {
|
|
return this.android.getHeight();
|
|
}
|
|
|
|
return NaN;
|
|
}
|
|
|
|
get width(): number {
|
|
if (this.android) {
|
|
return this.android.getWidth();
|
|
}
|
|
|
|
return NaN;
|
|
}
|
|
}
|
|
|
|
function getTargetFromat(format: string): android.graphics.Bitmap.CompressFormat {
|
|
ensureEnums();
|
|
|
|
switch (format) {
|
|
case enums.ImageFormat.jpeg:
|
|
return android.graphics.Bitmap.CompressFormat.JPEG;
|
|
default:
|
|
return android.graphics.Bitmap.CompressFormat.PNG;
|
|
}
|
|
}
|