; docformat = 'rst' ; ; NAME: ; FSC_Erase ; ; PURPOSE: ; Provides a device-independent and color-model-independent way to erase a graphics ; window with a particular color. ; ;******************************************************************************************; ; ; ; Copyright (c) 2010, by Fanning Software Consulting, Inc. All rights reserved. ; ; ; ; Redistribution and use in source and binary forms, with or without ; ; modification, are permitted provided that the following conditions are met: ; ; ; ; * Redistributions of source code must retain the above copyright ; ; notice, this list of conditions and the following disclaimer. ; ; * Redistributions in binary form must reproduce the above copyright ; ; notice, this list of conditions and the following disclaimer in the ; ; documentation and/or other materials provided with the distribution. ; ; * Neither the name of Fanning Software Consulting, Inc. nor the names of its ; ; contributors may be used to endorse or promote products derived from this ; ; software without specific prior written permission. ; ; ; ; THIS SOFTWARE IS PROVIDED BY FANNING SOFTWARE CONSULTING, INC. ''AS IS'' AND ANY ; ; EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ; ; OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT ; ; SHALL FANNING SOFTWARE CONSULTING, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, ; ; INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED ; ; TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; ; ; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ; ; ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ; ; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ; ; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ; ;******************************************************************************************; ; ;+ ; :Description: ; Provides a device-independent and color-model-independent way to erase a graphics ; window with a particular color. ; ; :Categories: ; Graphics ; ; :Params: ; background_color: in, optional, type=string/integer/long, default='white' ; The color to use in erasing the graphics window. Default is "white." ; Color names are those used with FSC_Color. ; ; :Keywords: ; color: in, optional, type=string/integer/long, default='white' ; An alternative way to specify the color to use in erasing the graphics window. ; Color names are those used with FSC_Color. This parameter is used in ; preference to the background_color parameter. ; ; :Examples: ; Used like the IDL Erase command:: ; IDL> FSC_Erase ; IDL> FSC_Erase, 'gray' ; IDL> FSC_Erase, COLOR='charcoal' ; ; :Author: ; FANNING SOFTWARE CONSULTING:: ; David W. Fanning ; 1645 Sheely Drive ; Fort Collins, CO 80526 USA ; Phone: 970-221-0438 ; E-mail: davidf@dfanning.com ; Coyote's Guide to IDL Programming: http://www.dfanning.com ; ; :History: ; Change History:: ; Written, 12 November 2010. DWF. ; Modified so that input variables are not changed. 18 Nov 2010. DWF. ; Got my color selection algorithm right. COLOR keyword takes precedence ; over the parameter. 18 Nov 2010. DWF. ; Modified to erase in decomposed color, if possible. ; In some cases, I was turning BYTE values to strings without converting to ; INTEGERS first. 30 Dec 2010. DWF. ; ; :Copyright: ; Copyright (c) 2010, Fanning Software Consulting, Inc. ;- PRO FSC_Erase, background_color, COLOR=color ; Set up PostScript device for working with colors. IF !D.Name EQ 'PS' THEN Device, COLOR=1, BITS_PER_PIXEL=8 ; Get a color for erasing. IF N_Elements(background_color) EQ 0 THEN thisColor = 'white' ELSE thisColor = background_color IF N_Elements(color) NE 0 THEN thisColor = color IF Size(thisColor, /TYPE) EQ 3 THEN IF GetDecomposedState() EQ 0 THEN thisColor = Byte(thisColor) IF Size(thisColor, /TYPE) LE 2 THEN thisColor = StrTrim(Fix(thisColor),2) ; Get the current color vectors. TVLCT, rr, gg, bb, /Get ; Do this in decomposed color, if possible. SetDecomposedState, 1, CURRENTSTATE=currentState IF Size(thisColor, /TNAME) EQ 'STRING' THEN thisColor = FSC_Color(thisColor) Erase, Color=thisColor ; Clean up. SetDecomposedState, currentState IF !D.Name NE 'Z' THEN TVLCT, rr, gg, bb END