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

  • SEARCH
  • Home
  • 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 8044497
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T05:14:55+00:00 2026-06-05T05:14:55+00:00

I have a class TouchPoint which implements Serializable and because it contains Bitmap I

  • 0

I have a class TouchPoint which implements Serializable and because it contains Bitmap I wrote writeObject and readObject for that class:

private void writeObject(ObjectOutputStream oos) throws IOException {
    long t1 = System.currentTimeMillis();
    oos.defaultWriteObject();
    if(_bmp!=null){
        int bytes = _bmp.getWidth()*_bmp.getHeight()*4;

        ByteBuffer buffer = ByteBuffer.allocate(bytes); 
        _bmp.copyPixelsToBuffer(buffer);

        byte[] array = buffer.array();      

        oos.writeObject(array);

    }
    Log.v("PaintFX","Elapsed Time: "+(System.currentTimeMillis()-t1));
}

private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException{
    ois.defaultReadObject();
    byte[] data = (byte[]) ois.readObject();
    if(data != null && data.length > 0){
        _bmp = BitmapFactory.decodeByteArray(data, 0, data.length);
    }
}

The problem is that I get

SkImageDecoder::Factory returned null

So how can I fix it. I know that possible solution is to change writeObject() to

ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
_bmp.compress(Bitmap.CompressFormat.PNG, 100, byteStream);
oos.writeObject(byteStream.toByteArray);

BUT this method is slower almost 10+ times.

  • copyPixelsToBuffer ~14ms for writing image
  • _bmp.compress ~ 160ms

UPDATE
Find out that the actual problem is that after

buffer.array();

All byte[] array elements are: 0

  • 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-05T05:14:57+00:00Added an answer on June 5, 2026 at 5:14 am

    Finally I find a way to make it work and be faster at the same time. I was encountered two issues using this method:

    1. I should pass the Bitmap.Config param also, without that I can’t decode the byte array
    2. _bmp.compress and _bmp.copyPixelsToBuffer give different arrays so I couldn’t use decodeByteArray.

    I solved them this way

    private void writeObject(ObjectOutputStream oos) throws IOException {
        oos.defaultWriteObject();
    
        if(_bmp!=null){
            int bytes = _bmp.getWidth()*_bmp.getHeight()*4;
    
            ByteBuffer buffer = ByteBuffer.allocate(bytes);
            _bmp.copyPixelsToBuffer(buffer);
    
            byte[] array = new byte[bytes]; // looks like this is extraneous memory allocation
    
            if (buffer.hasArray()) {
                try{
                    array = buffer.array();
                } catch (BufferUnderflowException e) {
                    e.printStackTrace();
                }
            }
    
            String configName = _bmp.getConfig().name();
    
            oos.writeObject(array);
            oos.writeInt(_bmp.getWidth());
            oos.writeInt(_bmp.getHeight());
            oos.writeObject(configName);
        } else {
            oos.writeObject(null);
        }
    }
    
    private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException{
        ois.defaultReadObject();
    
        byte[] data = (byte[]) ois.readObject();
        if (data != null) {
            int w = ois.readInt();
            int h = ois.readInt();
            String configName = (String) ois.readObject();
    
            Bitmap.Config configBmp = Bitmap.Config.valueOf(configName);
            Bitmap bitmap_tmp = Bitmap.createBitmap(w, h, configBmp);
            ByteBuffer buffer = ByteBuffer.wrap(data);
    
            bitmap_tmp.copyPixelsFromBuffer(buffer);
    
            _bmp = bitmap_tmp.copy(configBmp,true);
    
            bitmap_tmp.recycle();
        } else {
            _bmp = null;
        }
    }
    

    This is enough fast for me – about 15x faster then the bmp.compress way. hope this helps 🙂

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

Sidebar

Related Questions

I have class which implements Countable, ArrayAccess, Iterator and Serializable. I have a public
I have class, that contains different types and implements Iterable<Object> interface. But it is
I have class class DateOptTimeType implements org.hibernate.usertype.UserType that works with two columns @org.hibernate.annotations.Type(type =
I have class User that contains protected constructor and class Account that has access
I have class A and B which inherit from Base. Base has a private
I have class which has a method that needs to return three DataTables. I
I have: class MyClass extends MyClass2 implements Serializable { //... } In MyClass2 is
I have class A, which exposes an event. an object of class B subscribed
I have class Fred { public: void inspect() const {}; void modify(){}; }; int
I have class that represents users. Users are divided into two groups with different

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.