Skip to content

Instantly share code, notes, and snippets.

@corehello
Created September 1, 2016 05:43
Show Gist options
  • Save corehello/3fb71d7bde82d1cf161ab8ed07949d6a to your computer and use it in GitHub Desktop.
Save corehello/3fb71d7bde82d1cf161ab8ed07949d6a to your computer and use it in GitHub Desktop.
draw a circle in c lang.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
typedef struct {
size_t width;
size_t height;
unsigned char *data;
} Image;
static Image *
image_new (size_t width,
size_t height)
{
Image *image;
image = malloc (sizeof *image);
image->width = width;
image->height = height;
image->data = malloc (width * height);
return image;
}
static void
image_free (Image *image)
{
free (image->data);
free (image);
}
static void
image_fill (Image *image,
unsigned char value)
{
memset (image->data, value, image->width * image->height);
}
/**
* image_set_pixel:
*
* Sets a pixel passed in signed (x, y) coordinates, where (0,0) is at
* the center of the image.
**/
static void
image_set_pixel (Image *image,
ssize_t x,
ssize_t y,
unsigned char value)
{
size_t tx, ty;
unsigned char *p;
tx = (image->width / 2) + x;
ty = (image->height / 2) + y;
p = image->data + (ty * image->width) + tx;
*p = value;
}
static void
image_save (const Image *image,
const char *filename)
{
FILE *out;
out = fopen (filename, "wb");
if (!out)
return;
fprintf (out, "P5\n");
fprintf (out, "%zu %zu\n", image->width, image->height);
fprintf (out, "255\n");
fwrite (image->data, 1, image->width * image->height, out);
fclose (out);
}
static void
draw_circle (Image *image,
int radius,
unsigned char value)
{
int x, y;
for (x = -radius; x <= radius; x++) {
y = (int) sqrt ((double) (radius * radius) - (x * x));
image_set_pixel (image, x, y, value);
image_set_pixel (image, x, -y, value);
}
}
int
main (int argc, char *argv[])
{
Image *image;
image = image_new (600, 600);
image_fill (image, 0xff);
draw_circle (image, 200, 0);
image_save (image, "circle.pgm");
image_free (image);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment