Pygame鼠标进行图片的移动与缩放案例详解
作者:高二水令 发布时间:2023-08-12 15:18:58
标签:Pygame,鼠标,移动,缩放,图片
pygame鼠标进行拖拽移动图片、缩放、以及按钮响应 案例
# -*- coding: UTF-8 -*-
#!/usr/bin/env python3
# @Time : 2021.12
# @Author : 高二水令
# @Software: 图层拖拽缩放
import os
import sys
import pygame
from pygame.locals import *
class Background(pygame.sprite.Sprite):
def __init__(self, image_file, location):
pygame.sprite.Sprite.__init__(self) #call Sprite initializer
self.image = pygame.image.load(image_file)
self.rect = self.image.get_rect()
self.rect.left, self.rect.top = location
# 写一个函数,判断一个点是否在某个范围内
# 点(x,y)
# 范围 rect(x,y,w,h)
def is_in_rect(pos, rect):
x, y = pos
rx, ry, rw, rh = rect
if (rx <= x <= rx+rw) and (ry <= y <= ry+rh):
return True
return False
def move_image(pic_bottom,pic_upper,ssn):
#pic_bottom,pic_upper分别是背景图和上层拖拽图层,ssn是我自己设置的路径信息、不需要可以删去、需要直接运行可以改成main()
pygame.init()
screen = pygame.display.set_mode((710, 520))
BackGround = Background(pic_bottom, [0, 0])
screen.fill((255, 255, 255))
myimage = pygame.image.load('.\\next.png')
myimage = pygame.transform.scale(myimage, (90, 40))
myimage_x = 600
myimage_y = 480
scale_ = pygame.image.load('.\\Avel_scale.tif')
scale_ = pygame.transform.scale(scale_, (70, 520))
scale_x = 632
scale_y = 0
screen.blit(BackGround.image, BackGround.rect)
screen.blit(scale_, (scale_x, scale_y))
screen.blit(myimage, (myimage_x, myimage_y))
pygame.display.set_caption('图像定标')
size = []
location = [0, 0]
image = pygame.image.load(pic_upper)
image_x = 100
image_y = 100
screen.blit(image,(image_x, image_y))
pygame.display.flip()
is_move = False
run_flag = True
while (run_flag==True):
for event in pygame.event.get():
if event.type == pygame.QUIT:
exit()
# 鼠标按下、让状态变成可以移动
if event.type == pygame.MOUSEBUTTONDOWN:
w,h = image.get_size()
if is_in_rect(event.pos, (image_x, image_y, w, h)):
is_move = True
# 鼠标弹起、让状态变成不可以移动
if event.type == pygame.MOUSEBUTTONUP:
is_move = False
# 鼠标移动对应的事件
if event.type == pygame.MOUSEMOTION:
if is_move:
screen.fill((255, 255, 255))
screen.blit(BackGround.image, BackGround.rect)
x, y = event.pos
image_w, image_h = image.get_size()
# 保证鼠标在图片的中心
image_y = y-image_h/2
image_x = x-image_w/2
screen.blit(scale_, (scale_x, scale_y))
screen.blit(myimage, (myimage_x, myimage_y))
screen.blit(image, (image_x, image_y))
#print(image.get_rect())
location[0]=event.pos[0]
location[1] = event.pos[1]
print(event.pos)
pygame.display.update()
#鼠标按钮响应、是点击图片的位置范围进行跳转
if event.type == pygame.MOUSEBUTTONDOWN and myimage_x <= event.pos[0] <= myimage_x + 90 and \
myimage_y <= event.pos[1] <= myimage_y + 40: # 判断鼠标位置以及是否摁了下去
#这里可以写按钮响应的功能
pygame.quit()#关闭原来窗口
#os.system('ui.py')
run_flag = False#跳出循环(不然会报错)
#sys.exit()
#滚轮缩放
if event.type == MOUSEWHEEL:
screen.fill((255, 255, 255))
screen.blit(BackGround.image, BackGround.rect)
image_width = image.get_width()
image_heigt = image.get_height()
image = pygame.transform.scale(image, (
image_width + event.y * image_width / image_heigt * 10, image_heigt + event.y * 10))
screen.blit(scale_, (scale_x, scale_y))
screen.blit(myimage, (myimage_x, myimage_y))
screen.blit(image, (image_x, image_y))
#print(event)
print(image_width, image_heigt)
#print(event.flipped)
pygame.display.update()
预览图大概是这样:
如需直接运行就直接把def move_image(pic_bottom,pic_upper,ssn)这句改成if __name__ == '__main__':并把对应的值传进对应的位置去
来源:https://blog.csdn.net/qq_42619366/article/details/122099454
0
投稿
猜你喜欢
- 使用python时,程序能运行,但是不能调试,找了半天解决方法,最后此操作分分钟奏效。两种方法:方法一:选中要运行的代码,右键Execute
- 我差不多是与做web design的同时接触的flash design,因为那会普遍认为flash神通广大、无所不能。这些年我看Adobe的
- 1.SQL Server2019安装包下载1.1进入官网SQL Server 20191.2下载安装包1点击Continue2.填写个人信息
- <!--#include file="Include/Conn.asp"--><%If(Request
- asp过滤留言中脏话的代码例子<!--#include file="../conn/dbconn1.asp"--&
- 上节我们了解了图形验证码的识别,简单的图形验证码我们可以直接利用 Tesserocr 来识别,但是近几年又出现了一些新型验证码,如滑动验证码
- 本文介绍了用python与文件进行交互的方法,分享给大家,具体如下:一.文件处理1.介绍计算机系统:计算机硬件,操作系统,应用程序应用程序无
- 1、环境1、python 3.72、pyinstaller2、下载方式:2.1 python安装(略)2.2 安装pyinstaller打开
- 字符串的IndexOf()方法搜索在该字符串上是否出现了作为参数传递的字符串,如果找到字符串,则返回字符的起始位置 (0表示第一个字符,1表
- 导入包import csv创建或打开文件,设置文件形式f = open('xixi.csv', mode='a
- Django配置文件settings简单说明,包含时区语言等打开创建好的django工程,查看settings.py文件BASE_DIR =
- 摘要:本篇博客介绍了本教程的目标、适用人群、YOLOv5简介和车牌识别的意义和应用场景。为后续章节打下基础,帮助读者了解YOLOv5和车牌识
- ASP中的全角和半角转化函数,使用方法,传入要转换的字符给str即可,flag设置要转换的类型。<% Function&n
- 示例1我们将要请求五个不同的url:单线程import timeimport urllib2defget_responses(): &nbs
- ubuntu 系统自带的 python 有多个版本,使用时难免会遇到环境变量出错,特别是当自动化运行脚本的时候。特别是近一个月来,实验室的小
- 进行NodeJs开发时偶然发现的一个雷点正常情况下从JSON文件读取到字符后再通过JSON.parse没什么问题,只要格式不出错有时在确保J
- 问题你有一个数据序列,想利用一些规则从中提取出需要的值或者是缩短序列解决方案最简单的过滤序列元素的方法就是使用列表推导。比如:>>
- Postman的脚本可以导出多种语言的脚本,方便二次维护开发。Python的requests库,支持python2和python3,用于发送
- 一、go语言内存布局想象一下,你有一个如下的结构体。type MyData struct {
- python的注释方式和C语言、C++、java有所不同python语言中,使用‘#' 来进行注释,其次还有使用 三个引号来进行注释