Last active
August 29, 2015 13:55
-
-
Save jpstroop/8787943 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix : <http://iiif.io/api/image-api#> . | |
@prefix ns1: <http://purl.org/dc/terms/> . | |
@prefix ns2: <http://libimages.princeton.edu/loris#> . | |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
@prefix xml: <http://www.w3.org/XML/1998/namespace> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
<http://libimages.princeton.edu/loris> :contact "mailto:[email protected]" ; | |
:extensions [ :feature "http://libimages.princeton.edu/loris#myNextCoolFeature" ; | |
ns1:description "It even does the dishes" ], | |
[ :feature "http://libimages.princeton.edu/loris#myCoolFeature" ; | |
ns1:description "It slices, it dices!" ] ; | |
:regionByPct true ; | |
:regionByPx true ; | |
:rotationArbitrary true ; | |
:rotationBy90s true ; | |
:sizeByForcedWH true ; | |
:sizeByH true ; | |
:sizeByPct true ; | |
:sizeByW true ; | |
:sizeByWH true ; | |
ns2:myCoolFeature "true" ; | |
ns2:myNextCoolFeature "true" . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment