memmove
是 C 語言中的一個函數,用于在內存中移動數據
memmove
可以避免由于重疊導致的問題。import ctypes
def memmove(src, dest, count):
libc = ctypes.CDLL(ctypes.util.find_library('c'))
libc.memmove(dest, src, count)
source = b"Hello, World!"
destination = bytearray(len(source))
# 將 "World" 復制到字符串的開頭
memmove(source[7:], destination, 5)
destination[5:] = source[5:]
print(destination.decode()) # 輸出 "World, World!"
memmove
可以用于復制或移動像素塊。from PIL import Image
import ctypes
def memmove(src, dest, count):
libc = ctypes.CDLL(ctypes.util.find_library('c'))
libc.memmove(dest, src, count)
image = Image.open("input.bmp")
width, height = image.size
pixels = image.load()
# 將圖像的第一行復制到第二行
row_size = width * 3 # 假設圖像是 24 位色
memmove(pixels[0, 0], pixels[0, 1], row_size)
image.save("output.bmp")
請注意,這些示例僅用于說明如何在 Python 中使用 memmove
。在實際應用中,你可能需要根據具體需求調整代碼。