Skip to content

Instantly share code, notes, and snippets.

View Anilkumar18's full-sized avatar

Anilkumar Anilkumar18

  • App Innovation Technologies
View GitHub Profile
@ahmedAlmasri
ahmedAlmasri / ImageCompression.swift
Last active July 31, 2025 07:46
ios swift Image compression
//: Playground - noun: a place where people can play
import UIKit
do{
func compressImage(_ img:UIImage) -> UIImage? {
// Reducing file size to a 10th
var actualHeight: CGFloat = img.size.height
var actualWidth: CGFloat = img.size.width
let maxHeight: CGFloat = 1136.0