image.go 261 B

12345678
  1. package gofakeit
  2. import "strconv"
  3. // ImageURL will generate a random Image Based Upon Height And Width. https://picsum.photos/
  4. func ImageURL(width int, height int) string {
  5. return "https://picsum.photos/" + strconv.Itoa(width) + "/" + strconv.Itoa(height)
  6. }