Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8748229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T12:29:20+00:00 2026-06-13T12:29:20+00:00

I am using following for capturing signature on my application https://github.com/Cheesebaron/MonoDroid.CaptureSignature Its working fine

  • 0

I am using following for capturing signature on my application

https://github.com/Cheesebaron/MonoDroid.CaptureSignature

Its working fine if i save image as png but i want to save it in jpg

I changed Bitmap.CompressFormat.Png to Bitmap.CompressFormat.Jpg

but what i am getting is a black jpg file because the writing is in black

and the background is already black. How can i make image background white?

code i changed

using (var fs = new FileStream(extFileName, FileMode.OpenOrCreate))
{
  _capture.CanvasBitmap().Compress(Bitmap.CompressFormat.Jpg, 100, fs);
}

Looking for help. Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T12:29:22+00:00Added an answer on June 13, 2026 at 12:29 pm

    I think you can only do this by setting the color on a Canvas.

    See How to change the background color of a saved transparent bitmap

    So you could try changing:

    _capture.CanvasBitmap().Compress(Bitmap.CompressFormat.Png, 100, fs);
    

    to something like:

    var b = _capture.CanvasBitmap();
    var newBitmap = Bitmap.CreateBitmap(b.Width, b.Height, b.Config);
    var canvas = new Canvas(newBitmap);
    canvas.DrawColor(Color.WHITE);
    canvas.DrawBitmap(b, 0, 0, null);
    newBitmap.Compress(Bitmap.CompressFormat.Jpg, 100, fs);
    

    But this code is untested here – sorry!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using rubular.com to build my regex, and their documentation describes the following: (...)
I am developing Mac desktop application, where I am capturing the screen using CGImageRef
i am using following code for capturing the image in Android: String fileName =
I'm capturing the window.onbeforeunload event using the following code: window.onbeforeunload = function (evt) {
I am capturing an image using the following code public class PictureDemo extends Activity
Using following code I try to get updated list of checkbuttons' corresponding text values,
I using following code: var search = 'test'; if ($('#sku').find(search) ){ //alert(search); $(document).find(search).css('color','red'); <TABLE>
I am creating date using following code try { newdatetime = new DateTime(2012, 2,
I am using following configuration to properly fit image inside a scrollview. <?xml version=1.0
I am using following code for showing a MessageBox with ok and cancel button.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.