Application Development 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: 

SIZE OF LOGO IN SAP SCRIPT

Former Member
0 Kudos

HELLO FREINDS,

I have a logo in sapscript, but what it is doing it is overlapping some texts and I am not authorized to move the text, what i can do i can make my logo small in size.

Is there any way to decrease the size of the logo which is present in sap

1 ACCEPTED SOLUTION

former_member188685
Active Contributor
0 Kudos

You can use Option DPI to control the Resolution,

BITMAP 'ZLOGO' OBJECT GRAPHICS ID BMAP TYPE BCOL DPI 300

try to vary that...

Regards

vijay

8 REPLIES 8

Former Member
0 Kudos

Hii

Run RSTXLDMC in se38 ,ie abap editor ..

this is where you upload logos which are saved as .TIFF files to SAP Script texts.

there you give your file location ,type as BMON or BCOL

<b>AND IN THE RESOLUTION FOR GRAPHIC </b> give the resolution..

<b>Remember more the resolution smaller the Image</b>

Regards

Naresh

rahulkavuri
Active Contributor
0 Kudos

when u use RSTXLDMC it will tarnish the quality of the image, so try using Microsft Photo editor or any standard tool like Photoshop

0 Kudos

Hi ,

Actually the logo is given from the production and it is alreadey available in SAP and RSTXLDMC is used for Downloading the logo and while downloading we can change the size but i can't do this b'coz logo is already in sap

former_member188685
Active Contributor
0 Kudos

You can use Option DPI to control the Resolution,

BITMAP 'ZLOGO' OBJECT GRAPHICS ID BMAP TYPE BCOL DPI 300

try to vary that...

Regards

vijay

0 Kudos

Hi Vijay,

I tried your code and this code is not giving any error but when i see the output it is not showing me thee logo can you please tell me exactly wat is going to be the syntax and where we have to write the code

Thanks

navneet

0 Kudos

Hi Navneet

in the sapscript editor,insert>graphics>there is technical attribute-->here u can set the DPI

0 Kudos

HI Navneet,

The DPI values cannot be whatever you linke.

There are only specific values that it will accept.

I don't remember the valid values for DPI.

i think it can take only 75,100,150,200,300,400,500 and 600(Default).

Regards,

Ravi

0 Kudos

Hi,

ZLOGO is the image name, and DPI's available are

<b>75,100,150,200,300,600</b>

is it BITMAP and color one , if so

/: BITMAP 'ZLOGO' OBJECT GRAPHICS ID BMAP TYPE <b>BCOL</b> DPI 300

and if it Black and white


/: BITMAP 'ZLOGO' OBJECT GRAPHICS ID BMAP TYPE <b>BMON</b> DPI 300

the above code should be in the Logo window.

regards

vijay