Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7803371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T01:33:39+00:00 2026-06-02T01:33:39+00:00

Is there any reference tutorial for getting the image size in small or medium

  • 0

Is there any reference tutorial for getting the image size in small or medium environment.

I just want to know the calculation of image sizes in terms of Width and Height, How can we calculate UIImage size in pixels when It is small, medium or large like in apple mail.

It is just like when we attach image in Mail it asks small, medium, large..

Plz don’t provide this as I already gone through this..

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T01:33:41+00:00Added an answer on June 2, 2026 at 1:33 am

    Finally seeing from many solutions I got the following solution and done code according this.

    We can get images like following.

    Small = 320 pixels on longest edge JPEG
    Medium = 640 pixels on longest edge JPEG
    Large =  1296 pixels on longest edge JPEG
    

    Where typeOfImage = 0,1,2 for small, medium and large respectively.

    -(CGSize)getImageWithRespectiveSize:(UIImage *)pImage withType:(NSInteger)typeOfImg
    {
        CGSize pSize;
        if(typeOfImg == 0)
            pSize = [self getCGSizesOfImages:320 andImage:pImage];
        else if(typeOfImg == 1)
            pSize = [self getCGSizesOfImages:640 andImage:pImage];
        else if(typeOfImg == 2)
            pSize = [self getCGSizesOfImages:1296 andImage:pImage];
        else 
            pSize = CGSizeMake(pImage.size.width, pImage.size.height);
    
        return pSize;
    }
    
    -(CGSize)getCGSizesOfImages:(NSInteger)pIntPixels andImage:(UIImage *)pImage
    {
        CGSize pSize;
        if(pImage.size.width > pImage.size.height)
        {
            CGFloat tmp = pImage.size.height/pImage.size.width*pIntPixels;
            pSize = CGSizeMake(pIntPixels, tmp);
        }
        else if(pImage.size.width < pImage.size.height)
        {
            CGFloat tmp = pImage.size.width/pImage.size.height*pIntPixels;
            pSize =  CGSizeMake(tmp, pIntPixels);       
        }   
        else
        {
            CGFloat tmp = pImage.size.height/pImage.size.width*pIntPixels;
            pSize =  CGSizeMake(tmp, pIntPixels);       
        }
        return pSize;
    }
    

    and call to function like this

    CGSize size = [self getImageWithRespectiveSize:imgOriginal withType:0];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to make a DataTemplate reference itself just from XAML? In
I know how to reference an existing .dll to IronPython, but is there any
Is there any reference or tutorial for this? And if it's possible, have the
Are there any reference cards or cheats sheets available for UML?
is there any way to reference a class name from within the class declaration?
Is there any quick guide/reference to list all the countries and its states/provinces? Like
Is there any way to add reference from one winforms to another winforms?? There
Is there any time in which a reference type is more efficient than a
Is there any way to indicate to ReSharper that a null reference won't occur
Is there any way to embed Flash completely in HTML, without reference to an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.