Skip to content

Instantly share code, notes, and snippets.

@nisrulz
nisrulz / grayscale_imageview.java
Created December 25, 2015 05:52
Apply grayscale filter to ImageView in android
ImageView imgview = (ImageView)findViewById(R.id.imageView_grayscale);
imgview.setImageBitmap(bitmap);
// Apply grayscale filter
ColorMatrix matrix = new ColorMatrix();
matrix.setSaturation(0);
ColorMatrixColorFilter filter = new ColorMatrixColorFilter(matrix);
imgview.setColorFilter(filter);
@osin
osin / main.php
Created May 26, 2011 12:12
function to Include *inc *css *js
function IncludeHeader($title=SiteName, $includeINC = true, $includeCSS = true, $includeJS = true, $headBegin=true, $headEnd=true) {
include_once 'Class/Db.class.inc';
$db = new DB("database", "localhost", "root");
$db->connect();
if ($headBegin)
echo('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html><head>');
echo ('
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>' . SiteName." - ".$title . '</title>');