Server IP : 172.67.216.182 / Your IP : 162.158.106.124 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/php/82/src/ext/gd/libgd/ |
Upload File : |
#include "gd.h" void gdImageFlipVertical(gdImagePtr im) { register int x, y; if (im->trueColor) { for (y = 0; y < im->sy / 2; y++) { int *row_dst = im->tpixels[y]; int *row_src = im->tpixels[im->sy - 1 - y]; for (x = 0; x < im->sx; x++) { register int p; p = row_dst[x]; row_dst[x] = im->tpixels[im->sy - 1 - y][x]; row_src[x] = p; } } } else { unsigned char p; for (y = 0; y < im->sy / 2; y++) { for (x = 0; x < im->sx; x++) { p = im->pixels[y][x]; im->pixels[y][x] = im->pixels[im->sy - 1 - y][x]; im->pixels[im->sy - 1 - y][x] = p; } } } return; } void gdImageFlipHorizontal(gdImagePtr im) { int x, y; if (im->trueColor) { int *px1, *px2, tmp; for (y = 0; y < im->sy; y++) { px1 = im->tpixels[y]; px2 = im->tpixels[y] + im->sx - 1; for (x = 0; x < (im->sx >> 1); x++) { tmp = *px1; *px1 = *px2; *px2 = tmp; px1++; px2--; } } } else { unsigned char *px1, *px2, tmp; for (y = 0; y < im->sy; y++) { px1 = im->pixels[y]; px2 = im->pixels[y] + im->sx - 1; for (x = 0; x < (im->sx >> 1); x++) { tmp = *px1; *px1 = *px2; *px2 = tmp; px1++; px2--; } } } } void gdImageFlipBoth(gdImagePtr im) { gdImageFlipVertical(im); gdImageFlipHorizontal(im); }