build: compile release APK and update dependencies (expo-image-manipulator/loader)

This commit is contained in:
2026-05-31 14:24:26 +02:00
parent 69637c4203
commit 2b5a259fe5
1260 changed files with 3804 additions and 166620 deletions
@@ -0,0 +1,79 @@
// Copyright 2021-present 650 Industries. All rights reserved.
import CoreGraphics
import ExpoModulesCore
/**
Options provided for resize action.
*/
internal struct ResizeOptions: Record {
@Field
var width: CGFloat?
@Field
var height: CGFloat?
}
/**
Cropping rect for crop action.
*/
internal struct CropRect: Record {
@Field
var originX: Double = 0.0
@Field
var originY: Double = 0.0
@Field
var width: Double = 0.0
@Field
var height: Double = 0.0
func toRect() -> CGRect {
return CGRect(x: originX, y: originY, width: width, height: height)
}
}
/**
Options to use when saving the resulted image.
*/
internal struct ManipulateOptions: Record {
@Field
var base64: Bool = false
@Field
var compress: Double = 1.0
@Field
var format: ImageFormat = .jpeg
}
/**
Possible options for flip action.
*/
internal enum FlipType: String, Enumerable {
case vertical
case horizontal
}
/**
Enum with supported image formats.
*/
internal enum ImageFormat: String, Enumerable {
case jpeg
case jpg
case png
case webp
var fileExtension: String {
switch self {
case .jpeg, .jpg:
return ".jpg"
case .png:
return ".png"
case .webp:
return ".webp"
}
}
}