您好,登錄后才能下訂單哦!
本篇內容主要講解“Python如何實現多張圖片合成文字的效果”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Python如何實現多張圖片合成文字的效果”吧!
首先我們需要從百度下載大量王心凌的圖片,但是如果會去百度圖片里一張張右鍵下載,但這樣未免太麻煩了,所以打算直接用python寫一個批量下載圖片的代碼,輸入想要下載圖片的關鍵字,然后輸入想要下載圖片的數量,就可以成功下載圖片了!
代碼主要分成三個部分:
下載圖片
檢測圖片數量
查找相似圖片
def dowmloadPicture(html, keyword): global num # t =0 pic_url = re.findall('"objURL":"(.*?)",', html, re.S) # 先利用正則表達式找到圖片url print('找到關鍵詞:' + keyword + '的圖片,即將開始下載圖片...') for each in pic_url: print('正在下載第' + str(num + 1) + '張圖片,圖片地址:' + str(each)) try: if each is not None: pic = requests.get(each, timeout=7) else: continue except BaseException: print('錯誤,當前圖片無法下載') continue else: string = file + r'\\' + keyword + '_' + str(num) + '.jpg' fp = open(string, 'wb') fp.write(pic.content) fp.close() num += 1 if num >= numPicture: return
def Find(url, A): global List print('正在檢測圖片總數,請稍等.....') t = 0 i = 1 s = 0 while t < 1000: Url = url + str(t) try: # 這里搞了下 Result = A.get(Url, timeout=7, allow_redirects=False) except BaseException: t = t + 60 continue else: result = Result.text pic_url = re.findall('"objURL":"(.*?)",', result, re.S) # 先利用正則表達式找到圖片url s += len(pic_url) if len(pic_url) == 0: break else: List.append(pic_url) t = t + 60 return s
def dowmloadPicture(html, keyword): global num # t =0 pic_url = re.findall('"objURL":"(.*?)",', html, re.S) # 先利用正則表達式找到圖片url print('找到關鍵詞:' + keyword + '的圖片,即將開始下載圖片...') for each in pic_url: print('正在下載第' + str(num + 1) + '張圖片,圖片地址:' + str(each)) try: if each is not None: pic = requests.get(each, timeout=7) else: continue except BaseException: print('錯誤,當前圖片無法下載') continue else: string = file + r'\\' + keyword + '_' + str(num) + '.jpg' fp = open(string, 'wb') fp.write(pic.content) fp.close() num += 1 if num >= numPicture: return
使用效果:
當我們下載好了所需要的王心凌的照片,下一步我們需要用這些圖片組成我們需要的文字。
所以首先準備一張要拼成的圖片,比如需要組成的文字,如端午安康,我們可以用 PowerPoint)制作一個喜歡的文字樣式,然后保存成jpg格式。
代碼如下所示:
import photomosaic as pm # 加載要拼成的圖片image(jpg 格式,圖片越大,得到的拼圖的每個小圖分辨率越高) image = pm.imread("1.jpg", as_gray=False) # 從指定文件夾加載圖片庫(需要比較多的圖片才能獲得較好的效果) pool = pm.make_pool("wxl/*.jpg") # 制作 50*50 的拼圖馬賽克 mosaic = pm.basic_mosaic(image, pool, (200, 200)) # 保存拼圖 pm.imsave("mosaic.jpg", mosaic)
不過由于這個庫版本問題,所以需要在庫函數里面做一點點修改才能成才運行。
def crop_to_fit(image, shape): """ Return a copy of image resized and cropped to precisely fill a shape. To resize a colored 2D image, pass in a shape with two entries. When ``len(shape) < image.ndim``, higher dimensions are ignored. Parameters ---------- image : array shape : tuple e.g., ``(height, width)`` but any length <= ``image.ndim`` is allowed Returns ------- cropped_image : array """ # Resize smallest dimension (width or height) to fit. d = np.argmin(np.array(image.shape)[:2] / np.array(shape)) enlarged_shape = (tuple(np.ceil(np.array(image.shape[:len(shape)]) * shape[d]/image.shape[d])) + image.shape[len(shape):]) resized = resize(image, enlarged_shape, mode='constant', anti_aliasing=False) # Now the image is as large or larger than the shape along all dimensions. # Crop any overhang in the other dimension. crop_width = [] for actual, target in zip(resized.shape, shape): overflow = actual - target # Center the image and crop, biasing left if overflow is odd. left_margin = int(np.floor(overflow / 2)) right_margin = int(np.ceil(overflow / 2)) crop_width.append((left_margin, right_margin)) # Do not crop any additional dimensions beyond those given in shape. for _ in range(resized.ndim - len(shape)): crop_width.append((0, 0)) cropped = crop(resized, crop_width) return cropped
在裁剪圖片的時候輸入需要是int型,所以把left_margin和right_margin強制轉化成int型。
實現效果:
效果確實一般般,局部放大,可以觀察出,生成圖是由照片拼接而成的,所以整體大圖的清晰度也與小照片的數量有關,也有可能是圖片分辨率大小以及組成圖片尺寸不一的原因,所以又嘗試了另一種方法。
def readSourceImages(sourcepath,blocksize): print('開始讀取圖像') # 合法圖像列表 sourceimages = [] # 平均顏色列表 avgcolors = [] for path in tqdm(glob.glob("{}/*.jpg".format(sourcepath))): image = cv2.imread(path, cv2.IMREAD_COLOR) if image.shape[-1] != 3: continue image = cv2.resize(image, (blocksize, blocksize)) avgcolor = np.sum(np.sum(image, axis=0), axis=0) / (blocksize * blocksize) sourceimages.append(image) avgcolors.append(avgcolor) print('結束讀取') return sourceimages,np.array(avgcolors)
通過這個方法能夠獲取照片集中的每張照片與組成的大圖之間顏色的相似度,將相似的照片放到對應的位置。
實現效果:
到此,相信大家對“Python如何實現多張圖片合成文字的效果”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。