Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manage other units for print #159

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open

Conversation

clemdesign
Copy link

I propose this work in order to:

  • add method getResolution to Image class. This method return the resolution of resource.
  • add class Converter in order to convert centimeters to pixels, inch to pixels...

It allow the user to manage picture for print according the resolution.

Example:

    $image = $this->open('monalisa.jpg');
    $image->init();

    $resolution = $image->getResolution();
    
    // Save the picture for 6 cm print
    $image
        ->cropResize(Converter::cmToPixels($resolution[0], 6), Converter::cmToPixels($resolution[1], 6))
        ->save($pathToJpgFile);

Tests and Readme of project is updated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant