Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Im just beginning with C# and this professor is giving out so many labs i cant k

ID: 3636718 • Letter: I

Question

Im just beginning with C# and this professor is giving out so many labs i cant keep up. please help and provide a source code.

Write a Windows application that displays your name in shadow text by drawing your name in black, then drawing it again slightly offset in a lighter color.
-Create and name variables in a way that makes it easy to understand how they are used. Making use of automatic completion can help support this requirement.
-The program should not ask for user input. Either give initial values to the variables when declaring them and use those values; or, assign values to variables after declaring them.

Explanation / Answer

Hope this will helpfull to u public void AddWatermark(string pPath, string pWatermark){ Image image = Image.FromFile(pPath); Bitmap bmp = new Bitmap(image); bmp.SetResolution(image.HorizontalResolution, image.VerticalResolution); ImageCodecInfo iciJpegCodec = null; //find the correct Codec and specify its quality EncoderParameter epQuality = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, 100L); // Get all image codecs that are available ImageCodecInfo[] iciCodecs = ImageCodecInfo.GetImageEncoders(); // Store the quality parameter in the list of encoder parameters EncoderParameters epParameters = new EncoderParameters(1); epParameters.Param[0] = epQuality; // Loop through all the image codecs for (int i = 0; i