/usr/share/amsn/picture.tcl is in amsn-data 0.98.9-1ubuntu3.
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 | #This is the TKCximage implementation inside aMSN
#By Jerome Gagnon-Voyer gagnonje5000 at mac.com
::Version::setSubversionId {$Id: picture.tcl 11623 2009-09-23 19:39:08Z kakaroto $}
namespace eval ::picture {
catch {package require TkCximage}
set ::tkcximageloaded 0
#Proc to check if tkcximage is loaded
proc Loaded {} {
if {$::tkcximageloaded} {
return 1
} else {
catch {package require TkCximage} err
#Fix a strange bug where sometimes package require TkCximage doesn't work
if {[file exists [file join utils TkCximage [info tclversion] TkCximage[info shared]]]} {
catch {load [file join utils TkCximage [info tclversion] TkCximage[info shared]]} err
} else {
catch {load [file join utils TkCximage TkCximage[info shared]]} err
}
# We try to create an image of format cximage, if TkCximage was loaded, then it will work, if not, it will fail.
# This is because the previous 'load' could load the .so even if it was compiled for another version of Tcl/Tk
if { [catch {image create photo -format cximage -file [::skin::GetSkinFile pixmaps null] } ] == 0 } {
set ::tkcximageloaded 1
return 1
}
}
#puts "Picture.tcl: TkCximage not loaded\n$err"
tk_messageBox -default ok -message "There's a problem loading a module of aMSN (TkCxImage) : $err" -icon warning
return 0
}
#Convert a picture from a file to another file
#The filename decide the new format
proc Convert {original destination} {
#Verify if the picture exists
if { ![file exists $original] } {
status_log "Picture.tcl: Tring to convert file $original that does not exist\n" red
error "Picture.tcl: Tring to convert file $original that does not exist\n"
}
#Convert the picture
if {[::picture::Loaded]} {
#Use TkCxImage
if { [catch { ::CxImage::Convert "$original" "$destination" } res ] } {
status_log "Picture.tcl: Unable to convert picture with TkCximage \n$res" red
error "Picture.tcl: Unable to convert picture with TkCximage \n$res"
} else {
return $destination
}
}
}
#Resize a picture from a photo
#Strict resize, no ratio here
proc Resize {photo width height} {
if {[::picture::Loaded]} {
if { [catch {::CxImage::Resize $photo $width $height } res] != 0 } {
status_log "Picture.tcl: Unable to resize photo with TkCximage \n$res" red
error "Picture.tcl: Unable to resize photo with TkCximage \n$res"
} else {
return 1
}
}
}
#Reisze a picture from a file, output to another file (in option)
proc ResizeFile {original width height {destination ""}} {
if {$destination == ""} {
set destination $original
}
if { ![file exists $original] } {
status_log "Picture.tcl: Tring to resize file $original that does not exist\n" red
error "Picture.tcl: Tring to resize file $original that does not exist\n"
}
if {[::picture::Loaded]} {
#TkCximage
if { [catch {
set photo [image create photo [TmpImgName] -file $original -format cximage] ;#gets destroyed
::picture::ResizeWithRatio $photo $width $height
$photo write $destination
image delete $photo
} res ] } {
status_log "Picture.tcl: Unable to resize picture with TkCximage \n$res" red
error "Picture.tcl: Unable to resize picture with TkCximage \n$res"
} else {
return 1
}
}
}
#Thumbnail a picture, from a photo
#Alpha opacity for border (between 0 and 255) IT DOESNT SEEM TO WORK YET ?!
#Default color for border is black
proc Thumbnail { photo width height {bordercolor "black"} {alpha ""} } {
if {[::picture::Loaded]} {
if {$alpha == ""} {
if { [catch {::CxImage::Thumbnail $photo $width $height $bordercolor} res] != 0 } {
status_log "Picture.tcl: Unable to create thumbnail with TkCximage \n$res" red
error "Picture.tcl: Unable to create thumbnail with TkCximage \n$res"
} else {
return 1
}
} else {
if { [catch {::CxImage::Thumbnail $photo $width $height $bordercolor -alpha $alpha} res ] != 0 } {
status_log "Picture.tcl: Unable to create thumbnail with TkCximage \n$res" red
error "Picture.tcl: Unable to create thumbnail with TkCximage \n$res"
} else {
return 1
}
}
}
}
#Crop a picture, from a photo, to a new picture (should be improved)
proc Crop {photo x1 y1 x2 y2} {
if {[::picture::Loaded]} {
set temp [image create photo [TmpImgName]] ;#gets destroyed
if { [catch {$temp copy $photo -from $x1 $y1 $x2 $y2} res] != 0 } {
image delete $temp
status_log "Picture.tcl: Unable to crop image with TkCxImage\n$res" red
error "Picture.tcl: Unable to crop image with TkCxImage\n$res"
} else {
image create photo $photo
$photo copy $temp
image delete $temp
return 1
}
}
}
#Resize a picture from photo to a specific size and keep the ratio
proc ResizeWithRatio {photo width height} {
if {[::picture::Loaded]} {
#Actual size of the photo
set origw [image width $photo]
set origh [image height $photo]
#status_log "picture.tcl: Image size is $origw $origh\n" red
if {$origw == 0 || $origh == 0 } {
$photo configure -width $width -height $height
return 1
}
#Actual ratio of the photo
set origratio [expr { 1.0*$origw / $origh } ]
#New ratio
set ratio [expr { 1.0*$height / $width} ]
#status_log "picture.tcl: Original ratio is $origratio and new ratio: $ratio\n" red
#Depending on ratio, resize to keep smaller dimension to XX pixels
if { $origratio > $ratio} {
set resizeh $height
set resizew [expr {round($resizeh*$origratio)}]
} else {
set resizew $width
set resizeh [expr {round($resizew/$origratio)}]
}
#Resize the picture
if { $origw != $width || $origh != $height } {
#status_log "picture.tcl : Will resize to $resizew x $resizeh \n" red
if {[catch {::picture::Resize $photo $resizew $resizeh} res] } {
error $res
}
}
#Now let's crop image from the center
set centerx [expr { [image width $photo] /2 } ]
set centery [expr { [image height $photo] /2 } ]
set halfw [expr { $width / 2}]
set halfh [expr { $height / 2}]
set x1 [expr {$centerx-$halfw}]
set y1 [expr {$centery-$halfh}]
if { $x1 < 0 } {
set x1 0
}
if { $y1 < 0 } {
set y1 0
}
set x2 [expr {$x1+$width}]
set y2 [expr {$y1+$height}]
set neww [image width $photo]
set newh [image height $photo]
#status_log "picture.tcl: Resized image size is $neww $newh\n" red
#status_log "picture.tcl: Center of image is $centerx,$centery, will crop from $x1,$y1 to $x2,$y2 \n" red
if {[catch {::picture::Crop $photo $x1 $y1 $x2 $y2} res]} {
error $res
}
return 1
}
}
#Save a picture to a file, from a photo
#Format supported: "cxgif" "cxpng" "cxjpg" "cxtga"
proc Save {photo destination {format ""}} {
if {[::picture::Loaded]} {
if {$format != ""} {
if { [catch {$photo write $destination -format $format} res] != 0} {
status_log "Picture.tcl: Error Saving to the file with TkCximage : \n$res" red
error "Picture.tcl: Error Saving to the file with TkCximage : \n$res"
} else {
return 1
}
} else {
if { [catch {$photo write $destination} res] != 0} {
status_log "Picture.tcl: Error Saving to the file with TkCximage : \n$res" red
error "Picture.tcl: Error Saving to the file with TkCximage : \n$res"
} else {
return 1
}
}
}
}
#Get picture size and return it with width x height format
proc GetPictureSize { filename } {
if { ![file exists $filename] } {
status_log "Picture.tcl: The file doesn't exists\n" red
error "The file doesn't exists"
}
if {[catch {set img [image create photo [TmpImgName] -file $filename -format cximage]} res]} {
status_log "Picture.tcl::GetPictureSize: $res\n" red
error "$res"
}
set return "[image width $img]x[image height $img]"
image delete $img
return $return
}
#To verify if a picture is animated (1) or not (0)
proc IsAnimated {file {use_cache 1}} {
variable animated_files_cache
if { ![file exists $file] } {
status_log "Picture.tcl: The file doesn't exists $file\n" red
error "Picture.tcl: The file doesn't exists $file"
}
if { [info commands ::CxImage::IsAnimated] == "" } {
status_log "TkCxImage too old"
msg_box "You need to recompile TkCximage, you use a too old version"
return 0
}
if {$use_cache && [info exists animated_files_cache($file)] } {
return [set animated_files_cache($file)]
}
if { [catch {::CxImage::IsAnimated $file} res] } {
#Corrupted image.. might as well delete it and redownload it some other time..
catch {file delete $file}
status_log "Picture.tcl: Unable to read file $file \n$res" red
error "Picture.tcl: Unable to read file $file \n$res"
} else {
set animated_files_cache($file) $res
return $res
}
}
#Change the colour of the image to the color desired
proc Colorize {photo color {opacity 1.0}} {
if {[::picture::Loaded]} {
if { [catch {::CxImage::Colorize $photo $color $opacity} res] != 0 } {
status_log "Picture.tcl: Unable to colorize photo with TkCximage \n$res" red
error "Picture.tcl: Unable to colorize photo with TkCximage \n$res"
} else {
return 1
}
}
}
}
|