PNG to tile maps

I found this map editor

it allows me to export my maps in a PNG format. would this work with Phaser?
I am not able to use tiled for reasons

It may work but if you want to interact with the map in Phaser then you’ll also need the map layer data too.

by interact do you mean bump into the wall? if yes then how would i do that?

Yes, collisions or using the actual tiles in some way.

Besides a Tiled JSON file, you can create a tilemap in Phaser from

  • an array of tile IDs
  • a CSV file of tile IDs
  • a blank tilemap with putTileAt()

that will take years

This is the layer data that an editor should export, if it’s going to be useful.