相冊管理系統源碼
⑴ 我想建立一個專門管理圖片的網站,哪裡有合適的源碼啊
可以試試這個:PHP美女寫真Cms v1.251 utf-8版
http://www.mycodes.net/soft/753.htm
可做寫真,壁紙站,功能簡單實用。
全站一鍵生成靜態。
支持在線圖片縮略圖製作編輯。
檢測目錄圖片添加圖片功能。
圖片萬能採集功能。
圖片水印功能。
AJAX免刷新評論。
AJAX圖片批量上傳。
另外 DEDECMS 也是很好用的,自己修改代碼。
⑵ Cocos Creator怎麼使用安卓手機相冊中的圖片,最好有示例源碼
android 將drawable中的圖片保存到系統相冊中的原理比較簡單,獲取到的bitmap,然後通過的compress方法寫到一個fileoutputstream中. 再通知MediaScannerService有圖片文件加入就可以了.
保存圖片的核心代碼如下:
Bitmap bitmap= BitmapFactory.decodeResource(getResources(), R.drawable.icon);
MediaStore.Images.Media.insertImage(context.getContentResolver(), bitmap, name, "");
或者
FileOutputStream fos = openFileOutput("image", Context.MODE_PRIVATE);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
fos.flush();
fos.close();
//發送系統通知消息
context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + Environment.getExternalStorageDirectory())));
另一種方法是直接使用文件流讀寫:
InputStream is = mContext.getResources().openRawResource(PicID);
FileOutputStream fos = new FileOutputStream(LogoFilePath);
byte[] buffer = new byte[8192];
int count = 0;
while((count=is.read(buffer)) > 0)
{
fos.write(buffer, 0, count);
}
fos.close();
is.close();
這里要注意目錄許可權問題:在應用程序AndroidManifest.xml中的manifest節點中加入android:sharedUerId="android.uid.system"這個屬性。然後放在源碼環境中編譯,並通過adb install 的方式進行安裝。mk文件中的屬性改為LOCAL_CERTIFICATE :=platform。