Skip to content

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