Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Add-Type -AssemblyName PresentationCore
- Add-Type -AssemblyName system.drawing
- [void][reflection.assembly]::LoadWithPartialName("System.Windows.Forms")
- $delay = 35
- $filename = "animation.gif"
- $fileStream = New-Object System.IO.FileStream $filename, 'Create'
- $gif = New-Object -TypeName System.Windows.Media.Imaging.GifBitmapEncoder
- foreach ($frame in Get-ChildItem ".\*.bmp") {
- $bmp = [System.Drawing.Bitmap]::FromFile($frame.fullname)
- $hbmp = $bmp.GetHbitMap()
- $bmpsrc = [System.Windows.Interop.Imaging]::CreateBitmapSourceFromHBitmap($hbmp, [System.IntPtr]::Zero, 'Empty', [System.Windows.Media.Imaging.BitmapSizeOptions]::FromEmptyOptions())
- For ($i = 0; $i -lt $delay; $i++) {
- $gif.Frames.Add([System.Windows.Media.Imaging.BitmapFrame]::Create($bmpsrc))
- }
- $hbmp = $bmp = $null
- }
- $gif.Save($fileStream)
- $fileStream.Flush()
- $fileStream.Dispose()
- $bytes = [System.IO.File]::ReadAllBytes("animation.gif")
- $applicationExtension = [byte[]](33, 255, 11, 78, 69, 84, 83, 67, 65, 80, 69, 50, 46, 48, 3, 1, 0, 0, 0)
- $newBytes = New-Object -TypeName 'System.Collections.Generic.List[byte]'
- $newBytes.AddRange([byte[]]$bytes[0..12]);
- $newBytes.AddRange($applicationExtension);
- $newBytes.AddRange([byte[]]$bytes[13..($bytes.count)])
- $streamE = New-Object System.IO.MemoryStream(,$newBytes)
- $wpImage = [System.Drawing.Image]::FromStream($streamE)
- #$wpImage.Save("animation-with-delay.gif", "gif") #Save gif with the new delay
- [System.Windows.Forms.Application]::EnableVisualStyles();
- $form = new-object Windows.Forms.Form
- $form.Width = $wpImage.Size.Width;
- $form.Height = $wpImage.Size.Height;
- $form.TopMost = $false
- $form.FormBorderStyle = [System.Windows.Forms.BorderStyle]::None;
- $Form.ControlBox = $False
- $pictureBox = new-object Windows.Forms.PictureBox
- $pictureBox.Width = $wpImage.Size.Width;
- $pictureBox.Height = $wpImage.Size.Height;
- $pictureBox.Image = $wpImage;
- $form.controls.add($pictureBox)
- $form.Add_Shown( { $form.Activate() } )
- $form.ShowDialog()| Out-Null
Advertisement
Comments
-
- This is big
- [11:22 AM]
- Here's what happens. They are stopping lives of people they dont like, either metaphorically (cloning + raising a new mind at that waypoint) or via death (then cloning without memeber and rebirthing). This stopped life has the same exact programming as the checkpoint/stoppoint or at death.
- [11:22 AM]
- Then, they do things like what happened in my life. They push the new target into sin, and when its young and doesnt have a chance at avoiding the temptating of sin, they abuse it (they abuse it and do this, because the person it was previously was their enemy).
- [11:24 AM]
- They have figured out the best way to abuse their enemies: it's been cloning them without memory, or using correlations then abusing them. IE: they have done things to me about my 'woman form' and sexual objectification, they are creating waypoints in their mind. What this means is: if they know I know they're creating links to my woman form through the guy that I am right now, they will have a link and a bridge to when I lose my memory and am that actual woman form, this is even regardless if I lose my memory or not.
- [11:25 AM]
- This means: they are sadistically (since its likely ill lose my memory) conjuring proper correlation to both entities, so they can continue their harassment and perpetuation of evil and sin on them.
- [11:25 AM]
- IE: King Charles hated princess Diana and had her killed in a car accident. I have the same birth date as princess diana and I'm actually princess diana. It's actually more likely that was my female form than andrew guiles at this point. I might have his face and he has mine.
Add Comment
Please, Sign In to add comment
Advertisement