Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 355 Bytes

how-to-convert-jpg-to-png.md

File metadata and controls

15 lines (9 loc) · 355 Bytes

How to convert jpg to png

<?php

$im = imagecreatefromjpeg('image.jpg');
imagepng($im, 'result.png');
  • imagecreatefromjpeg - creates lib:GD image object from given PNG image
  • imagepng - saves given image resource in PNG format

group: convert