TEXTOUT_P: export graphic?
|
05-27-2015, 07:22 PM
Post: #8
|
|||
|
|||
RE: TEXTOUT_P: export graphic?
If the two copies are resident on G0, and only one is coming from G1, you could clear G0 before doing the blit_p(G1,G0), or via rect_p(G0). You could also erase grob G1, via rect_p(G1)
If the two copies are coming in via blit_p(G1,G0), you could clear G1 first, via rect_p(G1). You can decide how much rectangular space you really need to transfer to G0 via blit_p(G1, 0,0,320,240,G0,0,0,320,240), using any suitable x,y coordinates within your range of interest. If this info isn't helpful, you can send me your code snippet, and I'll try to figure out what is happening there. In short, you can specify what rectangular sector(s) you want to clear, or transfer via rect_p() or blit_p(), by use of the x,y pixel coordinates of the specific grob variable. |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)