在windows的cmd命令行下,使用Python的PIL库打开并显示一个jpg图片: ? 1 2 3 openedImg = Image.open(saveToFile); print "openedImg=",openedImg; openedImg.show(); 结果是,图片被windows的图片查看器打开,却打开的是bmp图片,并且出错: Windows Photo Viewer can’t open this picture because either the pictu
用Delphi直接获取bmp图片的像素,并存储显示出.(此像素主要用在LED上显示).希望高手能给出代码啊!! function getImagePixels(f: string): Integer; var jpg: TJpegImage; bmp: TBitmap; begin Result := 0; if not FileExists(f) then Exit; if SameText(ExtractFileExt(f), '.bmp') then beg