epubear.scand.comepuBear – EPUB SDK for e-book developers | SCAND

epubear.scand.com Profile

epubear.scand.com

Maindomain:scand.com

Title:epuBear – EPUB SDK for e-book developers | SCAND

Description:Get epuBear SDK for EPUB reader development. It is an EPUB toolkit used in the development of e-book readers. SDK for epub ebooks and documents readers development

Discover epubear.scand.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

epubear.scand.com Information

Website / Domain: epubear.scand.com
HomePage size:38.675 KB
Page Load Time:0.971848 Seconds
Website IP Address: 208.97.151.185
Isp Server: New Dream Network LLC

epubear.scand.com Ip Information

Ip Country: United States
City Name: Brea
Latitude: 33.930221557617
Longitude: -117.88842010498

epubear.scand.com Keywords accounting

Keyword Count

epubear.scand.com Httpheader

Date: Tue, 12 May 2020 02:52:13 GMT
Server: Apache
Link: https://epubear.scand.com/wp-json/; rel="https://api.w.org/", https://epubear.scand.com/; rel=shortlink
Cache-Provider: WPSL-DC
Cache-Control: no-cache, max-age=600
Upgrade: h2
Connection: Upgrade, Keep-Alive
Last-Modified: Tue, 12 May 2020 02:52:14 GMT
Expires: Tue, 12 May 2020 03:02:13 GMT
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 9215
Keep-Alive: timeout=2, max=100
Content-Type: text/html; charset=UTF-8

epubear.scand.com Meta Info

charset="utf-8"/
content="width=device-width, initial-scale=1" name="viewport"/
content="Get epuBear SDK for EPUB reader development. It is an EPUB toolkit used in the development of e-book readers. SDK for epub ebooks and documents readers development" name="description"
content="max-snippet:-1, max-image-preview:large, max-video-preview:-1" name="robots"
content="en_US" property="og:locale"/
content="website" property="og:type"/
content="epuBear – EPUB SDK for e-book developers | SCAND" property="og:title"/
content="Get epuBear SDK for EPUB reader development. It is an EPUB toolkit used in the development of e-book readers. SDK for epub ebooks and documents readers development" property="og:description"/
content="https://epubear.scand.com/" property="og:url"/
content="epuBear" property="og:site_name"/
content="summary" name="twitter:card"/
content="Get epuBear SDK for EPUB reader development. It is an EPUB toolkit used in the development of e-book readers. SDK for epub ebooks and documents readers development" name="twitter:description"/
content="epuBear – EPUB SDK for e-book developers | SCAND" name="twitter:title"/
content="WordPress 5.3" name="generator"/

208.97.151.185 Domains

Domain WebSite Title

epubear.scand.com Similar Website

Domain WebSite Title
epubear.scand.comepuBear – EPUB SDK for e-book developers | SCAND
selfpublishing.lifetips.comSelf Publishing Tips - Book Design - Book Printing - Book Promotions
eclipse-sdk.uptodown.comEclipse SDK 4.4 M4 - Descargar
directx-software-development-kit.en.lo4d.comDirectX 9 SDK - Download
inliteresearch.comBarcode Recognition and Image Processing SDK
legacydocs.chartiq.comChartIQ SDK Legacy Documentation - Index
forums.coronalabs.comCorona SDK and Cross-Platform Mobile App Development Discussion
docs.authy.comAuthy: Two-factor Authentication and Passwordless Login by API and SDK - Twilio
emmetfox.wwwhubs.comEMMET FOX HOME PAGE Biography book excerpts and book listing
discoverystore.setmore.comBook an Appointment with Please visit our website to book assessments - Shopping/Retail - Cape town
aaaexpo.ning.comAfrican American Author's Expo and Multi-Cultural Book Fair - Independent Book Authors in the M
anyflip.comFree Flip Book Maker; PDF to HTML5 & Flash flipping book software | AnyFlip
international.worldbook.comHome New - World Book InternationalWorld Book International
mail.greenleafbookgroup.comGreenleaf Book Group - Book Publisher and Distributor
amarketingexpert.comBook Promotion | Book Marketing Services | Marketing a Book

epubear.scand.com Traffic Sources Chart

epubear.scand.com Alexa Rank History Chart

epubear.scand.com aleax

epubear.scand.com Html To Plain Text

Skip to content About How to use Demo reader Pricing About How to use Demo reader Pricing Get epuBear epuBear Lightweight, easily customizable cross-platform EPUB SDK for EPUB readers development Get epuBear About epuBear SDK Cross-platform close Core of epuBear SDK provides the following basic functionality: Features Full compatibility with EPUB2 and partially with EPUB3 Open, unpack and parse EPUB documents Read EPUB document from file and from memory (byte array) Get EPUB document info Render pages to bitmaps Global language support Functions Go to Page Go to Chapter Open Link Change Font Size Switch to DoublePage Mode Switch to Night Mode Bookmarks Text Search Select Text Change Text Color Change Background Color Audio and Video Support Set Custom Fonts Open Image in a Separate Window Vertical and Right-to-Left Writing This set of features will be available to you right after the purchase. Even though this may seem like all boxes are ticked at first, please feel free to let us know if you consider adding extra features, like DRM that could be a good fit for your product. As our primary activity is software development, we'd like to provide you with native customization and maintenance. How to use This EPUB SDK is a C++ solution and we prepared native wrappers in Java (Android), Swift (iOS) and C# (Xamarin) for our EPUB toolkit to be compatible with your project. The code of the wrappers acts as a proxy between the native code and the core. Android iOS Xamarin /* Initialization */ import com.epubear.EpubearFramework; public class EpubearView extends View implements EpubearFramework.EventListener { private EpubearFramework epubear; private Map bitmaps; public EpubearView(Context context) { .... // create instance epubear = new EpubearFramework(context, dataDir); epubear.setEventListener(this); .... } @Override public void onSizeChanged(int w, int h, int oldw, int oldh) { .... // init framework with target width/height epubear.updateBitmapSize(w, h); .... } @Override public void doInitDisplay() { .... // create bitmaps // register them in framework for (Map.Entry entry : bitmaps.entrySet()) epubear.registerBitmap(entry.getKey(), bitmap.getValue()); .... } } /* Navigation */ // open epub epubear.openFile(path); // go to next page epubear.openNextPage(); // go to previous page epubear.openPreviousPage(); // get Table of Contents Map tocList = epubear.tableOfContents(); // open chapter from table of contents epubear.openChapter(caption); // font increase epubear.increaseFont(); // font increase epubear.decreaseFont(); // Framework initialization and book opening, if book cannot be opened returns nil // BookViewController.swift override func viewWillAppear(animated: Bool) { ... frameworkInstance = EPUBearFramework(bookPath: self.bookPath, withCachePath: self.cachePath) ... } override func viewDidLayoutSubviews() { ... let scale = UIScreen.mainScreen().scale; let scaledSize = CGSize(width: view.bounds.size.width * scale, height: view.bounds.size.height * scale) frameworkInstance.resizeBitmapsIfNeeded(scaledSize) ... } // Bitmaps getters frameworkInstance.centerImage(); frameworkInstance.leftImage(); frameworkInstance.rightImage(); // Navigation through book frameworkInstance.openNextPage(); frameworkInstance.openPreviousPage(); frameworkInstance.openPage(page); // Navigation through chapters frameworkInstance.openChapterAtIndex(index); // Change font size frameworkInstance.increaseFont(); frameworkInstance.decreaseFont(); // BookViewController.cs private EPUBearFramework _framework; public override void ViewDidLoad() { base.ViewDidLoad(); var bookPath = (Element as BookPage).BookPath; var cachePath = (Element as BookPage).CachePath; _framework = new EPUBearFramework(bookPath, cachePath); _framework.WeakDelegate = this; // to handle framework callbacks } public override void ViewDidLayoutSubviews() { ... var viewSize = View.Bounds.Size; var scale = UIScreen.MainScreen.Scale; var scaledSize = new CGSize(viewSize.Width * scale, viewSize.Height * scale); _framework.ResizeBitmapsIfNeeded(scaledSize); ... } // Book Navigation _framework.OpenChapterAtIndex(chapterIndex); _framework.OpenPage(pageNumber); _framework.OpenPreviousPage(); _framework.OpenNextPage(); // Change font size _framework.IncreaseFont(); _framework.DecreaseFont(); // Way to access rendered pages as CGImage objects var pages = new CGImage[3]; pages[0] = _framework.LeftImage; pages[1] = _framework.CenterImage; pages[2] = _framework.RightImage; // Way to check first && last pages _framework.CanScrollToLeft; _framework.CanScrollToRight; // Way to change night\normal mode _framework.SetAppearanceMode(EPUBAppearanceMode); // Framework delegate methods IEPUBearFrameworkDelegate.ContentUpdated(); IEPUBearFrameworkDelegate.PageCountChanged(pageCount); Use the links below to download developer documentation: epuBear_SDK_IOS epuBear_SDK_Android epuBear Demo Reader Our epuBear Reader acts as a standalone reader for books in EPUB format with no ads and no limitations in functionality. It is based on epuBear SDK developed by Scand. Besides, the apps show the benchmark report of epuBear performance. epuBear Demo Reader Features: Compatibility with EPUB 2 format Navigation through pages, chapters, bookmarks, and links Night mode Text search Audio and Video support Pricing 1 Binary Licence 1 Application 1 Mobile Platform 1 Year of support $ 699 Get epuBear Android: 1 iOS: 0 Xamarin: 0 Once you realize that you want to have some additional functionality, please, let us know by filling out the contact form below. We could help you to build your individual EPUB reader based on epuBear SDK. Just describe your needs and our manager will contact you to clarify all the details. Total Price $ 699 I agree to the Privacy Policy Thank you for placing an order! Our team appreciates your time and we will reach you as soon as possible. Related products EpubCloud EpubCloud hosts, stores, and shares EPUB files for their further reading from various devices addin to synchronize contacts, calendars, and tasks View product CurlEffect for Xamarin An out-of-the-box library that creates a page curl effect for Xamarin apps View product More products developed by SCAND If you have any further questions or suggestions, please, drop us a line to epubear@scand.com epubear Developed by SCAND . Contact us . © 2000–2019 SCAND Ltd. Privacy Policy and Terms of Use ....

epubear.scand.com Whois

"domain_name": "SCAND.COM", "registrar": "Arq Group Limited doing business as Melbourne IT", "whois_server": "whois.arq.group", "referral_url": null, "updated_date": [ "2020-03-10 22:09:55", "2020-03-10T22:09:55" ], "creation_date": [ "2001-04-05 10:38:17", "2001-04-05T10:38:17" ], "expiration_date": [ "2025-04-05 10:38:17", "2025-04-05T10:38:17" ], "name_servers": [ "NS1.DIGITALOCEAN.COM", "NS2.DIGITALOCEAN.COM", "NS3.DIGITALOCEAN.COM", "ns1.digitalocean.com", "ns2.digitalocean.com", "ns3.digitalocean.com" ], "status": [ "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited" ], "emails": "abuse@melbourneit.com.au", "dnssec": "unsigned", "name": "REDACTED FOR PRIVACY", "org": "REDACTED FOR PRIVACY", "address": "REDACTED FOR PRIVACY", "city": "REDACTED FOR PRIVACY", "state": "Minsk", "zipcode": "REDACTED FOR PRIVACY", "country": "BY"