Hi folks, am developing a ipad application which should read a Adobs's .issue file and display.
Here i dont have any .issue file use and create sample. Where to get that file ?. If there is any link to download .issue file will be helpful.
And also how to read a .issue file in objective c.?
There is a app in app-store named wired app which reads .issue and displays. i dont know how that people developed that application and also there is no examples out there in net for reading .issue file.
Any idea and suggestions will be helpful.
Cheers...
Short answer: Unless you're prepared to reverse-engineer the format yourself you're out of luck.
The .issue file format is a propriety format belonging to Adobe for use with their Digital Content Viewer, which can be licensed and branded. This is what Wired use to produce their digital magazine.
This new .issue format is a compressed file format that contains vertical and horizontal magazine layouts, metadata, code to enable interactivity, and associated assets (images, video, etc.) Once the layouts have been packaged into the .issue format, the file is then rendered and displayed to the end-user using a publisher-branded Digital Content Viewer. The WIRED Reader, for example, is the first instance of a publisher-branded viewer. This Digital Content Viewer allows readers to interact with and navigate through the magazine content (including via the innovative “browse” mode). Previously we announced the Digital Content Viewer for Apple iPad; in the future we also expect to develop the Digital Content Viewer on Adobe AIR for desktops and other devices.
You can find out more about Adobe's digital publishing platform here
Related
i am making a client server program for iphone communication with the sever i want to know
that how can i pick a file (jpg, 3gp, bmp or some word document ) from the memory of the
iphone and send it to the server please explain in some detail as i m new in iphone
programming and give some code for it if possible, and how can i convertv an adobe reader and
msword compatible file to jpg file.
Slow down there buster.
There is no "memory of the iPhone." You'll have to get that file in somehow besides a traditional file system. There are ways to send files to other apps… check the docs. To start with, why don't you bundle in a couple files with your .app to test with.
Once you have the file, use something like the ASIHTTPRequest library (google it) to send it to the server.
Clear?
I am developing an application in which i have to create multi page PDF and email such PDF. The content which is to be converted to PDF contains text as well as some images. I have seen some posts regarding this, but could not glean too much from it. Will be greatful if any one can guide in this.
Thanx, regards.
You could take a look at docmosis which has a cloud-based document generator. It can generate PDFs and stream them back to the iPad or send as email. You upload a template to the cloud using the Docmosis web site, then you can generate documents from your iPad by sending a request (with data, images etc) to the Docmosis cloud.
I'm trying to find a way to use the original Apple system buttons and icons in a web site.
Is there a way to get these original graphics in png format?
There are not-so-nice ways to obtain them of course. Two I was thinking of:
Save them from this link, then convert to png.
Take screen captures on the iPhone itself, and cut the icons from the saved images.
Is anyone aware of a nicer way to obtain the original graphics? Does anyone know where they are stored on the Mac?
Thanks :-)
Ariel
You can download this UIKIT ARTWORK EXTRACTOR project from github and try run it on any simulator , it will extract the all icons of the current SDK and save it to your desktop with all icons.
Source : https://github.com/0xced/UIKit-Artwork-Extractor
Apple HIG Issue: https://github.com/0xced/UIKit-Artwork-Extractor/issues/11
As per the above issue, The extracted appropriate icons can be used in your iphone apps but using it in other platform may cause any copyright issue.
The icons are scatter throughout the system applications they are a part of. There is no central location they can be harvested from. Some of the icon apps might be useful for harvesting them once you find them.
If your interested in UI elements, the Interface Builder bundles have most of them inside.
I know that Graffeltopia has numerous Omnigraffel stencils with Mac system graphics in them.
I think copyright wise, your okay as long as (1) you put a notice that that Apple has the copyright on the images and (2) you don't create the impression you are in anyway Apple Computer and (3) you don't use them to create close simulations of the Apple user interface in any medium.
Otherwise, it follows under fair use. For example, if your doing and article on the Apple UI you can definitely use the graphics in examples.
I'm looking to commission an icon for an iphone app, and would like to provide the designers with the technical requirements. Also, as this may also be used as a logo for the website I'd like to be have a format that I can reuse and scale myself.
What technical requirements should I give to the designer and does apple have a publically linkable description of these? Is it simply 57x57 and 150x150 png or is there more to it?
Also, what is a reasonable, preferably open, scalable master format to request? I don't have photoshop and don't want to get it just for this.
The iPhone Human Interface Guidelines document about custom icons and images explains it in detail
My icon designers typically provide me with a vector file format version of my icon (usually an Illustrator file), a 512x512px TIFF file (which is submitted to Apple for use in the AppStore), and a 57x57px PNG (which is used as the actual application icon).
Also, If you want to get rid of the pre-rendered glossy bit you'll see on most iPhone apps' icons, go search for UIPrerenderedIcon, which is a flag you can set in your app's Info.plist file.
You don't need to go get Photoshop or Illustrator just for this, but you should have a 'master' file that you can keep in perpetuity in case you ever need another graphics designer to make modifications to the original icon.
I want to make a small app that displays a PDF, presenting zoom-able single pages with a previous-next page function.
The Core Graphics API is pretty much the same in Cocoa and Cocoa touch. Read up on CGPDFDocument, it should provide you with everything you will need to render PDF pages. You won't need to read the PDF spec or use a library to parse PDF files directly. You will probably to learn more about Core Graphics / Quartz 2D / etc. to understand how to use those functions inside of a Cocoa app.
Based on the gradually evolving Apple policy of rejecting application submissions that duplicate functionality already on the iPhone I would worry about spending too much time even as a newbie on something that is part of the core iPhone feature-set.
This is pretty trivial. The CGPDFDocument functions will allow you to do anything you'd want to do with a PDF file.
The iPhone and iPod touch can view PDFs already, as one of the TV adverts in the UK shows an email with a .pdf attachment (of swimming lessons) being viewed. It can also view .doc, .xls, and so on, so if he is creating a viewer type application then supporting those as well could be a nice feature addition later on.
This means there is a PDF framework on these devices that you will need to access. Presumably Apple can provide support here if he is a paid up developer. Syncing the PDFs to the device is the actual real difficulty, as this isn't supported by iTunes. I assume that you would need to write a network based synchronisation tool, or have an online cloud for holding people's PDFs.
The device doesn't support Flash, so using PDF to Flash conversion tools will not work.
I found this HTML5 framework that should work on an iPad http://bakerframework.com/
but I didn't test it yet.