forums.ps2dev.org Forum Index forums.ps2dev.org
Homebrew PS2, PSP & PS3 Development Discussions
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

New Function ---- Invert

 
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Lua Player Development
View previous topic :: View next topic  
Author Message
flattspott



Joined: 22 Aug 2005
Posts: 22

PostPosted: Mon Oct 17, 2005 11:01 am    Post subject: New Function ---- Invert Reply with quote

Code:
function invertImage(theImage)
   newImage = Image.createEmpty(theImage:height(), theImage:width())
   for x = 1, theImage:width()-1 do
      for y = 1, theImage:height()-1 do
         p = theImage:pixel(y, x)
         c = Color.new(255-p:colors().r,255-p:colors().g,255-p:colors().b)
         newImage:pixel(y, x, c)
      end
   end
   return newImage
end

test = Image.load("test.png")
p = test:pixel(0, 0)
screen:blit(40, 36, test)
screen:blit(240, 36, invertImage(test))
screen:print(40, 26, "Original", Color.new(255, 255, 255))
screen:print(240, 26, "Inverted", Color.new(255, 255, 255))
screen:print(207, 244, "Invert Function by flattspott", Color.new(255, 255, 255))
screen:flip()
screen.waitVblankStart(600)


The test image:


The screenshot:
Back to top
View user's profile Send private message
Zenurb



Joined: 30 Sep 2005
Posts: 106
Location: United Kingdom

PostPosted: Mon Oct 17, 2005 10:04 pm    Post subject: Reply with quote

Are you going to add rotate to your image functions library?
_________________
Proud Dvorak User
US 1.5 PSP (Original)
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Lua Player Development All times are GMT + 10 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group