求一款图片置顶软件,要求点击一下,显示下一张图片
求一款图片置顶软件,要求点击一下,显示下一张图片个人需求图片置顶软件,该软件能将图片一直显示在屏幕最前面(无窗口显示),然后我双击图片后,它就会轮换到下一个图片,因为是在多媒体教室上操作,没有键盘,所以快捷键换图片的搞法不合适!
目前我已经尝试互联网搜索过这些软件,都不符合我的要求:
Snipaste
PureRef_v1.11.1_x64.exe
AHKScreenWaterMark-Appinn.com
SETUNA_Release_x64这个是截图置顶,操作很方便,可惜无法实现本地文件夹内的图片轮换
ieye93x64 这个最接近,但是需要快捷键才能换到下一张图片,多媒体教室一体机上没有键盘,触屏操作,所以依然不方便
xghjf000 发表于 2024-10-25 10:45
夸克里面是空文件夹呢?
抱歉,清理了下云盘,另外分享给你吧,蓝奏云:https://mefcl.lanzn.com/b0izlyjsb 密码:d4y0 pineapple这个开源软件可以,默认置顶,左下角全屏,屏幕左右有箭头切换图片
https://github.com/BLumia/pineapple-pictures 用python写一个,可以实现你的要求
from PIL import Image, ImageTk
import os
import tkinter as tk
def show_next_image():
global current_image_index
if current_image_index < len(image_files) - 1:
current_image_index += 1
else:
current_image_index = 0
show_image()
def on_double_click(event):
show_next_image()
def show_image():
img_path = os.path.join(image_folder, image_files)
img = Image.open(img_path)
screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()
img_ratio = img.width / img.height
screen_ratio = screen_width / screen_height
if img_ratio > screen_ratio:
new_width = screen_width
new_height = int(screen_width / img_ratio)
else:
new_height = screen_height
new_width = int(screen_height * img_ratio)
resized_img = img.resize((new_width, new_height), Image.LANCZOS)
tk_img = ImageTk.PhotoImage(resized_img)
label.config(image=tk_img)
label.image = tk_img
image_folder = "C:\\Users\\TPM\\Pictures\\Saved Pictures\\"
image_files =
current_image_index = 0
root = tk.Tk()
root.attributes('-fullscreen', True)
root.overrideredirect(True)
label = tk.Label(root)
label.pack(fill=tk.BOTH, expand=True)
show_image()
root.bind("<Double-Button-1>", on_double_click)
root.mainloop() 看了下你的需求,我想问一下,用ppt插图进去,ppt全屏演示不能满足你的要求嘛 那年281 发表于 2024-10-5 16:04
看了下你的需求,我想问一下,用ppt插图进去,ppt全屏演示不能满足你的要求嘛
不呀,板书不方便,经常一版题没有讲完,到下一张ppt的时候,看不到题,来回切换太不方便了! xptk9074 发表于 2024-10-5 15:30
用python写一个,可以实现你的要求
from PIL import Image, ImageTk
这个怎么编译成exe呀?我是盲,教数学的,但是不懂代码呀!:'(weeqw bzhltl 发表于 2024-10-5 14:52
pineapple这个开源软件可以,默认置顶,左下角全屏,屏幕左右有箭头切换图片
https://github.com/BLumia/p ...
我试试呀! bzhltl 发表于 2024-10-5 14:52
pineapple这个开源软件可以,默认置顶,左下角全屏,屏幕左右有箭头切换图片
https://github.com/BLumia/p ...
试过了,有黑色边框,而且图片显示区域无法自适应图片原始大小! bzhltl 发表于 2024-10-5 14:52
pineapple这个开源软件可以,默认置顶,左下角全屏,屏幕左右有箭头切换图片
https://github.com/BLumia/p ...
有没有多个视频同屏播放,可以同步操作,也有快捷键实现前进后退几帧的?
一个实现场景是游戏对战画面,两个视频时长不一样就要校对同步观看,
首先单独控制让时间长的视频先跳转到一定时长,接着单独控制让时长短的视频回到进度条为0
接着同步控制一起播放,
当需要放慢下来观看,此时用快捷键前进后退几帧观察