tpenzer | 12 years ago | on: PNG vs SVG for sprites
tpenzer's comments
tpenzer | 13 years ago | on: Use SVG to Handle Retina Image Serving
tpenzer | 13 years ago | on: Use SVG to Handle Retina Image Serving
tpenzer | 13 years ago | on: Use SVG to Handle Retina Image Serving
tpenzer | 13 years ago | on: Plan To Create Another Copyright-Like Right For Hollywood
http://thepenzone.com/content/copyright-dying-beware-accessr...
I think it's definitely time we have a replacement for copyright, given the irrelevance of copying nowadays, though "Publish Right" is likely a better term than "Broadcast Right", since the main issue is the commercial distribution arrangements for protected works. If some agreement can be found, after a certain date, copyright should stop being issued and the new right issued instead. Now we just need to figure out what that will be.
tpenzer | 13 years ago | on: HiDPI/Retina image upsizing by clients & servers, not javascript
That said, I could totally get on board with HAIR, assuming my concerns are unfounded (which is likely). How does that system affect server capacity and performance? Is there a significant performance penalty for having the server determine whether each asset is actually available in 2x or not before fulfilling the client's request? Is this information which would automatically be cached, and thus not have a significant impact? Or will each image request have an additional operation to perform?
Also, does this system force you to have your 1x and 2x assets share the same exact filename? In the example, are the 1x images in the 'img' directory, and the 2x in 'image' with the same filename? I'm sorry if my confusion is making me ask the wrong questions; maybe evidence of the challenge of explaining this system to clueless people like me.
[Upon further review, it looks like an img src link to '/img/bob/' would load the 'index.jpg' file from inside the 'bob' directory by default, and then your system would have it load the 'dpr=2.jpg' file if the client wants that. So this imposes even more stringent file naming and organizing restrictions than I had in mind, and it works nothing like what I thought upon first glance (never knew you could even link to a directory for an image asset, and have it load index.jpg, though it does make sense). I am embarrassed to admit that I'm not completely sure where I'd even put those parameters, though I assume it would be in httpd.conf for apache, or maybe .htaccess otherwise. Also, does this require a separate entry for each image on the site?]
tpenzer | 13 years ago | on: HiDPI/Retina image upsizing by clients & servers, not javascript
I'm also not sure I fully understand how we clue the server in on where to look for the 2x version of a 1x asset. In the examples given, do the 2x versions have the same filenames as the 1x versions, but they're in the 'image' directory rather than 'img'? Seems like a significant limitation to force different assets to share the same filename, if that's what's going on here.
tpenzer | 13 years ago | on: HiDPI/Retina image upsizing by clients & servers, not javascript
Does the client specifically request 2x image file paths for both images, and when the second one fails, as no 2x version exists, the client makes another request for the 1x version, or does it simply fail to load the image?
Or does the client request the 1x asset like usual, and when the server determines that one is unavailable in 2x res, it sends the 1x transparently? If that's the case, do we not care about the server using resources determining availability of individual 2x assets because it's insignificant? And could the client easily choose to request 1x assets rather than 2x in a non-hackish way even if it does support 2x resolution (maybe it's concerned about bandwidth)?
tpenzer | 13 years ago | on: HiDPI/Retina image upsizing by clients & servers, not javascript
tpenzer | 13 years ago | on: HiDPI/Retina image upsizing by clients & servers, not javascript
tpenzer | 13 years ago | on: HiDPI/Retina image upsizing by clients & servers, not javascript
I submitted a different potential solution to whatwg forums and a few relevant mailing lists, without much significant feedback, using meta tags to indicate availability of 2x image assets. It does seem more practical to me from the point of view of an author, but maybe I'm missing something important:
http://thepenzone.com/svg-image/