Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Byte to Image(bit map) conversion in ABAP

Former Member
0 Likes
545

HI All,

  I have a requirement.... I need to convert Byte format to Image(Bit map) .. Is there any Standard RFC for this conversion...Kindly help me on this...


Byte format has been attached..


1 REPLY 1
Read only

Ruediger_Plantiko
Active Contributor
0 Likes
452

Hi Shyam, your attachment is base64 encoded. Therefore, you can decode it using

data: lv_img type xstring.

lv_img = cl_http_utility=>decode_x_base64( lv_base64 ).

Regards,

Rüdiger