Displaying 1 result from an estimated 1 matches for "thm_file".
Did you mean:
  chm_file
  
2004 Jan 08
3
pictorG
...'Removing images''
    @imageList.remove_all
    clear_all
    list.each_with_index{|fn,i|
      insert_item i,fn,i
    }
    Thread.new {
      Thread.current.priority=-1
      list.each_with_index{|fn,i|
	log_status "Generating thumbnails #{i+1}/#{num_images}: #{fn}"
        thm_file=thm_name(fn).join
        gen_thm fn unless FileTest.file? thm_file
        icon_data=Bitmap.new(thm_file, BITMAP_TYPE_JPEG)
        w,h=icon_data.get_width,icon_data.get_height
        icon=Bitmap.new(THM_WIDTH,THM_HEIGHT)
        icon_dc=MemoryDC.new()
        icon_dc.select_object(icon)...