訓練家的快寫筆記

The legend of trainer's paper


搜尋:

     關閉     
標題:gd c code sample
內容:

#include <stdio.h>
#include <gd.h>
int main(void)
{
  printf("TEST\n");
  gdImagePtr im;
  FILE *fp = fopen("a.png","w");
  im = gdImageCreate(100,100);
  int white = gdImageColorAllocate(im,255,0,0);

  gdImagePng(im,fp);
  return 1;
}