Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Image Splitter v4
#1
Alright here is the Image Splitter version 4. This will convert RMXP/VX/whatever block formatted sprites into single row formatted sprites...much like v2 I suppose, except this is a bit redone. You're able to set how many sprites each sheet holds. (IE 4 by 2, 1 by 1, etc).

My next version will convert items to single column format from grid.

[ATTACHMENT NOT FOUND]
Reply
#2
Oops...a simple logical fix:

At the bottom of Sub SplitImage change this:

Code:
TotalSpritesSaved = Val(frmMain.txtStartAt.Text)

To this:

Code:
If TotalSpritesSaved  0 Then TotalSpritesSaved = Val(frmMain.txtStartAt.Text)

So people won't have to set it themselves every time they load an image.
Reply
#3
Agh crap another simple bug to fix...change:

Code:
SavePicture frmMain.picConversion.Image, App.Path & "\Splitted Images\sprite" & TotalSpritesSaved & Extension

To:

Code:
SavePicture frmMain.picConversion.Image, App.Path & "\Splitted Images\" & frmMain.txtSaveAs.Text & TotalSpritesSaved & Extension
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)