티스토리 뷰
<?php
// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('text.png');
$im = imagecreatefrompng('original.png');
// Set the margins for the stamp and get the height/width of the stamp image
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);
// Copy the stamp image onto our photo using the margin offsets and the photo
// width to calculate positioning of the stamp.
imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));
//imagejpeg($im,"aa.png");
//png 파일을 imagejpeg 하면 이미지가 선명하지 않다.
//그래서 imagepng를 써준다.
imagepng($im,"aa.png");
// Output and free memory
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
자세한 내용은 아래의 링크 참조
https://opentutorials.org/module/6/5137
// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('text.png');
$im = imagecreatefrompng('original.png');
// Set the margins for the stamp and get the height/width of the stamp image
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);
// Copy the stamp image onto our photo using the margin offsets and the photo
// width to calculate positioning of the stamp.
imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));
//imagejpeg($im,"aa.png");
//png 파일을 imagejpeg 하면 이미지가 선명하지 않다.
//그래서 imagepng를 써준다.
imagepng($im,"aa.png");
// Output and free memory
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
자세한 내용은 아래의 링크 참조
https://opentutorials.org/module/6/5137
'php' 카테고리의 다른 글
php 엑셀 excel 업로드 - phpExcelReader oleread.php (0) | 2017.12.11 |
---|---|
php 파일명 줄(라인) 번호 로그 출력하는 방법 (0) | 2017.12.01 |
[php] <?php <? 처럼 짧은태그 사용되게 하는 방법 short_open_tag (0) | 2017.11.01 |
php 정규식 사용해서 이메일주소 추출 (0) | 2017.10.13 |
php 초보자를 위한 예제 테스트 소스들 (0) | 2017.06.11 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- C언어
- xe애드온
- C
- php
- proc
- 포인터
- 플러터
- JDBC
- 이클립스
- 자바 smtp
- xe addon
- 문자열
- 파싱
- Python
- 파이썬
- ocajp
- XE
- esql
- ocjap
- 인포믹스
- 라이믹스 모듈
- KG
- webix
- XE3
- MySQL
- 자바
- EC
- 프로씨
- 오라클
- 스크래핑
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
글 보관함