Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In this assignment, you will write a C program that involves processing 2 - dimensional arrays. A two - dimensional array is often used to

In this assignment, you will write a C program that involves processing 2-dimensional arrays. A two-dimensional array is often used to represent a picture (or an image). For simplicity, your program will process only black-and-white images. Each pixel in the image will be a single char. The only legal chars are the asterisk (*) which represents the color black, and the blank space () which represents the color white. Your program must read the image from stdin. The format of the input file is as follows: the first line of the file will contain two integers followed immediately by a newline. These numbers represent the number of rows and columns in the image, respectively. These dimensions may be any positive int value (i.e., more than 1 digit is possible, such as 1237). Each succeeding line will contain one row of the image, followed by a newline char. The newline chars are not part of the image, and should not be included in any of the image processing transformations. For example, the input might be: 55**************** The size of the image will be at least 1x1. You must not make any assumptions about the maximum possible size of an image. If the input file does not have this format, then your program should abort and return an exit status of 1. Note that any additional chars in the input file also constitute an invalid input file. Your C program can abort processing and return to the command line by executing the statement: exit(1); Your program will need to #include in order to access the exit function. Your program must implement the following image transformations. invert: This transformation should change every * into a blank character, and every blank character into a * flip direction: This transformation should flip the image. If the direction is either H or h, then the image should be flipped across an imaginary vertical line down the center of the image. This transformation is illustrated below for an image of the letter F. If the direction is either V or V, then the image should be flipped across an imaginary horizontal line across the center of the image. Flip H rotate degrees: This transformation should rotate the image clockwise the specified number of degrees. The only legal values for degrees are 90,180 and 270. rotate 90 stretch factor: This transformation should stretch the image horizontally by the given multiple. Note that you will need to use dynamically allocated memory to deal with an image that changes its size. stretch 2 The input image to your program must be read from the standard input (stdin), but the transformations to the image will be specified on the command line. You will invoke the program as follows: $ ./a.out list-of-desired-transformations < inputFileName The syntax for the list-of-desired-transformations is as follows: rot indicates a rotation, and must be followed by exactly 90,180, or 270. flip indicates a flip, and must be followed by a single char, which must be V, v, H, or h inv indicates an inversion stretch indicates a stretch, and must be followed by a single integer value (such as,2 or 15 or 345) For example, the program might be invoked as: $ ./a.out rot 90 flip H inv rot 180 stretch 3 flip V < inputFileName Note that each entry on the command line is a string of a characters, such as rot or 90 or 3. You can convert a string into an integer using the C library function atoi (ascii to integer), as shown below. int foobar = atoi ( argv[2]); Your program should perform each of the given transformations, in the given order, and then output the resulting image to stdout. Do not output the image size to stdout. Do not output any intermediate results to stdout. Do not output any other information, such as a message saying Your image now looks like: If your program successfully transforms the image, then it should return an exit status of 0. If the command line arguments are in any way faulty, such as the spelling of the command is incorrect, or the rot is not followed by a legal number of degrees, or the flip is not followed by a legal direction, then your program should abort and return an exit status of 2. This exit status will only be returned if the format of the input file is valid. Notice that it is legal for the command line to contain zero transformations. In this case your program should simply output the original image.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

Organize and support your main points

Answered: 1 week ago

Question

Move smoothly from point to point

Answered: 1 week ago

Question

Outlining Your Speech?

Answered: 1 week ago