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 8980449
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:05:28+00:00 2026-06-15T20:05:28+00:00

I am trying to copy an image as a byte array to a file

  • 0

I am trying to copy an image as a byte array to a file in vba.

The first three bytes of the file, represented as a byte array:

   Dim arr(3) As Byte arr = {23,21,2f}

The code that copies from an array to a new file is:

Open "try444.jpg" For Binary As #1

For cnt = 1 To UBound(arr)

    Put #1, LOF(1) + 1, arr(cnt)

Next

but it writes 1100 2311 0023 1100 2111 002f 1100 to the file (all in hex)

What is wrong with my code?

  • 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-15T20:05:30+00:00Added an answer on June 15, 2026 at 8:05 pm

    because arr is being redefined somewhere. If I write the procedure as a single function:

    Option Explicit
    Sub test()
    Dim cnt As Long
    Dim arr(3) As Byte
    
    arr(1) = &H23
    arr(2) = &H21
    arr(3) = &H2F
    
    Open "try444.jpg" For Binary As #1
    
    For cnt = 1 To UBound(arr)
    
        Put #1, LOF(1) + 1, arr(cnt)
    
    Next
    Close #1
    
    End Sub
    

    then I get exactly the bytes you would expect 23 21 2F

    If I neglect to define the type (or I don’t have Option Explicit) then it becomes a variant, and then it’s anyone’s guess as to what will appear, as the variant datatype includes a type code. (in my case, I get 02 00 23 00 02 00 21 00 02 00 2f 00)

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

Sidebar

Related Questions

I'm trying to copy an image from a remote server with the following code:
I've trying to get byte-array and copy from there to another array some rows
I'm trying to copy both an image from a file and text from a
I'm trying copy a single file from the Plugin directory inside of my Wordpress
I am trying to copy all format file (.txt,.pdf,.doc ...) file from source folder
I am trying to copy the generated program file to the parent directory after
I am trying to copy files from a directory that is in constant use
I am trying to copy and paste a folder structure on file system programmatically.
I am trying to programatically create a bitmap from an array that contains color
I'm trying to copy the Google image search from this page . Here is

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.