我正在尋找一個快速的Jpeg庫 - 以更快地保存和加載jpeg圖像。互聯網上有這樣的事情嗎?這是最好的,如果你知道如何更快的是,德爾福的JPEG文件德爾福快速JPEG庫
我只測試了Jpeg.TJPEGImage
我正在尋找一個快速的Jpeg庫 - 以更快地保存和加載jpeg圖像。互聯網上有這樣的事情嗎?這是最好的,如果你知道如何更快的是,德爾福的JPEG文件德爾福快速JPEG庫
我只測試了Jpeg.TJPEGImage
你可以使用的libjpeg或libJpegTurbo該庫。後者肯定是非常快的。
從單元:
{
libJPEG Header conversion by Steffen Xonna. (21-03-2008)
http://www.dev-center.de/index.php?cat=header&file=libjpeg
Below you find an copy from the original libJPEG header.
/*
* jpeglib.h
*
* Copyright (C) 1991-1998, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying README file.
*
* This file defines the application interface for the JPEG library.
* Most applications using the library need only include this file,
* and perhaps jerror.h if they want to know the exact error codes.
*/
}
最新的jp jpeglib是超大圖像最快的,但對於平均和小jpegs,synopse的SSE2本機解碼器仍然是最快的。 – hikari
我們有一個JPEG解壓縮器將每秒解壓縮超過350萬像素(超過700萬像素,如果在代碼重啓動標記)。還提取超過3000每秒的縮略圖。這不包括將壓縮代碼讀入內存的時間。看看www.instantimage.com。也非常堅實,並將解壓縮許多JPEG圖像,微軟Windows軟件不會。
我已經測試過只有Jpeg.TJPEGImage – user558126
比你想要你的代碼要快多少?你在用什麼樣的圖像? –
感謝您的支持David!圖像大小爲800x600或960x800。圖像尺寸83-100kb。它被保存/壓縮使用德爾福的Jpeg.TJPEGImage ..我正在尋找一個更好的類來壓縮和加載圖像(至少從TBitmap保存/壓縮圖像) – user558126