GithubHelp home page GithubHelp logo

Aspect ratio about pinlayout HOT 4 CLOSED

layoutbox avatar layoutbox commented on May 14, 2024
Aspect ratio

from pinlayout.

Comments (4)

lucdion avatar lucdion commented on May 14, 2024 3

Hi @Sully73, I've completed the implementation of aspectRatio, check the release 1.3.2: https://github.com/mirego/PinLayout/releases/tag/1.3.2

from pinlayout.

lucdion avatar lucdion commented on May 14, 2024

Hi @Sully73, thanks for the great comment, it's appreciated 👍

The support of aspectRatio is on my todo list.

What will be implemented:

  • Add a method aspectRatio(:CGFloat). If the width or the height has been set, the aspectRatio value will be used to compute the other dimension. If neither dimension (width/height) or both have been specified, aspectRatio won't be applied and a warning will be displayed.
  • Add a method aspectRatio() that will only work with UIImageView. This method will use the UIImageView's image aspect ratio.

I should be able to play with this week.

For the time being the only option I see is to layout your UIImageView in two operations:

let imageSize = myImageView.image!.size
let imageRatio = imageSize.width / imageSize.height

// Layout the UIImageView without specifiying the height.
myImageView.pin.top(20).left(20).width(50%)
// then adjust the height
myImageView.pin.height(myImageView.frame.width / imageRatio)

Soon you'll be able to do:

myImageView.top(20).left(20).width(50%).aspectRatio()

If you have any comment on my aspectRatio proposition just let me know 🙂

from pinlayout.

corysullivan avatar corysullivan commented on May 14, 2024

What your proposing sounds great. That will handle all of my needs. Thanks

from pinlayout.

corysullivan avatar corysullivan commented on May 14, 2024

Thanks very much!

from pinlayout.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.