Epubear.scand.com is a subdomain of scand.com, which was created on 2001-04-05,making it 23 years ago. It has several subdomains, such as svg.scand.com skyhistory.scand.com , among others.
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...
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
HomePage size: 53.909 KB |
Page Load Time: 0.023557 Seconds |
Website IP Address: 173.236.247.132 |
Leximation | FrameMaker, DITA, EPUB, and more blog.leximation.com |
OviPro for Developers - OviPro Developers developer.ovipro.fi |
SDK and API for developers — TrueСonf sdk.trueconf.com |
Adobe Reader Download - Adobe Reader the PDF software of choice for the most users globally adobe-reader.software.informer.com |
ArcGIS Maps SDK for JavaScript | Overview | ArcGIS Maps SDK for JavaScript 4.29 | ArcGIS Developers js.arcgis.com |
PandaDoc for Developers — API Reference, SDK, and Documentation developers.pandadoc.com |
Developers @ LoanTek - com.LoanTek.Developers developers.loantek.com |
Scand Ltd - SVG Kit 2.4 for Adobe® Creative Suite® svg.scand.com |
NeuroChain Developers – NeuroChain Developers developers.neurochaintech.io |
Welcome, developers! - TrackVia Developers developer.trackvia.com |
NVIDIA Developer Blog | Technical content: For developers, by developers devblogs.nvidia.com |
ASI Developers - ASI Developers developers.asicentral.com |
Developers - MIUIFlash - Developers Assemble dev.miuiflash.com |
50K+ Free eBooks Download in PDF, EPUB or Read Online tamil.worldfreebooks.com |
epuBear - EPUB Reader SDK for e-book developers | SCAND https://epubear.scand.com/ |
slide-lg-1@2x - epuBear https://epubear.scand.com/homepage/slide-lg-12x/ |
Privacy Policy - epubear.scand.com https://epubear.scand.com/wp-content/uploads/2018/03/privacy_policy.pdf |
Date: Tue, 14 May 2024 13:30:33 GMT |
Server: Apache |
X-Frame-Options: SAMEORIGIN |
X-Content-Type-Options: nosniff |
Strict-Transport-Security: max-age=31536000; includeSubdomains; preload |
Content-Security-Policy: "script-src self https: http: data: unsafe-inline unsafe-eval; frame-ancestors self; base-uri self; object-src none", X-XSS-Protection: 1; mode=block |
Referrer-Policy: strict-origin-when-cross-origin |
Permissions-Policy: fullscreen=(self), geolocation=*, microphone=() |
Link: https://epubear.scand.com/wp-json/; rel="https://api.w.org/", https://epubear.scand.com/wp-json/wp/v2/pages/195; rel="alternate"; type="application/json", https://epubear.scand.com/; rel=shortlink |
Cache-Provider: WPSL-DC |
Cache-Control: no-cache |
Upgrade: h2 |
Connection: Upgrade |
Last-Modified: Tue, 14 May 2024 13:30:33 GMT |
Vary: Accept-Encoding,User-Agent |
Transfer-Encoding: chunked |
Content-Type: text/html; charset=UTF-8 |
charset="utf-8"/ |
content="width=device-width, initial-scale=1" name="viewport"/ |
content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" name="robots" |
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="en_US" property="og:locale"/ |
content="website" property="og:type"/ |
content="epuBear – EPUB Reader 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="2024-02-07T12:41:44+00:00" property="article:modified_time"/ |
content="summary" name="twitter:card"/ |
content="WordPress 5.7.1" name="generator"/ |
Ip Country: United States |
Latitude: 37.751 |
Longitude: -97.822 |
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 document 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 Flutter Android /* 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(); iOS // 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(); Xamarin // 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); Flutter Coming soon 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 Android: iOS: Xamarin: Total Price: $ 0 Get epuBear 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. 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. Custom Solution There is also a possibility to compile a custom e-publishing solution from the already predefined components like Epubear SDK, Epub Cloud, Epub Viewer, Text Reader, Page Curl, Epub Media, Crypto Gateway, or you can request a full functional DRM system. Learn more 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 Crypto Gateway Crypto Gateway is a service that allows encrypting and delivering content to display on any device in a secure way. 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...
Domain Name: SCAND.COM Registry Domain ID: 68854103_DOMAIN_COM-VRSN Registrar WHOIS Server: whois.webcentralgroup.com.au Registrar URL: http://www.melbourneit.com.au Updated Date: 2024-02-05T14:22:48Z Creation Date: 2001-04-05T10:38:17Z Registry Expiry Date: 2027-04-05T10:38:17Z Registrar: Netregistry Wholesale Pty Ltd. Registrar IANA ID: 13 Registrar Abuse Contact Email: abuse@melbourneit.com.au Registrar Abuse Contact Phone: +61342060102 Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited Name Server: NS1.DIGITALOCEAN.COM Name Server: NS2.DIGITALOCEAN.COM Name Server: NS3.DIGITALOCEAN.COM DNSSEC: unsigned >>> Last update of whois database: 2024-05-17T20:11:24Z <<<