diff --git a/PrimaryFormParts/PrimaryForm.Favorite.cs b/PrimaryFormParts/PrimaryForm.Favorite.cs index b2325a1..c52c9f5 100644 --- a/PrimaryFormParts/PrimaryForm.Favorite.cs +++ b/PrimaryFormParts/PrimaryForm.Favorite.cs @@ -58,7 +58,7 @@ namespace DualScreenDemo string fileName = (i + 2).ToString("00"); - string filePath = Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-" + fileName + ".jpg"); + string filePath = Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-" + fileName + ".png"); favoriteNumberButton[i].BackgroundImage = Image.FromFile(filePath); favoriteNumberButton[i].BackgroundImageLayout = ImageLayout.Stretch; favoriteNumberButton[i].FlatStyle = FlatStyle.Flat; @@ -90,7 +90,7 @@ namespace DualScreenDemo Name = "enterFavoriteButton" }; ResizeAndPositionButton(enterFavoriteButton, 842, 652, 70, 65); - enterFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-12.jpg")); + enterFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-12.png")); enterFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch; enterFavoriteButton.FlatStyle = FlatStyle.Flat; enterFavoriteButton.FlatAppearance.BorderSize = 0; @@ -105,7 +105,7 @@ namespace DualScreenDemo Name = "newFavoriteButton" }; ResizeAndPositionButton(newFavoriteButton, 921, 652, 70, 65); - newFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-13.jpg")); + newFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-13.png")); newFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch; newFavoriteButton.FlatStyle = FlatStyle.Flat; newFavoriteButton.FlatAppearance.BorderSize = 0; @@ -120,7 +120,7 @@ namespace DualScreenDemo Name = "refillFavoriteButton" }; ResizeAndPositionButton(refillFavoriteButton, 999, 652, 70, 65); - refillFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-14.jpg")); + refillFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-14.png")); refillFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch; refillFavoriteButton.FlatStyle = FlatStyle.Flat; refillFavoriteButton.FlatAppearance.BorderSize = 0; @@ -135,7 +135,7 @@ namespace DualScreenDemo Name = "closeFavoriteButton" }; ResizeAndPositionButton(closeFavoriteButton, 1078, 652, 70, 65); - closeFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-15.jpg")); + closeFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-15.png")); closeFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch; closeFavoriteButton.FlatStyle = FlatStyle.Flat; closeFavoriteButton.FlatAppearance.BorderSize = 0; @@ -320,7 +320,7 @@ namespace DualScreenDemo if (!FavoritePictureBox.Visible) { - ShowImageOnFavoritePictureBox(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛_工作區域.jpg")); + ShowImageOnFavoritePictureBox(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛_工作區域.png")); SetFavoritePictureBoxAndButtonsVisibility(true); } else @@ -352,7 +352,7 @@ namespace DualScreenDemo FavoritePictureBox.Image = image; // 設定 PictureBox 的大小與位置(依你的需要調整) - ResizeAndPositionPictureBox(FavoritePictureBox, 773, 380, (int)(image.Width * 0.8f) , (int)(image.Height * 0.8f)); + ResizeAndPositionPictureBox(FavoritePictureBox, 773, 380, image.Width, image.Height); FavoritePictureBox.Visible = true; } diff --git a/bin/mainlog.txt b/bin/mainlog.txt index f9767b2..4d82ac8 100644 --- a/bin/mainlog.txt +++ b/bin/mainlog.txt @@ -133,3 +133,15 @@ 於 DualScreenDemo.PrimaryForm.InitializeFormAndControls() 於 DualScreenDemo.PrimaryForm..ctor() 於 DualScreenDemo.Program.Main() +[2025/5/12 上午 11:32:58] System.IO.FileNotFoundException: E:\jasonchen\superstar\bin\themes\superstar\我的最愛\我的最愛-02.png + 於 System.Drawing.Image.FromFile(String filename, Boolean useEmbeddedColorManagement) + 於 DualScreenDemo.PrimaryForm.InitializeButtonsForFavoritePictureBox() + 於 DualScreenDemo.PrimaryForm.InitializeFormAndControls() + 於 DualScreenDemo.PrimaryForm..ctor() + 於 DualScreenDemo.Program.Main() +[2025/5/12 上午 11:35:17] System.IO.FileNotFoundException: E:\jasonchen\superstar\bin\themes\superstar\我的最愛\我的最愛-12.png + 於 System.Drawing.Image.FromFile(String filename, Boolean useEmbeddedColorManagement) + 於 DualScreenDemo.PrimaryForm.InitializeButtonsForFavoritePictureBox() + 於 DualScreenDemo.PrimaryForm.InitializeFormAndControls() + 於 DualScreenDemo.PrimaryForm..ctor() + 於 DualScreenDemo.Program.Main() diff --git a/bin/themes/superstar/ICON下方/下方ICON-02.png b/bin/themes/superstar/ICON下方/下方ICON-02.png deleted file mode 100644 index 6d37906..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-02.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-03.png b/bin/themes/superstar/ICON下方/下方ICON-03.png deleted file mode 100644 index 3b7273a..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-03.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-04.png b/bin/themes/superstar/ICON下方/下方ICON-04.png deleted file mode 100644 index eb8fa7f..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-04.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-05.png b/bin/themes/superstar/ICON下方/下方ICON-05.png deleted file mode 100644 index f645cb7..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-05.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-06.png b/bin/themes/superstar/ICON下方/下方ICON-06.png deleted file mode 100644 index 687cb92..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-06.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-07.png b/bin/themes/superstar/ICON下方/下方ICON-07.png deleted file mode 100644 index 2e36b78..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-07.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-08.png b/bin/themes/superstar/ICON下方/下方ICON-08.png deleted file mode 100644 index 66759c9..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-08.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-09.png b/bin/themes/superstar/ICON下方/下方ICON-09.png deleted file mode 100644 index 9a552eb..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-09.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-10.png b/bin/themes/superstar/ICON下方/下方ICON-10.png deleted file mode 100644 index d809a36..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-10.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-11.png b/bin/themes/superstar/ICON下方/下方ICON-11.png deleted file mode 100644 index 146b25f..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-11.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-12.png b/bin/themes/superstar/ICON下方/下方ICON-12.png deleted file mode 100644 index e95093c..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-12.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-13.png b/bin/themes/superstar/ICON下方/下方ICON-13.png deleted file mode 100644 index 668e66e..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-13.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-14.png b/bin/themes/superstar/ICON下方/下方ICON-14.png deleted file mode 100644 index d2935e2..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-14.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-15.png b/bin/themes/superstar/ICON下方/下方ICON-15.png deleted file mode 100644 index bd59a64..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-15.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-16.png b/bin/themes/superstar/ICON下方/下方ICON-16.png deleted file mode 100644 index f4021a6..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-16.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-17.png b/bin/themes/superstar/ICON下方/下方ICON-17.png deleted file mode 100644 index 939f0ae..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-17.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-18.png b/bin/themes/superstar/ICON下方/下方ICON-18.png deleted file mode 100644 index 4f3dc09..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-18.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-19.png b/bin/themes/superstar/ICON下方/下方ICON-19.png deleted file mode 100644 index 16de6f4..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-19.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-20.png b/bin/themes/superstar/ICON下方/下方ICON-20.png deleted file mode 100644 index a8c9919..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-20.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-21.png b/bin/themes/superstar/ICON下方/下方ICON-21.png deleted file mode 100644 index e4f120d..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-21.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-22.png b/bin/themes/superstar/ICON下方/下方ICON-22.png deleted file mode 100644 index 350f407..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-22.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON-23.png b/bin/themes/superstar/ICON下方/下方ICON-23.png deleted file mode 100644 index e11956d..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON-23.png and /dev/null differ diff --git a/bin/themes/superstar/ICON下方/下方ICON_工作區域 1.png b/bin/themes/superstar/ICON下方/下方ICON_工作區域 1.png deleted file mode 100644 index 98f9940..0000000 Binary files a/bin/themes/superstar/ICON下方/下方ICON_工作區域 1.png and /dev/null differ diff --git a/bin/themes/superstar/_www.zip b/bin/themes/superstar/_www.zip deleted file mode 100644 index 389230a..0000000 Binary files a/bin/themes/superstar/_www.zip and /dev/null differ diff --git a/bin/themes/superstar/image.jpg b/bin/themes/superstar/image.jpg deleted file mode 100644 index 5d49bd1..0000000 Binary files a/bin/themes/superstar/image.jpg and /dev/null differ diff --git a/bin/themes/superstar/images.jpg b/bin/themes/superstar/images.jpg deleted file mode 100644 index a20236e..0000000 Binary files a/bin/themes/superstar/images.jpg and /dev/null differ diff --git a/bin/themes/superstar/py/test.py b/bin/themes/superstar/py/test.py deleted file mode 100644 index 33a6bc6..0000000 --- a/bin/themes/superstar/py/test.py +++ /dev/null @@ -1,33 +0,0 @@ -import cv2 -import numpy as np - -# Load the image -image_path = 'toggle_light.jpg' -image = cv2.imread(image_path) - -# Convert to grayscale -gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) - -# Set threshold for non-white color -# Note: Adjust the threshold values based on your image's specific conditions -upper_threshold = 220 # Anything below this will be considered as non-white - -# Create a mask for non-white regions (below the threshold value) -mask = cv2.inRange(gray, 0, upper_threshold) - -# Find contours from the mask -contours, hierarchy = cv2.findContours(mask, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) - -# Draw contours or compute bounding boxes -for contour in contours: - # Calculate the bounding rectangle for each non-white region - x, y, w, h = cv2.boundingRect(contour) - print(f"Bounding box coordinates: X: {x}, Y: {y}, Width: {w}, Height: {h}") - - # Optional: Draw the bounding box on the original image - cv2.rectangle(image, (x, y), (x+w, y+h), (0, 255, 0), 2) - -# Display the results -cv2.imshow('Image with Bounding Boxes', image) -cv2.waitKey(0) -cv2.destroyAllWindows() diff --git a/bin/themes/superstar/py/test2.py b/bin/themes/superstar/py/test2.py deleted file mode 100644 index 905954e..0000000 --- a/bin/themes/superstar/py/test2.py +++ /dev/null @@ -1,80 +0,0 @@ -import cv2 -import numpy as np - -# 初始化坐标点 -roi_pts = [] -drawing = False # True if the mouse is pressed down - -# 鼠标回调函数 -def select_roi(event, x, y, flags, param): - global roi_pts, drawing - - # 当按下左键是记录起始位置坐标 - if event == cv2.EVENT_LBUTTONDOWN: - drawing = True - roi_pts = [(x, y)] - - # 当鼠标左键按下并移动是绘制图形 - elif event == cv2.EVENT_MOUSEMOVE: - if drawing == True: - temp_image = param.copy() - cv2.rectangle(temp_image, roi_pts[0], (x, y), (0, 255, 0), 2) - cv2.imshow('image', temp_image) - - # 当松开鼠标左键停止绘画 - elif event == cv2.EVENT_LBUTTONUP: - drawing = False - roi_pts.append((x, y)) - cv2.rectangle(param, roi_pts[0], (x, y), (0, 255, 0), 2) - cv2.imshow('image', param) - -# 读取图像 -image = cv2.imread('555024.jpg') -image_copy = image.copy() -cv2.namedWindow('image') -cv2.setMouseCallback('image', select_roi, image) - -# Keep looping until the 'q' key is pressed -while True: - cv2.imshow('image', image) - key = cv2.waitKey(1) & 0xFF - - # 按下'r'重置选择区域 - if key == ord('r'): - image = image_copy.copy() - roi_pts = [] - - # 按下'q'退出循环 - elif key == ord('q'): - break - -# 关闭所有打开的窗口 -cv2.destroyAllWindows() - -# 如果选择了区域,那么进行黄色检测 -if len(roi_pts) == 2: - roi = image_copy[roi_pts[0][1]:roi_pts[1][1], roi_pts[0][0]:roi_pts[1][0]] - hsv_roi = cv2.cvtColor(roi, cv2.COLOR_BGR2HSV) - lower_yellow = np.array([20, 100, 100]) - upper_yellow = np.array([30, 255, 255]) - mask = cv2.inRange(hsv_roi, lower_yellow, upper_yellow) - - # 在掩码上找出轮廓 - contours, _ = cv2.findContours(mask, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) - - # 如果有轮廓则找出最大的轮廓 - if contours: - max_contour = max(contours, key=cv2.contourArea) - x, y, w, h = cv2.boundingRect(max_contour) - cv2.rectangle(roi, (x, y), (x+w, y+h), (0, 255, 0), 2) - print(f"Yellow area at X: {x}, Y: {y}, W: {w}, H: {h}") - - # 将边界框位置映射回原始图像 - x += roi_pts[0][0] - y += roi_pts[0][1] - cv2.rectangle(image_copy, (x, y), (x+w, y+h), (0, 255, 0), 2) - print(f"Yellow area at X: {x}, Y: {y}, W: {w}, H: {h}") - - cv2.imshow('Detected Yellow Area in ROI', image_copy) - cv2.waitKey(0) - cv2.destroyAllWindows() diff --git a/bin/themes/superstar/py/test3.py b/bin/themes/superstar/py/test3.py deleted file mode 100644 index b47492f..0000000 --- a/bin/themes/superstar/py/test3.py +++ /dev/null @@ -1,55 +0,0 @@ -import cv2 -import numpy as np -import os - -# 使用絕對路徑 -image_path = 'image.jpg' -# if not os.path.exists(image_path): -# print("File does not exist:", image_path) -# else: -# print("File exists, attempting to load...") -image = cv2.imread(image_path) - -if image is None: - print("But failed to load.") -else: - print("Image loaded successfully, processing...") - -# Convert to HSV color space -hsv = cv2.cvtColor(image, cv2.COLOR_BGR2HSV) - -# Define the range for yellow color in HSV -# Adjust these ranges based on your specific yellow color and lighting conditions -lower_yellow = np.array([20, 100, 100]) -upper_yellow = np.array([30, 255, 255]) -lower_pink = np.array([140, 100, 100]) -upper_pink = np.array([170, 255, 255]) -lower_purple = np.array([129, 50, 50]) # Lower bound of purple -upper_purple = np.array([158, 255, 255]) # Upper bound of purple -lower_blue = np.array([110, 50, 50]) # Lower bound of blue -upper_blue = np.array([130, 255, 255]) # Upper bound of blue -lower_blue_violet = np.array([120, 50, 50]) # Lower bound of blue-violet -upper_blue_violet = np.array([160, 255, 255]) # Upper bound of blue-violet -lower_red2 = np.array([170, 100, 100]) -upper_red2 = np.array([180, 255, 255]) - -# Create a mask for yellow color -mask = cv2.inRange(hsv, lower_pink, upper_pink) - -# Find contours on the mask -contours, _ = cv2.findContours(mask, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) - -# Draw all contours -for contour in contours: - x, y, w, h = cv2.boundingRect(contour) - cv2.rectangle(image, (x, y), (x+w, y+h), (0, 255, 0), 2) - coordinates_text = f"X: {x}, Y: {y}, W: {w}, H: {h}" - # if w > 100: - print(coordinates_text) - # Display coordinates on the image - cv2.putText(image, coordinates_text, (x, y-10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 255, 0), 1) - -# Show the image with all bounding boxes drawn -cv2.imshow('Image with yellow contours', image) -cv2.waitKey(0) -cv2.destroyAllWindows() \ No newline at end of file diff --git a/bin/themes/superstar/py/test4.py b/bin/themes/superstar/py/test4.py deleted file mode 100644 index 1da6318..0000000 --- a/bin/themes/superstar/py/test4.py +++ /dev/null @@ -1,40 +0,0 @@ -import cv2 -import numpy as np - -def detect_light_areas(image_path): - # 讀取圖片 - image = cv2.imread(image_path) - if image is None: - print("Failed to load image.") - return - - # 將圖片從 BGR 轉換到 HSV 色彩空間 - hsv = cv2.cvtColor(image, cv2.COLOR_BGR2HSV) - - # 設定 HSV 閾值範圍來選取淺色區域 - lower_hsv = np.array([0, 0, 70]) # 較低的 HSV 閾值 - upper_hsv = np.array([180, 50, 255]) # 較高的 HSV 閾值 - - # 創建遮罩 - mask = cv2.inRange(hsv, lower_hsv, upper_hsv) - - # 找到遮罩上的輪廓 - contours, _ = cv2.findContours(mask, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) - - # 在原始圖片上畫框 - for contour in contours: - x, y, w, h = cv2.boundingRect(contour) - cv2.rectangle(image, (x, y), (x + w, y + h), (0, 255, 0), 2) # 綠色方框,2像素寬 - text = f"X:{x} Y:{y} W:{w} H:{h}" - if w < 40 or h < 40: - continue - cv2.putText(image, text, (x, y - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (255, 255, 255), 2) # 白色文字 - - # 顯示原圖和結果 - cv2.imshow('Original', image) - # cv2.imshow('Light Areas Detected', mask) # 顯示遮罩 - cv2.waitKey(0) - cv2.destroyAllWindows() - -# 使用上面的函數 -detect_light_areas('555011.jpg') # 請更換為實際的圖片路徑 diff --git a/bin/themes/superstar/py/test5.py b/bin/themes/superstar/py/test5.py deleted file mode 100644 index 8aacb8d..0000000 --- a/bin/themes/superstar/py/test5.py +++ /dev/null @@ -1,30 +0,0 @@ -import cv2 -import numpy as np - -# Load the image -image_path = '555020.jpg' # replace with your image path -image = cv2.imread(image_path) - -# Convert to grayscale -gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) - -# Apply thresholding to get binary image -_, binary = cv2.threshold(gray, 240, 255, cv2.THRESH_BINARY) - -# Find contours of the white regions -contours, _ = cv2.findContours(binary, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) - -# Draw contours on the original image (optional, for visualization) -for contour in contours: - cv2.drawContours(image, [contour], -1, (0, 255, 0), 2) - -# Print positions of the white regions -for i, contour in enumerate(contours): - x, y, w, h = cv2.boundingRect(contour) - if w > 100: - print(f"White region {i+1}: x={x}, y={y}, width={w}, height={h}") - -# Show the image with contours (optional, for visualization) -cv2.imshow('White regions', image) -cv2.waitKey(0) -cv2.destroyAllWindows() diff --git a/bin/themes/superstar/py/test6.py b/bin/themes/superstar/py/test6.py deleted file mode 100644 index 6223063..0000000 --- a/bin/themes/superstar/py/test6.py +++ /dev/null @@ -1,25 +0,0 @@ -from PIL import Image - -def change_image_dpi(input_path, output_path, new_dpi): - # 打开图像 - image = Image.open(input_path) - - # 获取当前的dpi值(如果有) - dpi = image.info.get('dpi', (72, 72)) - print(f"当前DPI: {dpi}") - - # 保存图像并设置新的dpi值 - image.save(output_path, dpi=(new_dpi, new_dpi)) - print(f"DPI已更改为: {new_dpi}") - -# 输入图像路径 -input_image_path = "image.jpg" - -# 输出图像路径 -output_image_path = "image.jpg" - -# 目标DPI -new_dpi = 96 - -# 调用函数 -change_image_dpi(input_image_path, output_image_path, new_dpi) diff --git a/bin/themes/superstar/其他符號_人聲.zip b/bin/themes/superstar/其他符號_人聲.zip deleted file mode 100644 index b6d39ed..0000000 Binary files a/bin/themes/superstar/其他符號_人聲.zip and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-02.jpg b/bin/themes/superstar/我的最愛/我的最愛-02.jpg deleted file mode 100644 index 5dfea6f..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-02.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-02.png b/bin/themes/superstar/我的最愛/我的最愛-02.png new file mode 100644 index 0000000..f813692 Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-02.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-03.jpg b/bin/themes/superstar/我的最愛/我的最愛-03.jpg deleted file mode 100644 index 1019620..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-03.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-03.png b/bin/themes/superstar/我的最愛/我的最愛-03.png new file mode 100644 index 0000000..d42d8d1 Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-03.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-04.jpg b/bin/themes/superstar/我的最愛/我的最愛-04.jpg deleted file mode 100644 index 4e28d58..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-04.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-04.png b/bin/themes/superstar/我的最愛/我的最愛-04.png new file mode 100644 index 0000000..30dbec3 Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-04.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-05.jpg b/bin/themes/superstar/我的最愛/我的最愛-05.jpg deleted file mode 100644 index 29df2db..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-05.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-05.png b/bin/themes/superstar/我的最愛/我的最愛-05.png new file mode 100644 index 0000000..6e6832e Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-05.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-06.jpg b/bin/themes/superstar/我的最愛/我的最愛-06.jpg deleted file mode 100644 index a4ea28f..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-06.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-06.png b/bin/themes/superstar/我的最愛/我的最愛-06.png new file mode 100644 index 0000000..aa0443c Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-06.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-07.jpg b/bin/themes/superstar/我的最愛/我的最愛-07.jpg deleted file mode 100644 index 304fb33..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-07.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-07.png b/bin/themes/superstar/我的最愛/我的最愛-07.png new file mode 100644 index 0000000..a647ed3 Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-07.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-08.jpg b/bin/themes/superstar/我的最愛/我的最愛-08.jpg deleted file mode 100644 index f5509e9..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-08.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-08.png b/bin/themes/superstar/我的最愛/我的最愛-08.png new file mode 100644 index 0000000..976535f Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-08.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-09.jpg b/bin/themes/superstar/我的最愛/我的最愛-09.jpg deleted file mode 100644 index 6a09211..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-09.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-09.png b/bin/themes/superstar/我的最愛/我的最愛-09.png new file mode 100644 index 0000000..4a17851 Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-09.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-10.jpg b/bin/themes/superstar/我的最愛/我的最愛-10.jpg deleted file mode 100644 index 7ef15b5..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-10.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-10.png b/bin/themes/superstar/我的最愛/我的最愛-10.png new file mode 100644 index 0000000..71705b3 Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-10.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-11.jpg b/bin/themes/superstar/我的最愛/我的最愛-11.jpg deleted file mode 100644 index 19068e3..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-11.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-11.png b/bin/themes/superstar/我的最愛/我的最愛-11.png new file mode 100644 index 0000000..eee7b2e Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-11.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-12.jpg b/bin/themes/superstar/我的最愛/我的最愛-12.jpg deleted file mode 100644 index cd684ee..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-12.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-12.png b/bin/themes/superstar/我的最愛/我的最愛-12.png new file mode 100644 index 0000000..8884e93 Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-12.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-13.jpg b/bin/themes/superstar/我的最愛/我的最愛-13.jpg deleted file mode 100644 index a4a60f5..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-13.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-13.png b/bin/themes/superstar/我的最愛/我的最愛-13.png new file mode 100644 index 0000000..78b71c8 Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-13.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-14.jpg b/bin/themes/superstar/我的最愛/我的最愛-14.jpg deleted file mode 100644 index 8c38d34..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-14.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-14.png b/bin/themes/superstar/我的最愛/我的最愛-14.png new file mode 100644 index 0000000..3d638da Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-14.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-15.jpg b/bin/themes/superstar/我的最愛/我的最愛-15.jpg deleted file mode 100644 index 5707123..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛-15.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛-15.png b/bin/themes/superstar/我的最愛/我的最愛-15.png new file mode 100644 index 0000000..995b18c Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛-15.png differ diff --git a/bin/themes/superstar/我的最愛/我的最愛_工作區域.jpg b/bin/themes/superstar/我的最愛/我的最愛_工作區域.jpg deleted file mode 100644 index dc3a27d..0000000 Binary files a/bin/themes/superstar/我的最愛/我的最愛_工作區域.jpg and /dev/null differ diff --git a/bin/themes/superstar/我的最愛/我的最愛_工作區域.png b/bin/themes/superstar/我的最愛/我的最愛_工作區域.png new file mode 100644 index 0000000..e8b78c5 Binary files /dev/null and b/bin/themes/superstar/我的最愛/我的最愛_工作區域.png differ diff --git a/bin/themes/superstar/歌名/字數/4.歌名查詢(字數按鍵)_確認 複本.png b/bin/themes/superstar/歌名/字數/4.歌名查詢(字數按鍵)_確認 複本.png deleted file mode 100644 index 4390c4f..0000000 Binary files a/bin/themes/superstar/歌名/字數/4.歌名查詢(字數按鍵)_確認 複本.png and /dev/null differ diff --git a/bin/themes/superstar/歌名/字數/4.歌名查詢(字數按鍵)_確認.png b/bin/themes/superstar/歌名/字數/4.歌名查詢(字數按鍵)_確認.png deleted file mode 100644 index 5727e68..0000000 Binary files a/bin/themes/superstar/歌名/字數/4.歌名查詢(字數按鍵)_確認.png and /dev/null differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-02.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-02.png index 8cadd35..de29491 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-02.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-02.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-03.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-03.png index 06a97a4..8f45b76 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-03.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-03.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-04.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-04.png index 1d623e5..591afb2 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-04.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-04.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-05.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-05.png index 90043e8..27c30b0 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-05.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-05.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-06.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-06.png index 99de723..7d0d7e6 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-06.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-06.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-07.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-07.png index 966468d..3e22d58 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-07.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-07.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-08.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-08.png index 1e2434e..36782ef 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-08.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-08.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-09.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-09.png index 699469a..8e391b2 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-09.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-09.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-10.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-10.png index 4ec3dc5..9088b3b 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-10.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-10.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-11.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-11.png index 8d81abd..de78dcf 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-11.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-11.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-13.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-13.png index 128e38e..3e370d0 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-13.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-13.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-14.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-14.png index 193b194..e1a278b 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-14.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-14.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-15.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-15.png index 36d424b..b7292d5 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-15.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-15.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-17.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-17.png index 4a8c93a..4eface8 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-17.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-17.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-18.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-18.png index b0f8421..d0103d7 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-18.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-18.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-19.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-19.png index 5a882be..d9825ad 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-19.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-19.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-20.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-20.png index 4b0e27c..fd836bb 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-20.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-20.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-21.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-21.png index 1c513ee..6e1ddfc 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-21.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-21.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-22.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-22.png index 6e15c9b..65e4476 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-22.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-22.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-23.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-23.png index a368c45..e510a2e 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-23.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-23.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-24.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-24.png index d5bf61a..5ddfb9c 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-24.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-24.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-25.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-25.png index d2712d4..1a71214 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-25.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-25.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-26.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-26.png index 7ad23e8..14ab21c 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-26.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-26.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-28.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-28.png index 556f659..00867f5 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-28.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-28.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-29.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-29.png index 2565b32..f7dced8 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-29.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-29.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-30.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-30.png index d69b555..e22c314 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-30.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)-30.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)_已按.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)_已按.png index 9499d41..63085e4 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)_已按.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)_已按.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)_未按.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)_未按.png index 82659f1..46f4df0 100644 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)_未按.png and b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)_未按.png differ diff --git a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)_未按_沒有確認.png b/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)_未按_沒有確認.png deleted file mode 100644 index 5ad4eea..0000000 Binary files a/bin/themes/superstar/歌名/字數/VOD_歌名查詢_編號查詢(按鍵)_未按_沒有確認.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-02.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-02.png index 8cadd35..de29491 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-02.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-02.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-03.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-03.png index 06a97a4..8f45b76 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-03.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-03.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-04.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-04.png index 1d623e5..591afb2 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-04.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-04.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-05.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-05.png index 90043e8..27c30b0 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-05.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-05.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-06.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-06.png index 99de723..7d0d7e6 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-06.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-06.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-07.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-07.png index 966468d..3e22d58 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-07.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-07.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-08.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-08.png index 1e2434e..36782ef 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-08.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-08.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-09.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-09.png index 699469a..8e391b2 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-09.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-09.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-10.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-10.png index 4ec3dc5..9088b3b 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-10.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-10.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-11.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-11.png index 8d81abd..de78dcf 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-11.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-11.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-13.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-13.png index 128e38e..3e370d0 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-13.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-13.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-14.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-14.png index 193b194..e1a278b 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-14.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-14.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-15.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-15.png index 36d424b..b7292d5 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-15.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-15.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-17.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-17.png index 4a8c93a..4eface8 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-17.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-17.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-18.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-18.png index b0f8421..d0103d7 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-18.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-18.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-19.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-19.png index 5a882be..d9825ad 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-19.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-19.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-20.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-20.png index 4b0e27c..fd836bb 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-20.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-20.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-21.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-21.png index 1c513ee..6e1ddfc 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-21.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-21.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-22.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-22.png index 6e15c9b..65e4476 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-22.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-22.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-23.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-23.png index a368c45..e510a2e 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-23.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-23.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-24.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-24.png index d5bf61a..5ddfb9c 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-24.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-24.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-25.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-25.png index d2712d4..1a71214 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-25.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-25.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-26.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-26.png index 7ad23e8..14ab21c 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-26.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-26.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-28.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-28.png index 556f659..00867f5 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-28.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-28.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-29.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-29.png index 2565b32..f7dced8 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-29.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-29.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-30.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-30.png index d69b555..e22c314 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-30.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)-30.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)_已按.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)_已按.png index 57c6ef2..3cb5edb 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)_已按.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)_已按.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)_未按.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)_未按.png index a6f0102..45091d2 100644 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)_未按.png and b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)_未按.png differ diff --git a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)_未按_沒有確認.png b/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)_未按_沒有確認.png deleted file mode 100644 index 5ad4eea..0000000 Binary files a/bin/themes/superstar/歌星/字數/VOD_歌星查詢_編號查詢(按鍵)_未按_沒有確認.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-02.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-02.png new file mode 100644 index 0000000..8cadd35 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-02.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-03.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-03.png new file mode 100644 index 0000000..06a97a4 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-03.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-04.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-04.png new file mode 100644 index 0000000..1d623e5 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-04.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-05.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-05.png new file mode 100644 index 0000000..90043e8 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-05.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-06.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-06.png new file mode 100644 index 0000000..99de723 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-06.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-07.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-07.png new file mode 100644 index 0000000..c8a53fd Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-07.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-08.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-08.png new file mode 100644 index 0000000..1e2434e Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-08.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-09.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-09.png new file mode 100644 index 0000000..699469a Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-09.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-10.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-10.png new file mode 100644 index 0000000..4ec3dc5 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-10.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-11.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-11.png new file mode 100644 index 0000000..8d81abd Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-11.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-13.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-13.png new file mode 100644 index 0000000..128e38e Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-13.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-14.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-14.png new file mode 100644 index 0000000..193b194 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-14.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-15.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-15.png new file mode 100644 index 0000000..36d424b Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-15.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-17.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-17.png new file mode 100644 index 0000000..4a8c93a Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-17.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-18.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-18.png new file mode 100644 index 0000000..b0f8421 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-18.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-19.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-19.png new file mode 100644 index 0000000..5a882be Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-19.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-20.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-20.png new file mode 100644 index 0000000..4b0e27c Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-20.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-21.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-21.png new file mode 100644 index 0000000..1c513ee Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-21.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-22.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-22.png new file mode 100644 index 0000000..6e15c9b Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-22.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-23.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-23.png new file mode 100644 index 0000000..a368c45 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-23.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-24.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-24.png new file mode 100644 index 0000000..d5bf61a Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-24.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-25.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-25.png new file mode 100644 index 0000000..d2712d4 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-25.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-26.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-26.png new file mode 100644 index 0000000..7ad23e8 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-26.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-28.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-28.png new file mode 100644 index 0000000..556f659 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-28.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-29.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-29.png new file mode 100644 index 0000000..2565b32 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-29.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-30.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-30.png new file mode 100644 index 0000000..d69b555 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)-30.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)_已按.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)_已按.png new file mode 100644 index 0000000..57c6ef2 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)_已按.png differ diff --git a/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)_未按.png b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)_未按.png new file mode 100644 index 0000000..a6f0102 Binary files /dev/null and b/bin/themes/superstar/歌星/字數/新增資料夾/VOD_歌星查詢_編號查詢(按鍵)_未按.png differ diff --git a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_未按.png b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_未按.png index 0028707..c890557 100644 Binary files a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_未按.png and b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_未按.png differ diff --git a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_清除 複本.png b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_清除 複本.png index 17c1569..c023dd6 100644 Binary files a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_清除 複本.png and b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_清除 複本.png differ diff --git a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_清除.png b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_清除.png index 0f623ee..31fbfce 100644 Binary files a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_清除.png and b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_清除.png differ diff --git a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_重填 複本.png b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_重填 複本.png index 2903487..d9e2093 100644 Binary files a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_重填 複本.png and b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_重填 複本.png differ diff --git a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_重填.png b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_重填.png index e0adc0d..a3e9588 100644 Binary files a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_重填.png and b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_重填.png differ diff --git a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_關閉 複本.png b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_關閉 複本.png index 152bfdd..ce2fd13 100644 Binary files a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_關閉 複本.png and b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_關閉 複本.png differ diff --git a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_關閉.png b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_關閉.png index c29b2d8..c6dfa56 100644 Binary files a/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_關閉.png and b/bin/themes/superstar/歌星/手寫/3.歌星查詢(手寫按鍵)_關閉.png differ diff --git a/bin/themes/superstar/歌星/手寫/image.png b/bin/themes/superstar/歌星/手寫/image.png deleted file mode 100644 index 0028707..0000000 Binary files a/bin/themes/superstar/歌星/手寫/image.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/手寫/test3.py b/bin/themes/superstar/歌星/手寫/test3.py deleted file mode 100644 index 42c773b..0000000 --- a/bin/themes/superstar/歌星/手寫/test3.py +++ /dev/null @@ -1,57 +0,0 @@ -import cv2 -import numpy as np -import os - -# 使用絕對路徑 -image_path = 'image.png' -if not os.path.exists(image_path): - print("File does not exist:", image_path) -else: - print("File exists, attempting to load...") -image = cv2.imread(image_path) - -if image is None: - print("But failed to load.") -else: - print("Image loaded successfully, processing...") - -# Convert to HSV color space -hsv = cv2.cvtColor(image, cv2.COLOR_BGR2HSV) - -# Define the range for yellow color in HSV -# Adjust these ranges based on your specific yellow color and lighting conditions -lower_yellow = np.array([20, 100, 100]) -upper_yellow = np.array([30, 255, 255]) -lower_pink = np.array([140, 100, 100]) -upper_pink = np.array([170, 255, 255]) -lower_purple = np.array([129, 50, 50]) # Lower bound of purple -upper_purple = np.array([158, 255, 255]) # Upper bound of purple -lower_blue = np.array([110, 50, 50]) # Lower bound of blue -upper_blue = np.array([130, 255, 255]) # Upper bound of blue -lower_blue_violet = np.array([120, 50, 50]) # Lower bound of blue-violet -upper_blue_violet = np.array([160, 255, 255]) # Upper bound of blue-violet -lower_red2 = np.array([170, 100, 100]) -upper_red2 = np.array([180, 255, 255]) -lower_white = np.array([0, 0, 200]) -upper_white = np.array([180, 55, 255]) - -# Create a mask for yellow color -mask = cv2.inRange(hsv, lower_white, upper_white) - -# Find contours on the mask -contours, _ = cv2.findContours(mask, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) - -# Draw all contours -for contour in contours: - x, y, w, h = cv2.boundingRect(contour) - cv2.rectangle(image, (x, y), (x+w, y+h), (0, 255, 0), 2) - coordinates_text = f"X: {x}, Y: {y}, W: {w}, H: {h}" - # if w > 100: - print(coordinates_text) - # Display coordinates on the image - cv2.putText(image, coordinates_text, (x, y-10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 255, 0), 1) - -# Show the image with all bounding boxes drawn -cv2.imshow('Image with yellow contours', image) -cv2.waitKey(0) -cv2.destroyAllWindows() \ No newline at end of file diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-03.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-03.png deleted file mode 100644 index c7ddad5..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-03.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-04.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-04.png deleted file mode 100644 index 9fb1c0d..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-04.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-05.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-05.png deleted file mode 100644 index d3b2950..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-05.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-06.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-06.png deleted file mode 100644 index e55853f..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-06.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-07.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-07.png deleted file mode 100644 index ea906f2..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-07.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-08.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-08.png deleted file mode 100644 index 09ec3b8..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-08.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-09.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-09.png deleted file mode 100644 index d7ce7c9..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-09.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-10.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-10.png deleted file mode 100644 index 10c0896..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-10.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-11.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-11.png deleted file mode 100644 index b9a1af5..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-11.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-12.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-12.png deleted file mode 100644 index 5d9c11c..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-12.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-13.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-13.png deleted file mode 100644 index 3299eb3..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-13.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-14.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-14.png deleted file mode 100644 index 13813bd..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-14.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-15.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-15.png deleted file mode 100644 index 287998b..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-15.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-16.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-16.png deleted file mode 100644 index 6152233..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-16.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-17.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-17.png deleted file mode 100644 index f2d037b..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-17.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-18.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-18.png deleted file mode 100644 index e2c38bb..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-18.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-19.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-19.png deleted file mode 100644 index 2aaf66c..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-19.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-20.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-20.png deleted file mode 100644 index eb6e25d..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-20.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-21.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-21.png deleted file mode 100644 index 8dd9a79..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-21.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-22.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-22.png deleted file mode 100644 index 583db51..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-22.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-23.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-23.png deleted file mode 100644 index 54272aa..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-23.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-24.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-24.png deleted file mode 100644 index b1fe413..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-24.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-25.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-25.png deleted file mode 100644 index 3391047..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-25.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-26.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-26.png deleted file mode 100644 index 5995e04..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)-26.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)_已按.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)_已按.png deleted file mode 100644 index f2e9fa7..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)_已按.png and /dev/null differ diff --git a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)_未按.png b/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)_未按.png deleted file mode 100644 index c150ea3..0000000 Binary files a/bin/themes/superstar/歌星/筆劃/VOD_歌星查詢_筆劃查詢(按鍵)_未按.png and /dev/null differ