Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
israel-nogueira committed Jun 6, 2023
1 parent 37b7e5c commit a4fd897
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Crop simples de uma imagem

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;

/*
|--------------------------------
Expand Down Expand Up @@ -110,7 +110,7 @@ Comporta as exetensões: ```.jpg```, ```.gif```, ```.webp```, ```.png```.

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;


/*
Expand Down Expand Up @@ -148,7 +148,7 @@ Simplesmente retorna uma imagem e printa no browser:

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;

sweet::printBrowser(__DIR__.'/original.webp');

Expand All @@ -162,7 +162,7 @@ Cropa e retorna uma thumb redonda

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;

/*
|-------------------------------------------------------
Expand Down Expand Up @@ -194,7 +194,7 @@ Nos retorna as cores disponiveis em uma imagem;

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;

/*
|-------------------------------------------------------
Expand Down Expand Up @@ -246,7 +246,7 @@ Nos retorna a cor principal de uma imagem;

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;

/*
|-------------------------------------------------------
Expand Down Expand Up @@ -280,7 +280,7 @@ Nos retorna a cor principal de uma imagem;

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;

/*
|-------------------------------------------------------
Expand Down Expand Up @@ -346,7 +346,7 @@ Tambem um placeholder mais simples, com apenas a cor predominante com o sufixo `

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;

/*
|-------------------------------------------------------
Expand All @@ -371,7 +371,7 @@ Veja como é simples adicionar um texto sob uma imagem;<br>

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;

/*
|-------------------------------------------------------
Expand Down Expand Up @@ -404,7 +404,7 @@ Com essa função poderemos mesclar imagens programaticamente;

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;

/*
|-------------------------------------------------------
Expand Down Expand Up @@ -435,7 +435,7 @@ Podemos utilizar essa função para gerar vários formatos de uma só imagem;

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;

/*
|-----------------------------------------------------
Expand Down Expand Up @@ -463,7 +463,7 @@ Caso não queira dar um bnome pra imagem, será gerado uma HASH randômica;

<?php
include "vendor\autoload.php";
use IsraelNogueira\sweetThumb;
use IsraelNogueira\SweetThumb\sweet;

/*
|-----------------------------------------------------
Expand Down
2 changes: 0 additions & 2 deletions src/sweet.php
Original file line number Diff line number Diff line change
Expand Up @@ -630,9 +630,7 @@ static public function crop($_IMG=null,$size=[50,50,100],$sufix=true,$crop=true,
$thumb->resize=$resize;
$thumb->setDimensions([$size[0],($size[1]??$size[0])]); //largura e altura da thumb, aceita arrays multidimensionais
$thumb->setFolder(dirname($_IMG)); //caso queira que a thumb seja salva numa pasta

$qualidade = (count($size)==3) ? $size[2] : null;

$thumb->setJpegQuality( ((is_null($qualidade)||$qualidade==100)?100 :$qualidade)); //qualidade JPG (0-100)
$thumb->setPngQuality( ((is_null($qualidade)||$qualidade==100) ? 9 :intVal((($qualidade*9)/100)))); //qualidade do PNG (0-9)
$thumb->setGifQuality( ((is_null($qualidade)||$qualidade==100)?100 :$qualidade)); //qualidade do GIF (0-100)
Expand Down
2 changes: 1 addition & 1 deletion src/thumb.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function __construct( $image ) {
image::setJpegQuality( 100 );
image::setPngQuality( 9 );
image::setGifQuality( 100 );
thumbbrowser::showBrowser( true );
thumbbrowser::showBrowser( false );
thumbbrowser::forceDownload( false );
}

Expand Down

0 comments on commit a4fd897

Please sign in to comment.