usingvarapi=newIdeogramClient(apiKey);// Create placeholder 1x1 pixel PNGs for demonstrationvarimageBytes=newbyte[]{0x89,0x50,0x4E,0x47};varmaskBytes=newbyte[]{0x89,0x50,0x4E,0x47};ImageGenerationResponseV3response=awaitapi.Generate.PostEditImageV3Async(newEditImageRequestV3{Image=imageBytes,Imagename="photo.png",Mask=maskBytes,Maskname="mask.png",Prompt="Replace the background with a starry night sky",MagicPrompt=MagicPromptOption.On,StyleType=StyleTypeV3.General,Seed=12345,});Console.WriteLine($"Created: {response.Created}");foreach(varimageinresponse.Data){Console.WriteLine($"Image URL: {image.Url}");Console.WriteLine($"Resolution: {image.Resolution}");}