Coder Social home page Coder Social logo

Comments (6)

zakdances avatar zakdances commented on April 28, 2024

I want to add something like this as a RAC extension:

- (RACSignal *)resizeWithAspect:(RACSignal *)maxSize
{
    return [[self combineLatestWith:maxSize] map:^id(RACTuple *tuple) {
        RACTupleUnpack_(NSValue *oldSize,NSValue *maxSize) = tuple;
        CGSize newSize = AVMakeRectWithAspectRatioInsideRect(oldSize.med_sizeValue, CGRectWithSize(maxSize.med_sizeValue)).size;

        return MEDBox(newSize);
    }];
}

edit here's another possibility:

- (RACSignal *)resizeWithAspect:(RACSignal *)maxSize
{
    return [RACSignal combineLatest:@[self,maxSize] reduce:^id(NSValue *currentSize,NSValue *maxSize) {

        CGSize newSize = AVMakeRectWithAspectRatioInsideRect(currentSize.med_sizeValue, CGRectWithSize(maxSize.med_sizeValue)).size;

        return MEDBox(newSize);
    }];
}

Thoughts?

from reactivecocoalayout.

jspahrsummers avatar jspahrsummers commented on April 28, 2024

A method like that would be useful, but we can't introduce a dependency on AVFoundation.

If you're willing to rewrite the sizing algorithm from scratch, I'd be happy to review a PR.

from reactivecocoalayout.

zakdances avatar zakdances commented on April 28, 2024

Yeah, I tried to find the actual implementation, but of course avfoundations m files are a tightly guarded secret. I'll try to come up with something equivalent.

from reactivecocoalayout.

jspahrsummers avatar jspahrsummers commented on April 28, 2024

In that case, let's leave this open until a PR is merged that completes it.

from reactivecocoalayout.

zakdances avatar zakdances commented on April 28, 2024

Instead of targeting CGSize, perhaps a better approach would be to mirror the syntax of UIViews contentMode. A signal with a name similar to UIViewContentModeScaleAspectFit like -(RACSignal *)scaleAspectFit:(RACSignal *)maxRect]. I'll push something based on that concept.

from reactivecocoalayout.

zakdances avatar zakdances commented on April 28, 2024

First things first. Submitting pull request to Archimedes for the functions themselves.

github/Archimedes#14

Then a special RACSignal should be added to use them.

from reactivecocoalayout.

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.