- 论坛徽章:
- 0
|
做了测试了 同一台pc 做的测试 centos 4.0 和 bsd 6.1
大家都是默认的
-
- #include "gd.h"
- /* Bring in standard I/O so we can output the PNG to a file */
- #include <stdio.h>
- #include <time.h>
- int main() {
- int i = 0;
- time_t a,b;
- time(&a);
- for (i = 0; i <5000; i++)
- {
- draw(i);
- }
- time(&b);
- printf("%s ", ctime(&a));
- printf("%s", ctime(&b));
- printf("take %d \n", b-a);
- return 0;
- }
- int draw(int number)
- {
- /* Declare the image */
- gdImagePtr im;
- /* Declare output files */
- FILE *pngout, *jpegout;
- /* Declare color indexes */
- int black;
- int white;
- int red;
- int green;
-
- int width = 1800;
- int heigh = 500;
- int xhead = 50;
- int yhead = 50;
- int jianju = 10;
- int xtail = xhead;
- int ytail = yhead;
- int xnum = (width- xhead- xtail)/ jianju ;
- int ynum = (heigh- yhead- ytail)/ jianju;
- double PI = 3.1415926;
- int i =0;
- /* Allocate the image: 64 pixels across by 64 pixels tall */
- im = gdImageCreate(width, heigh);
- /* Allocate the color black (red, green and blue all minimum).
- Since this is the first color in a new image, it will be the background color. */
-
- white = gdImageColorAllocate(im, 255, 255, 255);
- black = gdImageColorAllocate(im, 0, 0, 0);
- green = gdImageColorAllocate(im, 0, 255, 0);
- red = gdImageColorAllocate(im, 255, 0, 0);
-
-
- /* Allocate the color white (red, green and blue all maximum). */
-
- /* Draw a line from the upper left to the lower right, using white color index. */
-
- /*
- gdImageLine(im, 0, 0, 63, 63, black);
- gdImageLine(im, 100, 100, 63+100, 63+100, red);
- gdImageLine(im, 0+200, 0+200, 300, 300, green);
- */
-
- for (i = 0; i < ynum; i++) { // �� ==
- gdImageLine(im, xhead, yhead+i*jianju , xhead + xnum*jianju ,yhead+i*jianju, green);
- }
-
- for (i = 0; i < xnum; i++) { // ֱ�
- gdImageLine(im, xhead + i*jianju, heigh-yhead , xhead + i*jianju , heigh-yhead-ynum*jianju, green);
- }
-
- for (i = 0; i < xnum*jianju; i++) { // ֱ�
- gdImageLine(im, xhead + i, (heigh-yhead -ytail)*(1.0/2)+yhead+(sin(PI * (6*i*0.1)/180)*(heigh-yhead -ytail)*(1.0/2)) , xhead + i , (heigh-yhead -ytail)*(1.0/2)+ynum*jianju, red);
- }
-
-
- /* Open a file for writing. "wb" means "write binary", important
- under MSDOS, harmless under Unix. */
- char pngfile[256] ={0};
- char jpgfile[256] ={0};
- sprintf(pngfile, "%s%04d.png","test",number);
- sprintf(jpgfile, "%s%04d.jpg", "test",number);
-
- pngout = fopen(pngfile, "wb");
- /* Do the same for a JPEG-format file. */
- jpegout = fopen(jpgfile, "wb");
- /* Output the image to the disk file in PNG format. */
- // gdImagePng(im, pngout);
- /* Output the same image in JPEG format, using the default JPEG quality setting. */
- // gdImageJpeg(im, jpegout, -1);
- /* Close the files. */
- fclose(pngout);
- fclose(jpegout);
- /* Destroy the image in memory. */
- gdImageDestroy(im);
-
- }
复制代码
做了2次 测试 测试的差别 在于 一次 将文件保存为jpg 和png 第二次不保存
因为我知道bsd 的磁盘操作能力不强
但是结果让我太失望
不保存的结果
linux是 177s
bsd 403s
保存的结果 是
linux 692s
bsd 1262s
效果差太多了。 当然你可以说这么测试不权威 。但是代码都用一样的,一样的没有优化的情况下 ,同一台pc
而且centos 还有mysql apache mysql 等几个服务。 (都没有负载)结果差太多了。
bsder 要加油了。
你们也可以在自己的机器上 使用linux 和bsd 都跑跑看。 看看效果差多少? 如果bsd 快了
把调节的参数也贴贴看。
cmd: gcc -o 1 1.c -lgd
还有一个结果 就是 哭芮 2 不是很强啊
1.8*4 的 +1g ramd centos 结果也是99s
而我的机器 c31.1 +256 centos 是 173
最后希望 客观的看待这个结果。 找到问题的关键 |
|