472,363 Members | 1,981 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,363 software developers and data experts.

how can i make chess like pattern image using gd library

245 100+
Hey geeks,
i want to draw a jpeg image of pattern chess.
I can draw solid color image using gd libraray and here is my code

Expand|Select|Wrap|Line Numbers
  1. //$t_im having image path, $t_wt,$t_ht is specified width and height respectively.
  2. $blue = imagecolorallocate($t_im,149,0,0);
  3. imagefilledrectangle($t_im,0,0,$t_wt,$t_ht,$blue);
  4.  
But i want to draw image like a chess have pattern. Please find the attahced image for reference that i am interested to draw like that
Attached Images
 
Nov 11 '09 #1
4 4685
Markus
6,050 Expert 4TB
Here is the skeleton algorithm for outputting a chessboard:

Expand|Select|Wrap|Line Numbers
  1. <?php
  2.  
  3. // Chess board is 8x8
  4. // Every row and column the colors swap.
  5.  
  6. $array = array('b', 'w');
  7.  
  8. // Rows
  9. for ($y = 0; $y < 8; $y++) {
  10.     // Columns
  11.     for    ($x = 0; $x < 8; $x++) {
  12.         // print the first index of array
  13.         print $array[0];
  14.         // and then switch the array values.
  15.         $array = array_reverse($array);
  16.     }
  17.     print "\n";
  18.     $array = array_reverse($array);
  19. }
  20.  
Nov 11 '09 #2
neovantage
245 100+
Yeh thx but how can i integrate this with my script.
I mean say i want to create an image of chess like pattern
Expand|Select|Wrap|Line Numbers
  1. <?
  2. header("Content-type: image/jpeg");
  3. $t_im = imagecreatetruecolor("50","50");
  4. $blue = imagecolorallocate($t_im,149,0,0);
  5. imagefilledrectangle($t_im,0,0,$t_wt,$t_ht,$blue);
  6. ?>
  7.  
How can i apply your given algorithm in this code
Nov 11 '09 #3
Markus
6,050 Expert 4TB
Hi, Neo.

Please have a look at the following code - do your best to understand it and ask questions if you don't.

Mark.

Expand|Select|Wrap|Line Numbers
  1. <?php
  2.  
  3. // Create image of set size - must be divisible by 8 
  4. // (8 columns / rows in a chess board)
  5. $img = imagecreatetruecolor(160, 160);
  6.  
  7. // define the colors
  8. // these are in an array so we can conveniently and 
  9. // efficiently reverse them.
  10. $colors = array(
  11.     imagecolorallocate($img, 255, 0, 0), // Red
  12.     imagecolorallocate($img, 0, 0, 255)     // Blue
  13. );
  14.  
  15. // 8 rows
  16. for ($y = 0; $y < 8; $y++) {
  17.     // 8 columns
  18.     for ($x = 0; $x < 8; $x++) {
  19.         // Fill in a rectangle on our main image
  20.         imagefilledrectangle(
  21.             // the image resource (line 5)
  22.             $img,
  23.             // The starting x co-ordinate
  24.             // If we are on loop 2 of the outter loop, $y would be 1.
  25.             // The following line would evaluate to (1 * 20) 20. Ergo, the 
  26.             // coord would be plotted at that position (from the top).
  27.             // The 20 here is our rectangle height (as is with all the following
  28.             // 20s)
  29.             ($y * 20),
  30.             // The starting y co-ordinate.
  31.             ($x * 20),
  32.             // This time we add 20 to our starting x coord to find our
  33.             // ending x coord.
  34.             ($y * 20) + 20,
  35.             // Etc.
  36.             ($x * 20) + 20,
  37.             // Pick the first color index.
  38.             $colors[0]
  39.         );
  40.         // Switch the colors to achieve alternating colors.
  41.         $colors = array_reverse($colors);
  42.     }
  43.     // Again switch the colors.
  44.     // Take this out to see why we do this.
  45.     $colors = array_reverse($colors);
  46. }
  47.  
  48. header("content-type: image/png");
  49.  
  50. imagepng($img);
  51. imagedestroy($img);
  52.  
Nov 11 '09 #4
neovantage
245 100+
Thanks it works but i did a lit alteration in this code.
Expand|Select|Wrap|Line Numbers
  1. $t_im = imagecreatetruecolor($t_wt,$t_ht);
  2.         $t2_im = imagecreatetruecolor($t2_wt,$t2_ht);
  3.  
  4.         $fekete = imagecolorallocate($t_im,255,115,114);
  5.         $feher = imagecolorallocate($t_im,226,227,228);
  6.  
  7.         imagefill($t_im,0,0,$feher);
  8.         $max_x = ceil($t_wt / 10);
  9.         $max_y = ceil($t_ht / 10);
  10.         $x = 0;
  11.         $y = 0;
  12.         for($i = 1; $i <= $max_y; $i++){
  13.             if(($i%2) == 0){
  14.                 $x = 0;
  15.             }else{
  16.                 $x = 10;
  17.             }
  18.             for($j = 1; $j <= $max_x; $j++){
  19.                 imagefilledrectangle($t_im,$x,$y,($x+10),($y+10),$fekete);
  20.                 $x = $x + 20;
  21.             }
  22.             $y+=10;
  23.         }
  24.  
Once again thanks a lot for this sir
Nov 12 '09 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

9
by: Michel | last post by:
I am trying to display a position, on a chessboard, corresponding to a sequence of moves recorded in a MySql database. Any clue? Michel
13
by: Brian | last post by:
Hi all... This question is more for the GURUs out there. It is not a question on how to do something, but why it happens, and I am trying to figure out if there is a pattern. I am using IE, but...
1
by: Paul Franklin | last post by:
Hi, I am writing some C++ code, and the problem is analogous to the following situation: Take a Chess Board of 8x8 (nxn) blocks and I have 8 (n) horses. Like in chess, the horses are placed at...
5
by: Will McGugan | last post by:
Hi folks, I've written a Python chess module that does the following. * Reads / Writes PGN files * Write FEN files * Validates moves * Lists legal moves * Detects check / mate / stalemate /...
11
by: Gregc. | last post by:
G'day I am writing a chess program. Here is my code: #include <stdio.h> #include <stdlib.h> bool isInCheck (int krow, int kcol, int qrow, int qcol) { double check;
5
by: Paolo Pantaleo | last post by:
Well Python is not a good language for writing a chess engine (even if a chess engine exists: http://www.kolumbus.fi/jyrki.alakuijala/pychess.html), but it could be grat for chess interfaces, for...
63
by: biyubi | last post by:
Hi, a year ago I won the 2005 Best Game categoryof the International Obfuscated C Code Contestwith a chess program. http://www.ioccc.org/whowon2005.html...
2
by: CoreyWhite | last post by:
When playing games, perhaps the most simple is tic-tac-toe. The game has two simple strategies, one is defensive and the other offensive. It is not hard at first to learn how to tie games when...
2
by: eureka2050 | last post by:
Greetings everyone, I am a PHP beginner and this is my first time here. I am using the pdf2html program which generates an image of every corresponding PDF page. Every image file basically...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
0
by: Johno34 | last post by:
I have this click event on my form. It speaks to a Datasheet Subform Private Sub Command260_Click() Dim r As DAO.Recordset Set r = Form_frmABCD.Form.RecordsetClone r.MoveFirst Do If...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.