Post subject: Getting the Original Pixel Art for Mega Man 9 (and Maybe 10)
Publisher
Joined: 4/23/2009
Posts: 1283
While helping Rolanmen1 put up this encode: https://www.youtube.com/watch?v=kbjYUoamBNM&feature=youtu.be I wrote a script that took what Dolphin outputted and fixed it to the original pixel art. Hope this helps someone in the future. It requires you to capture at 1x native (640x480). Here you go:
Language: AviSynth

function FixPixelArt(clip c, int n) { goodPixels = c.crop(n * 5, 0, 4, -0) return n == 0 ? goodPixels : StackHorizontal(FixPixelArt(c, n - 1), goodPixels) } ImageSource(file="hh74sgC.png", start=0, end=119, fps=60) FixPixelArt(127) PointResize(last.width / 2, last.height / 2)