mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
10 lines
258 B
PHP
10 lines
258 B
PHP
<?php
|
|
$from = imageCreateFromJpeg('sample2.jpg');
|
|
$to = imageCreateTrueColor(2000, 2000);
|
|
imageCopyResampled(
|
|
$to, $from, 0, 0, 0, 0, imageSX($to), imageSY($to),
|
|
imageSX($from), imageSY($from)
|
|
);
|
|
header('Content-type: image/jpeg');
|
|
imageJpeg($to);
|