/usr/share/gnudatalanguage/coyote/image_blend.pro is in gdl-coyote 2016.11.13-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | ;+
; NAME:
; IMAGE_BLEND
;
; PURPOSE:
; The purpose of this program is to demonstrate how to
; use the alpha channel to blend one image into another.
; The specific purpose is to see a color image on top of
; a gray-scale image, with the gray-scale image showing
; through behind the color image.
;
; AUTHOR:
; FANNING SOFTWARE CONSULTING
; David Fanning, Ph.D.
; 1645 Sheely Drive
; Fort Collins, CO 80526 USA
; Phone: 970-221-0438
; E-mail: david@idlcoyote.com
; Coyote's Guide to IDL Programming: http://www.idlcoyote.com
;
; CATEGORY:
;
; Widgets, Object Graphics.
;
; CALLING SEQUENCE:
;
; Image_Blend
;
; REQUIRED INPUTS:
;
; None. The images "worldelv.dat" and "ctscan.dat" from the
; examples/data directory are used.
;
; OPTIONAL INPUTS:
;
; backgroundImage:: A 2D image variable that will be used for the background image.
; foregroundImage: A 2D image variable that will be used for the foreground image.
;
; OPTIONAL KEYWORD PARAMETERS:
;
; COLORTABLE: The number of a color table to use for the foreground image.
; Color table 3 (red temperature) is used as a default.
;
; COMMON BLOCKS:
;
; None.
;
; SIDE EFFECTS:
;
; None.
;
; RESTRICTIONS:
;
; None. The program XCOLORS is required from the Coyote library.
;
; EXAMPLE:
;
; Image_Blend, Colortable=5
;
; MODIFICATION HISTORY:
;
; Written by David Fanning, 30 March 99.
; Fixed bug where I redefined the image parameter. Duh... 1 April 99. DWF.
; Moved the program into the 21st century. :-) 21 March 2003. DWF.
; Added TIFF, GIF (if version supports it), and PS output. 27 December 2006. DWF.
;-
;******************************************************************************************;
; Copyright (c) 2008, 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. ;
;******************************************************************************************;
PRO Image_Blend_Output, event
; This event handler creates PNG and JPEG files.
Widget_Control, event.top, Get_UValue=info, /No_Copy
; Get a snapshop of window contents. (TVRD equivalent.)
Wait, 0.5 ; Give the pull-down menu time to snap back.
info.thisWindow->GetProperty, Image_Data=snapshot
; JPEG or PNG file wanted?
Widget_Control, event.id, Get_UValue=whichFileType
CASE whichFileType OF
'GIF': BEGIN
filename = Dialog_Pickfile(/Write, File='idl.gif')
image2D = Color_Quan(snapshot, 1, r, g, b, COLORS=256)
IF filename NE '' THEN Write_GIF, filename, image2d, r, g, b
END
'PNG': BEGIN
filename = Dialog_Pickfile(/Write, File='idl.png')
IF filename NE '' THEN Write_PNG, filename, snapshot
END
'PS': BEGIN
filename = Dialog_Pickfile(/Write, File='idl.eps')
IF filename EQ '' THEN RETURN
dims = info.thisWindow -> GetDimensions()
aspect = Float(dims[1]) / dims[0]
IF aspect GT 1.0 THEN BEGIN
width = 6.0
height = 7.0/aspect
ENDIF ELSE BEGIN
height = 6
width = 6.0 * aspect
ENDELSE
dimensions = [width, height] * 2.54
clipboard = Obj_New("IDLgrClipboard", Dimensions=dimensions, Units=2)
clipboard -> Draw, info.thisView, Filename=filename, /PostScript
Obj_Destroy, clipboard
END
'JPEG': BEGIN
filename = Dialog_Pickfile(/Write, File='idl.jpg')
IF filename NE '' THEN Write_JPEG, filename, snapshot, True=1
END
'TIFF': BEGIN
filename = Dialog_Pickfile(/Write, File='idl.tif')
IF filename NE '' THEN Write_TIFF, filename, Reverse(snapshot,3)
END
ENDCASE
;Put the info structure back.
Widget_Control, event.top, Set_UValue=info, /No_Copy
END
;-------------------------------------------------------------------
PRO Image_Blend_Exit, event
; Exit the program via the EXIT button.
; The Image_Blend_CLEANUP procedure will be called automatically.
Widget_Control, event.top, /Destroy
END
;-------------------------------------------------------------------
PRO Image_Blend_Foreground_Colors, event
; This event handler changes foreground image colors.
Widget_Control, event.top, Get_UValue=info, /No_Copy
; Is this an XCOLORS event?
thisEvent = Tag_Names(event, /Structure_Name)
IF thisEvent EQ 'XCOLORS_LOAD' THEN BEGIN
; Set the color palette with the new colors.
s = Size(*info.foregroundImage, /Dimensions)
alpha_image = BytArr(4, s[0], s[1])
alpha_image[0,*, *] = event.r[*info.foregroundImage]
alpha_image[1,*, *] = event.g[*info.foregroundImage]
alpha_image[2,*, *] = event.b[*info.foregroundImage]
Widget_Control, info.sliderID, Get_Value=currentBlend
alpha_image[3, *, *] = info.blendMask * currentBlend
info.alphaImage->SetProperty, Data=alpha_image
info.thisWindow->Draw, info.thisView
ENDIF ELSE XColors, NotifyID=[event.id, event.top], $
Group_Leader=event.top, Title='Foreground Image Colors', $
XOffset=100, YOffset=100
Widget_Control, event.top, Set_UValue=info, /No_Copy
END
;---------------------------------------------------------------------
PRO Image_Blend_Background_Colors, event
; This event handler changes background image colors.
Widget_Control, event.top, Get_UValue=info, /No_Copy
; Is this an XCOLORS event?
thisEvent = Tag_Names(event, /Structure_Name)
IF thisEvent EQ 'XCOLORS_LOAD' THEN BEGIN
; Set the color palette with the new colors.
info.grayPalette->SetProperty, Red=event.r, Green=event.g, Blue=event.b
info.thisWindow->Draw, info.thisView
ENDIF ELSE XColors, NotifyID=[event.id, event.top], $
Group_Leader=event.top, Title='Background Image Colors', $
XOffset=100, YOffset=200
Widget_Control, event.top, Set_UValue=info, /No_Copy
END
;---------------------------------------------------------------------
PRO Image_Blend_CleanUp, id
; Come here when the widget dies. Free all the program
; objects, pointers, pixmaps, etc. and release memory.
Widget_Control, id, Get_UValue=info
IF N_Elements(info) NE 0 THEN BEGIN
Obj_Destroy, info.thisContainer
Ptr_Free, info.foregroundImage
ENDIF
END
;---------------------------------------------------------------------
PRO Image_Blend_Slider, event
; This event handler sets the blending values.
Widget_Control, event.top, Get_UValue=info, /No_Copy
; Set the blend value.
info.alphaImage->GetProperty, Data=thisData
s = Size(*info.foregroundImage, /Dimensions)
thisData[3, *, *] = info.blendMask * event.value
info.alphaImage->SetProperty, Data=thisData
info.thisWindow->Draw, info.thisView
;Put the info structure back.
Widget_Control, event.top, Set_UValue=info, /No_Copy
END
;---------------------------------------------------------------------
PRO Image_Blend_Expose, event
; This event handler responds to draw widget expose events..
Widget_Control, event.top, Get_UValue=info, /No_Copy
; Redisplay the graphic.
info.thisWindow->Draw, info.thisView
;Put the info structure back.
Widget_Control, event.top, Set_UValue=info, /No_Copy
END
;---------------------------------------------------------------------
PRO Image_Blend_Event, event
; This is main event handler for the TLB. It currently
; handles resize events.
Widget_Control, event.top, Get_UValue=info, /No_Copy
; Resize the draw widget.
info.thisWindow->SetProperty, Dimension=[event.x, event.y*info.drawScale+15]
; Redisplay the graphic.
info.thisWindow->Draw, info.thisView
;Put the info structure back.
Widget_Control, event.top, Set_UValue=info, /No_Copy
END
;---------------------------------------------------------------------
PRO Image_Blend, backgroundImage, foregroundImage, Colortable=colortable
; Get images to display
IF N_Elements(backgroundImage) EQ 0 THEN BEGIN
filename = Filepath(SubDir=['examples', 'data'], 'worldelv.dat')
OpenR, lun, filename, /Get_LUN
backgroundImage = BytArr(360,360)
ReadU, lun, backgroundImage
Free_Lun, lun
ENDIF
IF N_Elements(foregroundImage) EQ 0 THEN BEGIN
filename = Filepath(SubDir=['examples', 'data'], 'ctscan.dat')
OpenR, lun, filename, /Get_LUN
foregroundImage = BytArr(256,256)
ReadU, lun, foregroundImage
Free_Lun, lun
ENDIF
IF N_Elements(colortable) EQ 0 THEN colortable = 3
; Create the gray color palette.
grayPalette = Obj_New('IDLgrPalette')
grayPalette->LoadCT, 0
; The foreground image must be 24-bit for alpha blending to work.
s = Size(foregroundImage, /Dimensions)
alpha_image = BytArr(4, s[0], s[1])
LoadCT, colortable
TVLCT, r, g, b, /Get
alpha_image[0, *, *] = r[foregroundImage]
alpha_image[1, *, *] = g[foregroundImage]
alpha_image[2, *, *] = b[foregroundImage]
; Pixels with value 0 with be totally transparent.
; Other pixels will start out half transparent.
blendMask = BytArr(s[0], s[1])
blendMask[Where(foregroundImage GT 0)] = 1B
alpha_image[3, *, *] = blendMask * 128B
backgroundImgObj = Obj_New('IDLgrImage', backgroundImage, $
Dimensions=[400,400], Palette=grayPalette)
alphaImage = Obj_New('IDLgrImage', alpha_image, $
Dimensions=[400,400], Interleave=0, $
Blend_Func=[3,4])
; Create a model for the images. Add images to model.
thisModel = Obj_New('IDLgrModel')
thisModel->Add, backgroundImgObj
thisModel->Add, alphaImage
; Create a view.
viewRect = [0, 0, 400, 400]
thisView = Obj_New('IDLgrView', Viewplane_Rect=viewRect)
thisView->Add, thisModel
; Create the widgets for this program.
tlb = Widget_Base(Title='Image Overlay Example', $
MBar=menubase, TLB_Size_Events=1, Column=1)
drawID = Widget_Draw(tlb, XSize=400, YSize=400, $
Graphics_Level=2, Expose_Events=1, Retain=0, $
Event_Pro='Image_Blend_Expose')
; Create a slider widget to control the amount of
; transparency in the foreground image.
sliderID = Widget_Slider(tlb, Scr_XSize=406, Min=0, Max=255, $
Value=128, Title='Opacity Control', Event_Pro='Image_Blend_Slider')
; Create FILE menu buttons for output and exiting.
filer = Widget_Button(menubase, Value='File', /Menu)
; Create OUTPUT menu buttons for formatted output files.
output = Widget_Button(filer, Value='Output', /Menu)
IF Float(!Version.Release) GE 6.2 THEN BEGIN
b = Widget_Button(output, Value='GIF File', $
UValue='GIF', Event_Pro='Image_Blend_Output')
ENDIF
b = Widget_Button(output, Value='PNG File', $
UValue='PNG', Event_Pro='Image_Blend_Output')
b = Widget_Button(output, Value='JPEG File', $
UValue='JPEG', Event_Pro='Image_Blend_Output')
b = Widget_Button(output, Value='TIFF File', $
UValue='TIFF', Event_Pro='Image_Blend_Output')
b = Widget_Button(output, Value='Encapsulated PS File', $
UValue='PS', Event_Pro='Image_Blend_Output')
b = Widget_Button(filer, Value='Quit', /Separator, $
Event_Pro='Image_Blend_Exit')
; Create a colors menu.
colors = Widget_Button(menubase, Value='Colors', /Menu)
b = Widget_Button(colors, Value='Foreground Image Colors', $
Event_Pro='Image_Blend_Foreground_Colors')
b = Widget_Button(colors, Value='Background Image Colors', $
Event_Pro='Image_Blend_Background_Colors')
; Get geometry information for resizing.
tlbGeo = Widget_Info(tlb, /Geometry)
drawGeo = Widget_Info(drawID, /Geometry)
drawScale = Float(drawGeo.Scr_YSize) / tlbGeo.YSize
; Realize the widgets and get the window object.
Widget_Control, tlb, /Realize
Widget_Control, drawID, Get_Value=thisWindow
thisWindow->Draw, thisView
; Create a container object to hold all the other
; objects. This will make it easy to free all the
; objects when we are finished with the program.
thisContainer = Obj_New('IDL_Container')
thisContainer->Add, backgroundImgObj
thisContainer->Add, thisWindow
thisContainer->Add, thisModel
thisContainer->Add, grayPalette
thisContainer->Add, thisView
; Create an info structure to hold program information.
info = { thisContainer:thisContainer, $ ; The container object.
thisWindow:thisWindow, $ ; The window object.
alphaImage:alphaImage, $ ; The foreground image object.
foregroundImage:Ptr_New(foregroundImage), $ ; The original foreground image.
blendMask:blendMask, $ ; A mask for screening blending values.
grayPalette:grayPalette, $ ; The background image palette.
drawScale:drawScale, $ ; The draw widget scaling factor.
drawID:drawID, $ ; The draw widget identifier.
sliderID:sliderID, $ ; The slider widget identifier.
thisView:thisView} ; The object view.
Widget_Control, tlb, Set_UValue=info, /No_Copy
XManager, 'Image_Blend', tlb, Cleanup='Image_Blend_Cleanup', $
Group_Leader=group, /No_Block
END
|