These are two separate issues:
1) If you request an imgix URL without adding any query parameters, imgix will just act as a passthrough to your source. If your images are being treated as a download by the browser rather than as images to display, there must be something mis-configured at the source level. Not knowing anything about your source, I really can't offer any better advice here.
2) The myimage.png~text
URL isn't working because you shouldn't be using ~text
at all here. Take those five characters out of your URL and it should work as you expect.
Imgix's ~text
endpoint is a way to request an image where the "base image" is text rather than a real image. In trying to combine a real base image (myimage.png
, in your URL above) with this text-only endpoint (~text
), you're making a request that imgix doesn't know how to handle.
If you've got further questions about your imgix integration, especially if they're configuration questions that involve your specific account and settings, I'd encourage you to send your questions to support@imgix.com instead of StackOverflow. While SO is a great place to answer one-off questions, writing into our support-ticket system will allow us to answer account-specific questions a lot easier.