FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Manage other units for print by clemdesign · Pull Request #159 · Gregwar/Image · GitHub

/ Image Public

Manage other units for print - #159

Open
clemdesign wants to merge 10 commits into
Gregwar:masterfrom
clemdesign:master
Open

clemdesign wants to merge 10 commits into
Gregwar:masterfrom
clemdesign:master

Conversation

Copy link
Copy Markdown

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.

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
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


Back | FazBrowse Home | New Git URL