mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
193 lines
5.6 KiB
TypeScript
193 lines
5.6 KiB
TypeScript
import definition = require("image-source");
|
|
import types = require("utils/types");
|
|
import fs = require("file-system");
|
|
import common = require("./image-source-common");
|
|
import enums = require("ui/enums");
|
|
import * as imageAssetModule from "image-asset";
|
|
|
|
global.moduleMerge(common, exports);
|
|
|
|
export class ImageSource implements definition.ImageSource {
|
|
public android: android.graphics.Bitmap;
|
|
public ios: UIImage;
|
|
|
|
public fromAsset(asset: imageAssetModule.ImageAsset) {
|
|
return new Promise<definition.ImageSource>((resolve, reject) => {
|
|
asset.getImageAsync((image, err) => {
|
|
if (image) {
|
|
resolve(common.fromNativeSource(image));
|
|
}
|
|
else {
|
|
reject(err);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
public loadFromResource(name: string): boolean {
|
|
this.ios = (<any>UIImage).tns_safeImageNamed(name) || (<any>UIImage).tns_safeImageNamed(`${name}.jpg`);
|
|
return this.ios != null;
|
|
}
|
|
|
|
public fromResource(name: string): Promise<boolean> {
|
|
return new Promise<boolean>((resolve, reject) => {
|
|
try {
|
|
(<any>UIImage).tns_safeDecodeImageNamedCompletion(name, image => {
|
|
if (image) {
|
|
this.ios = image;
|
|
resolve(true);
|
|
} else {
|
|
(<any>UIImage).tns_safeDecodeImageNamedCompletion(`${name}.jpg`, image => {
|
|
this.ios = image;
|
|
resolve(true);
|
|
});
|
|
}
|
|
});
|
|
} catch (ex) {
|
|
reject(ex);
|
|
}
|
|
});
|
|
}
|
|
|
|
public loadFromFile(path: string): boolean {
|
|
var fileName = types.isString(path) ? path.trim() : "";
|
|
|
|
if (fileName.indexOf("~/") === 0) {
|
|
fileName = fs.path.join(fs.knownFolders.currentApp().path, fileName.replace("~/", ""));
|
|
}
|
|
|
|
this.ios = UIImage.imageWithContentsOfFile(fileName);
|
|
return this.ios != null;
|
|
}
|
|
|
|
public fromFile(path: string): Promise<boolean> {
|
|
return new Promise<boolean>((resolve, reject) => {
|
|
try {
|
|
var fileName = types.isString(path) ? path.trim() : "";
|
|
|
|
if (fileName.indexOf("~/") === 0) {
|
|
fileName = fs.path.join(fs.knownFolders.currentApp().path, fileName.replace("~/", ""));
|
|
}
|
|
|
|
(<any>UIImage).tns_decodeImageWidthContentsOfFileCompletion(fileName, image => {
|
|
this.ios = image;
|
|
resolve(true);
|
|
});
|
|
} catch (ex) {
|
|
reject(ex);
|
|
}
|
|
});
|
|
}
|
|
|
|
public loadFromData(data: any): boolean {
|
|
this.ios = UIImage.imageWithData(data);
|
|
return this.ios != null;
|
|
}
|
|
|
|
public fromData(data: any): Promise<boolean> {
|
|
return new Promise<boolean>((resolve, reject) => {
|
|
try {
|
|
(<any>UIImage).tns_decodeImageWithDataCompletion(data, image => {
|
|
this.ios = image;
|
|
resolve(true);
|
|
});
|
|
} catch (ex) {
|
|
reject(ex);
|
|
}
|
|
});
|
|
}
|
|
|
|
public loadFromBase64(source: string): boolean {
|
|
if (types.isString(source)) {
|
|
var data = NSData.alloc().initWithBase64EncodedStringOptions(source, NSDataBase64DecodingOptions.IgnoreUnknownCharacters);
|
|
this.ios = UIImage.imageWithData(data);
|
|
}
|
|
|
|
return this.ios != null;
|
|
}
|
|
|
|
public fromBase64(source: string): Promise<boolean> {
|
|
return new Promise<boolean>((resolve, reject) => {
|
|
try {
|
|
var data = NSData.alloc().initWithBase64EncodedStringOptions(source, NSDataBase64DecodingOptions.IgnoreUnknownCharacters);
|
|
UIImage.imageWithData["async"](UIImage, [data]).then(image => {
|
|
this.ios = image;
|
|
resolve(true);
|
|
});
|
|
|
|
} catch (ex) {
|
|
reject(ex);
|
|
}
|
|
});
|
|
}
|
|
|
|
public setNativeSource(source: any): boolean {
|
|
if (source instanceof UIImage) {
|
|
this.ios = source;
|
|
}
|
|
return source != null;
|
|
}
|
|
|
|
public saveToFile(path: string, format: string, quality?: number): boolean {
|
|
if (!this.ios) {
|
|
return false;
|
|
}
|
|
|
|
var data = getImageData(this.ios, format, quality);
|
|
|
|
if (data) {
|
|
return data.writeToFileAtomically(path, true);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public toBase64String(format: string, quality?: number): string {
|
|
var res = null;
|
|
if (!this.ios) {
|
|
return res;
|
|
}
|
|
|
|
var data = getImageData(this.ios, format, quality);
|
|
|
|
if (data) {
|
|
res = data.base64Encoding();
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
get height(): number {
|
|
if (this.ios) {
|
|
return this.ios.size.height;
|
|
}
|
|
|
|
return NaN;
|
|
}
|
|
|
|
get width(): number {
|
|
if (this.ios) {
|
|
return this.ios.size.width;
|
|
}
|
|
|
|
return NaN;
|
|
}
|
|
|
|
get rotationAngle(): number {
|
|
return NaN;
|
|
}
|
|
}
|
|
|
|
function getImageData(instance: UIImage, format: string, quality = 1.0): NSData {
|
|
var data = null;
|
|
switch (format) {
|
|
case enums.ImageFormat.png: // PNG
|
|
data = UIImagePNGRepresentation(instance);
|
|
break;
|
|
case enums.ImageFormat.jpeg || enums.ImageFormat.jpg: // JPEG
|
|
data = UIImageJPEGRepresentation(instance, quality);
|
|
break;
|
|
}
|
|
return data;
|
|
} |