Home
last modified time | relevance | path

Searched refs:toDataURL (Results 1 – 25 of 29) sorted by relevance

12

/expo/android/vendored/sdk47/react-native-svg/android/src/main/java/abi47_0_0/com/horcrux/svg/
H A DSvgViewModule.java30 private static void toDataURL( in toDataURL() method in SvgViewModule
52 toDataURL(tag, options, successCallback, attempt + 1); in toDataURL()
62 toDataURL(tag, options, successCallback, attempt + 1); in toDataURL()
68 svg.toDataURL(options.getInt("width"), options.getInt("height"))); in toDataURL()
70 successCallback.invoke(svg.toDataURL()); in toDataURL()
79 public void toDataURL(int tag, ReadableMap options, Callback successCallback) { in toDataURL() method in SvgViewModule
80 toDataURL(tag, options, successCallback, 0); in toDataURL()
H A DSvgView.java344 String toDataURL() {
358 String toDataURL(int width, int height) {
/expo/android/vendored/sdk48/react-native-svg/android/src/main/java/abi48_0_0/com/horcrux/svg/
H A DSvgViewModule.java30 private static void toDataURL( in toDataURL() method in SvgViewModule
52 toDataURL(tag, options, successCallback, attempt + 1); in toDataURL()
62 toDataURL(tag, options, successCallback, attempt + 1); in toDataURL()
68 svg.toDataURL(options.getInt("width"), options.getInt("height"))); in toDataURL()
70 successCallback.invoke(svg.toDataURL()); in toDataURL()
79 public void toDataURL(int tag, ReadableMap options, Callback successCallback) { in toDataURL() method in SvgViewModule
80 toDataURL(tag, options, successCallback, 0); in toDataURL()
H A DSvgView.java344 String toDataURL() {
358 String toDataURL(int width, int height) {
/expo/android/vendored/unversioned/react-native-svg/android/src/main/java/com/horcrux/svg/
H A DSvgViewModule.java34 private static void toDataURL( in toDataURL() method in SvgViewModule
56 toDataURL(tag, options, successCallback, attempt + 1); in toDataURL()
66 toDataURL(tag, options, successCallback, attempt + 1); in toDataURL()
72 svg.toDataURL(options.getInt("width"), options.getInt("height"))); in toDataURL()
74 successCallback.invoke(svg.toDataURL()); in toDataURL()
84 public void toDataURL(Double tag, ReadableMap options, Callback successCallback) { in toDataURL() method in SvgViewModule
85 toDataURL(tag.intValue(), options, successCallback, 0); in toDataURL()
H A DSvgView.java355 String toDataURL() {
369 String toDataURL(int width, int height) {
/expo/android/vendored/sdk49/react-native-svg/android/src/main/java/abi49_0_0/com/horcrux/svg/
H A DSvgViewModule.java34 private static void toDataURL( in toDataURL() method in SvgViewModule
56 toDataURL(tag, options, successCallback, attempt + 1); in toDataURL()
66 toDataURL(tag, options, successCallback, attempt + 1); in toDataURL()
72 svg.toDataURL(options.getInt("width"), options.getInt("height"))); in toDataURL()
74 successCallback.invoke(svg.toDataURL()); in toDataURL()
84 public void toDataURL(Double tag, ReadableMap options, Callback successCallback) { in toDataURL() method in SvgViewModule
85 toDataURL(tag.intValue(), options, successCallback, 0); in toDataURL()
H A DSvgView.java355 String toDataURL() {
369 String toDataURL(int width, int height) {
/expo/ios/vendored/sdk48/react-native-svg/apple/ViewManagers/
H A DABI48_0_0RNSVGSvgViewManager.mm35 - (void)toDataURL:(nonnull NSNumber *)ABI48_0_0ReactTag
52 ABI48_0_0RCTLogError(@"Invalid width or height given to toDataURL");
71 … [self toDataURL:ABI48_0_0ReactTag options:options callback:callback attempt:(attempt + 1)];
81 ABI48_0_0RCT_EXPORT_METHOD(toDataURL category
86 [self toDataURL:ABI48_0_0ReactTag options:options callback:callback attempt:0];
/expo/ios/vendored/sdk47/react-native-svg/apple/ViewManagers/
H A DABI47_0_0RNSVGSvgViewManager.mm35 - (void)toDataURL:(nonnull NSNumber *)ABI47_0_0ReactTag
52 ABI47_0_0RCTLogError(@"Invalid width or height given to toDataURL");
71 … [self toDataURL:ABI47_0_0ReactTag options:options callback:callback attempt:(attempt + 1)];
81 ABI47_0_0RCT_EXPORT_METHOD(toDataURL category
86 [self toDataURL:ABI47_0_0ReactTag options:options callback:callback attempt:0];
/expo/ios/vendored/sdk49/react-native-svg/apple/
H A DABI49_0_0RNSVGSvgViewModule.mm24 - (void)toDataURL:(nonnull NSNumber *)ABI49_0_0ReactTag
47 ABI49_0_0RCTLogError(@"Invalid width or height given to toDataURL");
65 [self toDataURL:ABI49_0_0ReactTag options:options callback:callback attempt:(attempt + 1)];
78 ABI49_0_0RCT_EXPORT_METHOD(toDataURL
83 [self toDataURL:ABI49_0_0ReactTag options:options callback:callback attempt:0];
/expo/ios/vendored/unversioned/react-native-svg/apple/
H A DRNSVGSvgViewModule.mm24 - (void)toDataURL:(nonnull NSNumber *)reactTag
47 RCTLogError(@"Invalid width or height given to toDataURL");
65 [self toDataURL:reactTag options:options callback:callback attempt:(attempt + 1)];
78 RCT_EXPORT_METHOD(toDataURL
83 [self toDataURL:reactTag options:options callback:callback attempt:0];
/expo/packages/expo-image-manipulator/build/
H A DExpoImageManipulator.web.js11 uri = canvas.toDataURL('image/' + format, quality);
15 uri = canvas.toDataURL();
H A DExpoImageManipulator.web.js.map1 …\n uri = canvas.toDataURL('image/' + format, quality);\n } else {\n // defaults to PNG with…
/expo/packages/expo-image-manipulator/src/
H A DExpoImageManipulator.web.ts13 uri = canvas.toDataURL('image/' + format, quality);
16 uri = canvas.toDataURL();
/expo/android/vendored/unversioned/react-native-svg/android/src/paper/java/com/horcrux/svg/
H A DNativeSvgViewModuleSpec.java27 public abstract void toDataURL(Double tag, ReadableMap options, Callback callback); in toDataURL() method in NativeSvgViewModuleSpec
/expo/android/vendored/sdk49/react-native-svg/android/src/paper/java/abi49_0_0/com/horcrux/svg/
H A DNativeSvgViewModuleSpec.java27 public abstract void toDataURL(Double tag, ReadableMap options, Callback callback); in toDataURL() method in NativeSvgViewModuleSpec
/expo/packages/expo-camera/build/
H A DWebCameraUtils.js16 export function toDataURL(canvas, imageType, quality) { function
21 return canvas.toDataURL(format, quality);
24 return canvas.toDataURL(format);
81 return toDataURL(canvas, imageType, quality);
H A DWebCameraUtils.d.ts9 export declare function toDataURL(canvas: HTMLCanvasElement, imageType: ImageType, quality: number)…
H A DWebCameraUtils.js.map1toDataURL(\n canvas: HTMLCanvasElement,\n imageType: ImageType,\n quality: number\n): string {\…
/expo/packages/expo-camera/src/
H A DWebCameraUtils.ts34 export function toDataURL( function
52 return canvas.toDataURL(format, quality);
54 return canvas.toDataURL(format);
138 return toDataURL(canvas, imageType!, quality);
/expo/apps/native-component-list/src/screens/GL/
H A DBeforePIXI.native.tsx94 canvas.toDataURL = () => ({});
/expo/apps/native-component-list/src/screens/SVG/examples/
H A DSvg.tsx103 this.root.toDataURL((base64: string) => {
/expo/packages/expo-image-manipulator/
H A DCHANGELOG.md126 - Refactored web to pass canvases to each action avoiding multiple calls to `toDataURL`. ([#14145](…
/expo/packages/jest-expo/src/preset/
H A DexpoModules.js1044 toDataURL: { type: 'function', functionType: 'async' }, property

12