Files
Hristo Deshev b45cbe929b No more ambient modules for tns-core-modules/* subpackages.
- Use path mappings in tsconfig.json to resolve module typings
- Only use ambient mobules for global API's
- Move single-file modules to a subdir with the same name so that
we can provide a hand-written typing next to it (via package.json)
- Delete all mentions of tns-core-modules.d.ts
- Delete reference d.ts assembly build steps. Not needed anymore.
- HACK! Use a <reference> for global typings in application.d.ts
to avoid publishing a separate @types/tns-core-modules package.
- Rename declarations.d.ts to tns-core-modules.d.ts to preserve
JS project mappings in references.d.ts (the only place we use those)
2017-03-07 17:59:02 +02:00

243 lines
6.8 KiB
TypeScript

// Definitions.
import { ImageSource as ImageSourceDefinition } from "image-source";
import { ImageAsset } from "image-asset";
import * as httpModule from "../http";
// Types.
import { path as fsPath, knownFolders } from "file-system";
import { isFileOrResourcePath, RESOURCE_PREFIX } from "utils/utils";
export { isFileOrResourcePath };
let http: typeof httpModule;
function ensureHttp() {
if (!http) {
http = require("../http");
}
}
export class ImageSource implements ImageSourceDefinition {
public android: android.graphics.Bitmap;
public ios: UIImage;
public fromAsset(asset: ImageAsset) {
return new Promise<ImageSource>((resolve, reject) => {
asset.getImageAsync((image, err) => {
if (image) {
resolve(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 {
this.ios = UIImage.imageWithContentsOfFile(getFileName(path));
return this.ios != null;
}
public fromFile(path: string): Promise<boolean> {
return new Promise<boolean>((resolve, reject) => {
try {
(<any>UIImage).tns_decodeImageWidthContentsOfFileCompletion(getFileName(path), 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 (typeof source === "string") {
const 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: "png" | "jpeg" | "jpg", quality?: number): boolean {
if (!this.ios) {
return false;
}
const data = getImageData(this.ios, format, quality);
if (data) {
return data.writeToFileAtomically(path, true);
}
return false;
}
public toBase64String(format: "png" | "jpeg" | "jpg", quality?: number): string {
let res = null;
if (!this.ios) {
return res;
}
const 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 getFileName(path: string): string {
let fileName = typeof path === "string" ? path.trim() : "";
if (fileName.indexOf("~/") === 0) {
fileName = fsPath.join(knownFolders.currentApp().path, fileName.replace("~/", ""));
}
return fileName;
}
function getImageData(instance: UIImage, format: "png" | "jpeg" | "jpg", quality = 1.0): NSData {
var data = null;
switch (format) {
case "png": // PNG
data = UIImagePNGRepresentation(instance);
break;
case "jpeg" || "jpg": // JPEG
data = UIImageJPEGRepresentation(instance, quality);
break;
}
return data;
}
export function fromAsset(asset: ImageAsset): Promise<ImageSource> {
const image = new ImageSource();
return image.fromAsset(asset);
}
export function fromResource(name: string): ImageSource {
const image = new ImageSource();
return image.loadFromResource(name) ? image : null;
}
export function fromFile(path: string): ImageSource {
const image = new ImageSource();
return image.loadFromFile(path) ? image : null;
}
export function fromData(data: any): ImageSource {
const image = new ImageSource();
return image.loadFromData(data) ? image : null;
}
export function fromBase64(source: string): ImageSource {
const image = new ImageSource();
return image.loadFromBase64(source) ? image : null;
}
export function fromNativeSource(source: any): ImageSource {
const image = new ImageSource();
return image.setNativeSource(source) ? image : null;
}
export function fromUrl(url: string): Promise<ImageSource> {
ensureHttp();
return http.getImage(url);
}
export function fromFileOrResource(path: string): ImageSource {
if (!isFileOrResourcePath(path)) {
throw new Error("Path \"" + "\" is not a valid file or resource.");
}
if (path.indexOf(RESOURCE_PREFIX) === 0) {
return fromResource(path.substr(RESOURCE_PREFIX.length));
}
return fromFile(path);
}