Skip to content

Instantly share code, notes, and snippets.

View maxmoore14's full-sized avatar

Maxwell C. Moore maxmoore14

View GitHub Profile
@maxmoore14
maxmoore14 / gist:23b6721b41c58c10737e
Created November 7, 2014 23:03
Open a JQM popup with an image
$('<img>').appendTo(myPopupElement)
.on('load', function () {
// open the popup here
})
.attr('src', myImageSource)
.attr('alt', 'my alt text');
@maxmoore14
maxmoore14 / ResizeImage
Created October 9, 2014 14:25
Resize an image
Public Function ResizeImage(fs As FileStream,
width As Integer,
Optional height As Integer = 0) As MemoryStream
Dim img As New BitmapImage
Dim enc As New PngBitmapEncoder
Dim ms As New MemoryStream
img.BeginInit()
img.StreamSource = fs